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

body {
  background-color: #0e0e0e;
  color: #e5e5e5;
  font-family: 'Fira Code', monospace;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.terminal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    rgba(255, 255, 255, 0.02),
    rgba(255, 255, 255, 0.02) 1px,
    transparent 2px,
    transparent 4px
  );
  pointer-events: none;
  z-index: 1;
}

.hero {
  text-align: center;
  padding: 100px 20px 60px;
  z-index: 2;
  position: relative;
}

.glow {
  font-size: 2.5em;
  color: #00ffaa;
  text-shadow: 0 0 15px rgba(0, 255, 170, 0.6);
}

.accent {
  color: #00ffaa;
}

.subtitle {
  margin-top: 10px;
  font-size: 1.1em;
  color: #cfcfcf;
}

.buttons {
  margin-top: 30px;
}

.btn {
  background-color: #00ffaa;
  color: #0e0e0e;
  padding: 10px 25px;
  text-decoration: none;
  border-radius: 8px;
  margin: 5px;
  transition: 0.2s ease;
  font-weight: 600;
}

.btn:hover {
  background-color: #03c98c;
}

.btn.secondary {
  background-color: transparent;
  border: 1px solid #00ffaa;
  color: #00ffaa;
}

.btn.secondary:hover {
  background-color: #00ffaa;
  color: #0e0e0e;
}

section {
  max-width: 900px;
  margin: 80px auto;
  padding: 0 20px;
}

h2 {
  color: #00ffaa;
  border-left: 3px solid #00ffaa;
  padding-left: 10px;
  margin-bottom: 20px;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.card {
  text-decoration: none;
  color: inherit;
  display: block;
  padding: 1.5rem;
  background: #111;
  border-radius: 10px;
  transition: box-shadow 0.2s ease;
}

.card:hover {
  box-shadow: 0 5px 20px rgba(0, 255, 170, 0.2);
}

.card h3 {
  margin: 0 0 10px;
  color: #e5e5e5;
}

.card p {
  color: #b0b0b0;
  line-height: 1.6;
}

footer {
  text-align: center;
  padding: 30px;
  background-color: #101010;
  font-size: 0.9em;
  color: #999;
}

.cursor {
  display: inline-block;
  width: 10px;
  background-color: #00ffaa;
  animation: blink 1s infinite;
}

@keyframes blink {
  0%, 50%, 100% { opacity: 1; }
  25%, 75% { opacity: 0; }
}
