/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --bg-dark: #080b11;
  --bg-card: rgba(13, 20, 35, 0.45);
  --bg-card-hover: rgba(20, 30, 55, 0.6);
  --border-color: rgba(255, 255, 255, 0.08);
  
  /* HSL Tailored Neon Colors */
  --neon-blue: hsl(186, 100%, 50%);
  --neon-blue-glow: hsla(186, 100%, 50%, 0.15);
  --neon-blue-glow-strong: hsla(186, 100%, 50%, 0.35);
  
  --neon-orange: hsl(24, 100%, 50%);
  --neon-orange-glow: hsla(24, 100%, 50%, 0.15);
  --neon-orange-glow-strong: hsla(24, 100%, 50%, 0.35);
  
  --text-primary: #f3f4f6;
  --text-muted: #9ca3af;
  --text-dark: #6b7280;
  
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset and Core Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg-dark);
  color: var(--text-primary);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

#webgl {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -2;
  pointer-events: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
}

p {
  line-height: 1.6;
  color: var(--text-muted);
}

/* Neon Text Helpers */
.neon-text-blue {
  color: var(--neon-blue);
  text-shadow: 0 0 10px var(--neon-blue-glow-strong);
}

.neon-text-orange {
  color: var(--neon-orange);
  text-shadow: 0 0 10px var(--neon-orange-glow-strong);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--neon-blue-glow-strong);
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-padding {
  padding: 6rem 0;
}

/* Neon Background Glows */
.glow-backdrop {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.glow-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.08;
  animation: float-glow 15s infinite alternate ease-in-out;
}

.glow-1 {
  top: 10%;
  left: 20%;
  width: 500px;
  height: 500px;
  background: var(--neon-blue);
}

.glow-2 {
  bottom: 20%;
  right: 10%;
  width: 600px;
  height: 600px;
  background: var(--neon-orange);
  animation-delay: -5s;
}

.glow-3 {
  top: 50%;
  left: 60%;
  width: 400px;
  height: 400px;
  background: var(--neon-blue);
  animation-delay: -10s;
}

@keyframes float-glow {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(80px, 50px) scale(1.15);
  }
}

/* Glassmorphism Card styling */
.glass-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 16px;
  padding: 2rem;
  transition: var(--transition-smooth);
}

.glass-card.blue-glow:hover {
  border-color: var(--neon-blue);
  box-shadow: 0 0 30px hsla(186, 100%, 50%, 0.15);
  transform: translateY(-4px);
}

.glass-card.orange-glow:hover {
  border-color: var(--neon-orange);
  box-shadow: 0 0 30px hsla(24, 100%, 50%, 0.15);
  transform: translateY(-4px);
}

/* Glowing Buttons */
.btn-neon {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-neon.blue {
  background: var(--neon-blue);
  color: #000;
  box-shadow: 0 0 15px var(--neon-blue-glow-strong);
}

.btn-neon.blue:hover {
  box-shadow: 0 0 25px var(--neon-blue), 0 0 5px #fff;
  transform: scale(1.03);
}

.btn-neon.orange {
  background: var(--neon-orange);
  color: #fff;
  box-shadow: 0 0 15px var(--neon-orange-glow-strong);
}

.btn-neon.orange:hover {
  box-shadow: 0 0 25px var(--neon-orange), 0 0 5px #fff;
  transform: scale(1.03);
}

.btn-neon:active {
  transform: scale(0.97);
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: var(--transition-smooth);
  border-bottom: 1px solid transparent;
}

header.scrolled {
  background: rgba(8, 11, 17, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 5rem;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text-primary);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
}

.logo-img {
  height: 2.8rem;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.logo-link:hover .logo-img {
  transform: rotate(5deg) scale(1.05);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--neon-blue);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.nav-link:hover {
  color: var(--text-primary);
}

.nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.8rem;
  cursor: pointer;
}

/* Mobile Nav Overlay */
.mobile-nav {
  position: fixed;
  top: 5rem;
  left: 0;
  width: 100%;
  background: rgba(8, 11, 17, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transform: translateY(-150%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 99;
}

.mobile-nav.active {
  transform: translateY(0);
}

.mobile-nav a {
  text-decoration: none;
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 8rem;
  padding-bottom: 4rem;
  overflow: hidden;
}

.hero-logo {
  max-width: 14rem;
  margin-bottom: 2rem;
  animation: float 6s infinite ease-in-out;
  filter: drop-shadow(0 0 30px hsla(186, 100%, 50%, 0.25));
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0); }
}

.hero-subtitle-top {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.hero-title {
  font-size: 3.5rem;
  line-height: 1.1;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 5.5rem;
  }
}

.hero-tagline {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  letter-spacing: 0.3em;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.8);
}

.hero-organizer {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 2.5rem auto;
  line-height: 1.5;
}

.hero-organizer span {
  display: block;
  font-weight: 600;
  color: var(--text-primary);
}

/* Countdown Timer */
.countdown-container {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.countdown-box {
  background: rgba(13, 20, 35, 0.6);
  border: 1px solid rgba(0, 240, 255, 0.2);
  border-radius: 12px;
  width: 5rem;
  height: 5.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.05);
}

@media (min-width: 768px) {
  .countdown-box {
    width: 6rem;
    height: 6.5rem;
  }
}

.countdown-num {
  font-family: var(--font-mono);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--neon-blue);
  text-shadow: 0 0 10px var(--neon-blue-glow-strong);
}

@media (min-width: 768px) {
  .countdown-num {
    font-size: 2.2rem;
  }
}

.countdown-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

/* About Section */
.section-title-wrap {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-size: 2.2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.about-desc {
  max-width: 750px;
  margin: 0 auto;
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 1.5rem;
}

.about-subdesc {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  color: var(--text-dark);
  font-size: 0.95rem;
}

.about-bullets {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 850px;
  margin: 3rem auto 0 auto;
}

@media (min-width: 768px) {
  .about-bullets {
    grid-template-columns: 1fr 1fr;
  }
}

.bullet-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.bullet-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(0, 240, 255, 0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neon-blue);
  flex-shrink: 0;
}

/* Tracks Arena */
.tracks-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .tracks-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.track-icon-wrapper {
  width: 4rem;
  height: 4rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: var(--transition-smooth);
}

.blue-glow:hover .track-icon-wrapper {
  background: rgba(0, 240, 255, 0.1);
  color: var(--neon-blue);
}

.orange-glow:hover .track-icon-wrapper {
  background: rgba(255, 94, 0, 0.1);
  color: var(--neon-orange);
}

.track-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.track-text {
  font-size: 0.95rem;
}

/* Problem Statements Section */
.problem-statements {
  text-align: center;
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .problem-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.problem-card {
  text-align: left;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.problem-card svg {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
}

.problem-card-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

/* Timeline */
.timeline {
  position: relative;
  max-width: 700px;
  margin: 3rem auto 0 auto;
  padding: 0 1rem;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 1.5rem;
  width: 2px;
  background: linear-gradient(to bottom, var(--neon-blue), var(--neon-orange));
  box-shadow: 0 0 8px var(--neon-blue-glow-strong);
}

@media (min-width: 768px) {
  .timeline::before {
    left: 50%;
    transform: translateX(-50%);
  }
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
  padding-left: 3.5rem;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .timeline-item {
    width: 50%;
    padding-left: 0;
    padding-right: 3rem;
    text-align: right;
  }
  .timeline-item:nth-child(even) {
    align-self: flex-end;
    margin-left: 50%;
    padding-left: 3rem;
    padding-right: 0;
    text-align: left;
  }
}

.timeline-dot {
  position: absolute;
  left: 0.9rem;
  top: 0.25rem;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: var(--bg-dark);
  border: 3px solid var(--neon-blue);
  box-shadow: 0 0 10px var(--neon-blue);
  z-index: 2;
  transition: var(--transition-smooth);
}

.timeline-item:nth-child(even) .timeline-dot {
  border-color: var(--neon-orange);
  box-shadow: 0 0 10px var(--neon-orange);
}

@media (min-width: 768px) {
  .timeline-dot {
    left: auto;
    right: -0.65rem;
  }
  .timeline-item:nth-child(even) .timeline-dot {
    left: -0.65rem;
    right: auto;
  }
}

.timeline-time {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--neon-blue);
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 0.25rem;
}

.timeline-item:nth-child(even) .timeline-time {
  color: var(--neon-orange);
}

.timeline-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.timeline-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.awards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .awards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .awards-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.award-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2.5rem 2rem;
}

.award-icon-box {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  background: rgba(255, 94, 0, 0.08);
  color: var(--neon-orange);
}

.award-card:first-child .award-icon-box {
  background: rgba(0, 240, 255, 0.08);
  color: var(--neon-blue);
}

.award-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

/* Judging Criteria */
.judging-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .judging-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.judging-card {
  display: flex;
  gap: 1.25rem;
}

.judging-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--neon-blue-glow-strong);
  line-height: 1;
}

.judging-card:hover .judging-num {
  color: var(--neon-blue);
}

.judging-card-title {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

/* Guidelines */
.rules-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .rules-container {
    grid-template-columns: 3fr 2fr;
  }
}

.rules-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.rule-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
}

.rule-check {
  color: var(--neon-blue);
  flex-shrink: 0;
}

.code-of-conduct-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.coc-link {
  color: var(--neon-orange);
  text-decoration: none;
  font-weight: 600;
  font-family: var(--font-display);
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition-smooth);
}

.coc-link:hover {
  text-shadow: 0 0 8px var(--neon-orange-glow-strong);
  transform: translateX(4px);
}

/* FAQ Accordion */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-header {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  color: var(--text-primary);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-icon {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  color: var(--text-muted);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), padding 0.35s ease;
  padding: 0 1.5rem;
}

.faq-body p {
  padding-bottom: 1.25rem;
  font-size: 0.95rem;
}

/* Active FAQ State */
.faq-item.active {
  border-color: var(--neon-blue-glow-strong);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: var(--neon-blue);
}

.faq-item.active .faq-body {
  max-height: 200px; /* arbitrary height to slide down */
}

/* Partners & Sponsors Section */
.partners-wrapper {
  text-align: center;
}

.partners-section-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
  color: var(--text-primary);
  opacity: 0.9;
}

.partners-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 4rem;
}

.partners-grid:last-child {
  margin-bottom: 0;
}

.partner-logo-card {
  background: rgba(10, 15, 30, 0.6);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 1.5rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 8rem;
  width: 16rem;
  transition: var(--transition-smooth);
}

.partner-logo-card:hover {
  border-color: rgba(255, 255, 255, 0.15);
  transform: scale(1.02);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.partner-img {
  max-height: 4.5rem;
  max-width: 100%;
  object-fit: contain;
}

/* Footer Section */
footer {
  border-top: 1px solid var(--border-color);
  padding: 4rem 0;
  text-align: center;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.footer-logo {
  max-height: 3rem;
}

.footer-details {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.footer-details span {
  display: block;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.footer-socials {
  display: flex;
  gap: 1.5rem;
  margin: 1rem 0;
}

.footer-social-link {
  color: var(--text-muted);
  font-size: 1.5rem;
  transition: var(--transition-smooth);
}

.footer-social-link:hover {
  color: var(--neon-blue);
  transform: scale(1.1);
}

.footer-contact {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-contact span {
  color: var(--text-primary);
}

/* Modal Dialog */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 1.5rem;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background: #0d121f;
  border: 1px solid rgba(0, 240, 255, 0.25);
  box-shadow: 0 0 40px rgba(0, 240, 255, 0.15);
  border-radius: 16px;
  width: 100%;
  max-width: 450px;
  padding: 2rem;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-overlay.active .modal-content {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition-smooth);
}

.modal-close:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
}

.modal-title {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 0.5rem;
}

.modal-desc {
  font-size: 0.9rem;
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.modal-options {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.modal-option-btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem;
  background: rgba(13, 20, 35, 0.8);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  text-decoration: none;
  text-align: left;
  transition: var(--transition-smooth);
  cursor: pointer;
}

.modal-option-btn.blue:hover {
  border-color: var(--neon-blue);
  box-shadow: 0 0 20px hsla(186, 100%, 50%, 0.15);
  background: rgba(20, 30, 50, 0.9);
}

.modal-option-btn.orange:hover {
  border-color: var(--neon-orange);
  box-shadow: 0 0 20px hsla(24, 100%, 50%, 0.15);
  background: rgba(40, 25, 35, 0.9);
}

.modal-option-btn svg {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  transition: transform 0.3s ease;
}

.modal-option-btn.blue svg {
  color: var(--neon-blue);
}

.modal-option-btn.orange svg {
  color: var(--neon-orange);
}

.modal-option-btn:hover svg {
  transform: scale(1.1);
}

.modal-option-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-primary);
  margin-bottom: 0.15rem;
}

.modal-option-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Scroll reveal helper class */
.scroll-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
