/* ================================
   GLOBAL RESET
================================ */
* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

/* ================================
   PAGE BACKGROUND & BASE TEXT
================================ */
body {
  min-height: 100vh;
  font-family: "JetBrains Mono", monospace;
  background: #0f172a;
  color: #e5e7eb;
}

/* ================================
   PAGE LAYOUT
================================ */
.page {
  min-height: 100vh;
  display: block;
}

/* ================================
   HERO
================================ */
.hero {
  text-align: center;
  padding: 80px 20px 40px;
}

.hero h1 {
  font-size: 3.5rem;
  margin: 0;
  line-height: 1.1;
}

.hero p {
  margin-top: 10px;
  opacity: 0.7;
  font-size: 1.1rem;
}

/* ================================
   TERMINAL STUFF
================================ */
.terminal-text {
  font-family: "JetBrains Mono", monospace;
  font-size: 1.1rem;
  color: #e5e7eb;
  align-items: center;
  gap: 2px;
}

.cursor {
  animation: blink 1s step-start infinite;
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  50.01%, 100% { opacity: 0; }
}

/* ================================
   CARD CONTAINER
================================ */
.container {
  background: #020617;
  border-radius: 16px;
  padding: 32px 24px;
  max-width: 520px;
  width: calc(100% - 32px);
  margin: 0 auto 80px auto;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

/* ================================
   CARD CONTENT
================================ */
.container h1 {
  margin-top: 0;
  font-size: 2rem;
}

.subtitle {
  color: #94a3b8;
  font-size: 1rem;
  margin-top: 8px;
}

.description {
  color: #94a3b8;
  font-size: 0.85rem;
  margin: 16px 0 28px;
}

/* ================================
   LINKS
================================ */
.links {
  list-style: none;
  padding: 0;
}

.links li {
  margin-bottom: 12px;
}

.links a {
  display: block;
  padding: 14px 16px;
  border-radius: 10px;
  text-decoration: none;
  color: #e5e7eb;
  background: #020617;
  border: 1px solid #1e293b;
  transition: all 0.15s ease;
}

.links a span {
  display: block;
  font-size: 0.75rem;
  color: #94a3b8;
  margin-top: 4px;
}

.links a:hover {
  border-color: #38bdf8;
  transform: translateX(4px);
}


/* ================================
   ICONS
================================ */
.hero-icons {
  margin-top: 18px;
  display: flex;
  justify-content: center;
  gap: 22px;
  filter: invert(1);
  opacity: 0.75;
  transition: all 0.15s ease;
}

.hero-icons a img {
  width: 25px;
  height: 25px;
  opacity: 0.7;
  transition: all 0.15s ease;
}

.hero-icons a:hover img {
  opacity: 1;
  transform: translateY(-2px);
}


/* ================================
   FOOTER
================================ */
footer {
  margin-top: 24px;
  color: #64748b;
  /* text-align: center; */
}

/* ================================
   MOBILE
================================ */
@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.4rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .container {
    padding: 24px 16px;
  }

  .container h1 {
    font-size: 1.6rem;
  }

  .subtitle {
    font-size: 0.95rem;
  }

  .description {
    font-size: 0.8rem;
  }

  .links a {
    padding: 12px 14px;
  }

  .links a span {
    font-size: 0.7rem;
  }

  footer {
    font-size: 0.7rem;
  }
}