* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #000;
  color: #33ff33;
  font-family: 'Courier New', Courier, monospace;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* Terminal Container */
.terminal {
  max-width: 800px;
  margin: 4rem auto;
  background: #111;
  border: 1px solid #0f0;
  box-shadow: 0 0 20px #0f0;
  border-radius: 6px;
  position: relative;
  z-index: 5;
}

.terminal-bar {
  background: #222;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  border-bottom: 1px solid #0f0;
}

.circle {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
}
.red { background: #ff5f56; }
.yellow { background: #ffbd2e; }
.green { background: #27c93f; }

.title {
  margin-left: auto;
  color: #777;
  font-size: 0.9rem;
}

.terminal-content {
  padding: 1rem;
}

.terminal-content p:last-child::after {
  content: "█";
  animation: blink 1s step-end infinite;
}

/* Floating Cursor */
.floating-cursor {
  position: fixed;
  font-size: 20px;
  color: #0f0;
  z-index: 1;
  pointer-events: none;
  animation: floatCursor 25s infinite linear;
}
@keyframes floatCursor {
  0%   { top: 5%; left: 5%; }
  25%  { top: 50%; left: 80%; }
  50%  { top: 90%; left: 30%; }
  75%  { top: 20%; left: 60%; }
  100% { top: 5%; left: 5%; }
}

.floatings-cursor {
  position: fixed;
  font-size: 20px;
  color: #0f0;
  z-index: 1;
  pointer-events: none;
  animation: floatCursor 25s infinite reverse;
}
@keyframes floatCursor {
  0%   { top: 10%; left: 5%; }
  25%  { top: 0%; left: 80%; }
  50%  { top: 100%; left: 30%; }
  75%  { top: 20%; left: 100%; }
  100% { top: 5%; left: 5%; }
}


/* Bugs */
.bug-zone {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.bug {
  position: absolute;
  color: #33ff33;
  font-size: 14px;
  animation: crawl 15s infinite linear;
  opacity: 0.2;
}
.bug:nth-child(1) { top: 10%; left: 90%; animation-delay: 0s; }
.bug:nth-child(2) { top: 80%; left: 5%; animation-delay: 3s; }
.bug:nth-child(3) { top: 40%; left: 50%; animation-delay: 6s; }
.bug:nth-child(4) { top: 70%; left: 80%; animation-delay: 9s; }
.bug:nth-child(5) { top: 20%; left: 30%; animation-delay: 12s; }

@keyframes crawl {
  0% { transform: translate(0, 0); }
  100% { transform: translate(300px, 300px); }
}

@keyframes blink {
  50% { opacity: 0; }
}

@import url('https://fonts.googleapis.com/css2?family=Fira+Code:wght@500&display=swap');

.heading-line {
  font-family: 'Fira Code', monospace;
  font-weight: bold;
  text-decoration: underline;
  color: #00ffcc;
  margin-top: 1.5rem;
}

/* Clickable project links after typing */
.project-link a {
  color: #00ffcc;
  text-decoration: none;
}
.project-link a:hover {
  text-decoration: underline;
  color: #33ff33;
}

.contact-icons {
  margin-top: 1rem;
  display: flex;
  gap: 15px;
}

.contact-icons img {
  width: 32px;
  height: 32px;
  filter: brightness(0) saturate(100%) invert(74%) sepia(91%) saturate(747%) hue-rotate(77deg) brightness(101%) contrast(98%);
  transition: transform 0.2s ease, filter 0.3s ease;
}

.contact-icons img:hover {
  transform: scale(1.2);
  filter: invert(57%) sepia(83%) saturate(593%) hue-rotate(83deg) brightness(96%) contrast(90%);
}

.copyright{
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #080707;
  text-align: center;
  padding: 10px 0;
  box-shadow: 0 -1px 5px rgba(0,0,0,0.1);
}


