@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&display=swap');

:root {
  --bg-dark: #0e0b14;
  --bg-nav: #080511;
  --text-white: #ffffff;
  --accent-purple: #c060ff;
  --accent-blue: #4fc8ff;
  --text-muted: #8b7fa8;
  --accent-red: #c060ff;
  --neon-glow: rgba(192, 96, 255, 0.55);
}

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

body {
  font-family: 'Krona One', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-white);
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Body text (paragraphs) should be normal weight */
p {
  font-weight: normal;
}

/* Headers use Aldrich */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Aldrich', sans-serif;
}

/* Navigation Bar */
.navbar {
  background-color: var(--bg-nav);
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(192, 96, 255, 0.7);
  box-shadow:
    0 1px 0 rgba(192, 96, 255, 0.3),
    0 4px 30px rgba(192, 96, 255, 0.18),
    0 8px 60px rgba(192, 96, 255, 0.07);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  position: absolute;
  left: 2rem;
}

.logo-img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  display: block;
  padding: 0;
  margin: 0;
  filter:
    brightness(0) invert(1)
    drop-shadow(0 0 5px rgba(192, 96, 255, 0.9))
    drop-shadow(0 0 14px rgba(192, 96, 255, 0.5));
}

.logo-placeholder {
  width: 40px;
  height: 40px;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
}

.nav-link {
  color: var(--text-white);
  text-decoration: none;
  font-size: 0.9rem;
  font-family: 'Krona One', sans-serif;
  letter-spacing: 0.5px;
  transition: opacity 0.3s ease, color 0.3s ease;
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.nav-link:hover {
  opacity: 1;
  color: var(--accent-purple);
  text-shadow: 0 0 8px var(--accent-purple), 0 0 20px rgba(192, 96, 255, 0.45);
}

.nav-link.active {
  opacity: 1;
  color: var(--accent-purple);
  text-shadow: 0 0 8px var(--accent-purple), 0 0 16px rgba(192, 96, 255, 0.4);
}

.dropdown {
  position: relative;
}

.dropdown-arrow {
  font-size: 0.7rem;
  margin-left: 0.2rem;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--bg-nav);
  list-style: none;
  padding: 0.5rem 0;
  margin-top: 0.5rem;
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  border: 1px solid rgba(192, 96, 255, 0.45);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.7), 0 0 20px rgba(192, 96, 255, 0.15);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  padding: 0;
}

.dropdown-menu a {
  display: block;
  padding: 0.75rem 1.5rem;
  color: var(--text-white);
  text-decoration: none;
  font-size: 0.85rem;
  font-family: 'Krona One', sans-serif;
  transition: background-color 0.3s ease;
}

.dropdown-menu a:hover {
  background-color: rgba(192, 96, 255, 0.18);
  color: var(--accent-purple);
  text-shadow: 0 0 8px rgba(192, 96, 255, 0.5);
}

@keyframes neon-pulse {
  0%, 100% {
    box-shadow:
      0 0 6px var(--neon-glow),
      0 0 18px rgba(192, 96, 255, 0.28),
      inset 0 0 6px rgba(192, 96, 255, 0.06);
  }
  50% {
    box-shadow:
      0 0 14px var(--neon-glow),
      0 0 36px rgba(192, 96, 255, 0.42),
      inset 0 0 14px rgba(192, 96, 255, 0.1);
  }
}

.btn-get-started {
  background-color: transparent;
  color: var(--accent-purple);
  padding: 0.7rem 1.5rem;
  text-decoration: none;
  font-size: 0.9rem;
  font-family: 'Krona One', sans-serif;
  letter-spacing: 0.5px;
  border-radius: 4px;
  border: 1px solid var(--accent-purple);
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  position: absolute;
  right: 2rem;
  animation: neon-pulse 2.8s ease-in-out infinite;
}

.btn-get-started:hover {
  background-color: var(--accent-purple);
  color: var(--text-white);
  transform: translateY(-2px);
  box-shadow:
    0 0 20px var(--neon-glow),
    0 0 45px rgba(192, 96, 255, 0.38),
    0 4px 15px rgba(0, 0, 0, 0.5);
  animation: none;
}

/* Hero Section with Video Background */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  /* flex: none prevents main { flex: 1 } from collapsing the hero via flex-basis: 0% */
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Use dynamic viewport height on browsers that support it (excludes mobile browser chrome) */
@supports (height: 100dvh) {
  .hero-section {
    height: 100dvh;
  }
}

/* Video Background */
.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.background-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.15);
  z-index: 2;
  pointer-events: none;
}

/* Centered Hero Content */
.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  text-align: center;
  padding: 2rem;
  max-width: 1400px;
  width: 100%;
}

.brand-name {
  font-family: 'Orbitron', sans-serif;
}

.game-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 400;
  color: var(--text-white);
  margin-bottom: 1.5rem;
  letter-spacing: 4px;
  line-height: 1;
  text-transform: uppercase;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
}

.game-subtitle {
  font-family: 'Krona One', sans-serif;
  font-size: clamp(0.9rem, 1.5vw, 1.2rem);
  color: var(--text-white);
  margin-bottom: 3rem;
  line-height: 1.6;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.btn-play-free {
  display: inline-block;
  background-color: transparent;
  color: var(--text-white);
  padding: 1rem 2.5rem;
  text-decoration: none;
  font-size: clamp(0.9rem, 1.2vw, 1.1rem);
  font-family: 'Krona One', sans-serif;
  letter-spacing: 2px;
  border: 2px solid var(--accent-purple);
  border-radius: 4px;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  font-weight: 400;
  text-transform: uppercase;
  animation: neon-pulse 2.8s ease-in-out infinite;
}

.btn-play-free:hover {
  background-color: var(--accent-purple);
  color: var(--text-white);
  transform: translateY(-2px);
  box-shadow:
    0 0 22px var(--neon-glow),
    0 0 55px rgba(192, 96, 255, 0.38),
    0 4px 20px rgba(0, 0, 0, 0.5);
  animation: none;
}

/* 🚀 DEVELOPMENT PAGE SECTION */
.dev-hero-section {
  display: flex;
  width: 100%;
  height: calc(100vh - 80px);
  min-height: 600px;
  overflow: hidden;
}

.dev-video-container {
  position: relative;
  flex: 1.6;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000;
}

.dev-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.dev-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 0, 20, 0.3);
  z-index: 1;
}

.dev-content-container {
  flex: 0.4;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(55, 0, 49, 0.95) 0%, rgba(36, 24, 39, 0.95) 100%);
  border-right: 1px solid rgba(192, 96, 255, 0.5);
  backdrop-filter: blur(10px);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.6), 4px 0 25px rgba(192, 96, 255, 0.12);
  position: relative;
}

.dev-content-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(192, 96, 255, 0.12) 100%);
  pointer-events: none;
}

.dev-content {
  max-width: 350px;
  width: 100%;
  position: relative;
  z-index: 1;
}

.dev-content h1 {
  font-size: 1.1rem;
  font-family: 'Krona One', sans-serif;
  margin-bottom: 1.5rem;
  color: var(--text-white);
}

.dev-content p {
  font-size: 0.7rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  text-align: left;
  letter-spacing: 0.3px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  font-weight: normal;
}

@media (max-width: 968px) {
  .dev-hero-section {
    flex-direction: column;
    height: auto;
  }
  
  .dev-video-container {
    flex: 1;
    height: 50vh;
    min-height: 300px;
  }
  
  .dev-content-container {
    flex: 1;
    border-right: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
  }
  
  .dev-content p {
    text-align: center;
  }
}

/* Footer Styles (Valorant-style) */
.footer {
  background-color: var(--bg-nav);
  padding: 1.5rem 2rem 1rem;
  margin-top: auto;
  border-top: 1px solid rgba(192, 96, 255, 0.45);
  box-shadow: 0 -1px 0 rgba(192, 96, 255, 0.2), 0 -4px 25px rgba(192, 96, 255, 0.08);
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer-mobile-app {
  text-align: center;
  color: var(--text-white);
  font-family: 'Krona One', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer-social-icons {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}

.footer-social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(192, 96, 255, 0.08);
  border: 1px solid rgba(192, 96, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}

.footer-social-icon:hover {
  transform: translateY(-3px);
  background-color: var(--accent-purple);
  box-shadow: 0 0 14px var(--neon-glow), 0 0 28px rgba(192, 96, 255, 0.28);
}

.footer-social-icon[aria-label="Facebook"]:hover {
  background-color: #1877F2;
  box-shadow: 0 0 14px rgba(24, 119, 242, 0.6), 0 0 28px rgba(24, 119, 242, 0.3);
}

.footer-social-icon svg {
  width: 18px;
  height: 18px;
  fill: rgba(192, 96, 255, 0.8);
}

.footer-social-icon:hover svg {
  fill: var(--text-white);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0.5rem 0;
}

.footer-logo-img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  padding: 0;
  margin: 0;
  filter:
    brightness(0) invert(1)
    drop-shadow(0 0 4px rgba(192, 96, 255, 0.8))
    drop-shadow(0 0 10px rgba(192, 96, 255, 0.4));
}

.footer-logo-text {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.2rem;
  color: var(--text-white);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.footer-copyright {
  text-align: center;
  color: var(--text-white);
  font-family: 'Krona One', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}

.footer-legal-links {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-legal-link {
  color: var(--text-white);
  text-decoration: none;
  font-family: 'Krona One', sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.footer-legal-link:hover {
  color: var(--accent-blue);
}

main {
  flex: 1;
}

/* ── Meet Your Droid Section ─────────────────────────────────────── */
.droid-section {
  background: linear-gradient(180deg, #0d0a10 0%, #160d1a 50%, #0d0a10 100%);
  position: relative;
  overflow: hidden;
  padding: 8rem 2rem;
}

/* Scanline texture */
.droid-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(0, 0, 0, 0.05) 3px,
    rgba(0, 0, 0, 0.05) 4px
  );
  pointer-events: none;
  z-index: 0;
}

/* Ambient purple glow behind image */
.droid-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 65% at 72% 50%, rgba(192, 96, 255, 0.2) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.droid-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.droid-specs {
  display: flex;
  flex-direction: column;
}

/* Section title */
.droid-section-title {
  font-family: 'Aldrich', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  letter-spacing: 8px;
  color: var(--text-white);
  margin-bottom: 2.5rem;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.droid-section-title.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Briefing card */
.droid-briefing {
  border-left: 2px solid rgba(192, 96, 255, 0.7);
  padding-left: 1.5rem;
  box-shadow: -4px 0 20px rgba(192, 96, 255, 0.2);
}

/* Individual spec rows */
.spec-line {
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.78rem;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.spec-line.visible {
  opacity: 1;
  transform: translateX(0);
}

.spec-sep {
  color: var(--accent-purple);
  margin: 0 0.8rem;
  text-shadow: 0 0 8px var(--accent-purple);
}

.spec-val {
  color: rgba(255, 255, 255, 0.88);
}

.spec-classified {
  color: var(--accent-purple);
  font-style: italic;
  text-shadow: 0 0 10px rgba(192, 96, 255, 0.7);
}

.spec-active {
  color: var(--accent-blue);
}

/* CTA button */
.btn-acquire {
  display: inline-block;
  align-self: flex-start;
  margin-top: 2.5rem;
  padding: 1rem 2.5rem;
  background: transparent;
  border: 1px solid var(--accent-purple);
  color: var(--accent-purple);
  font-family: 'Krona One', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-decoration: none;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.35s ease, background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.btn-acquire.visible {
  opacity: 1;
  transform: translateY(0);
  animation: neon-pulse 2.8s ease-in-out infinite;
}

.btn-acquire:hover {
  background-color: var(--accent-purple);
  color: var(--text-white);
  box-shadow:
    0 0 20px var(--neon-glow),
    0 0 45px rgba(192, 96, 255, 0.38);
  transform: translateY(-2px);
  animation: none;
}

/* Droid image */
.droid-image-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.9s ease 0.15s, transform 0.9s ease 0.15s;
}

.droid-image-wrap.visible {
  opacity: 1;
  transform: translateX(0);
}

.droid-image {
  max-width: 100%;
  max-height: 78vh;
  object-fit: contain;
  filter:
    drop-shadow(0 0 30px rgba(192, 96, 255, 0.55))
    drop-shadow(0 0 90px rgba(192, 96, 255, 0.28));
}

@media (max-width: 968px) {
  .droid-section {
    padding: 5rem 1.5rem;
  }

  .droid-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .droid-image-wrap {
    order: -1;
    transform: translateY(-30px);
  }

  .droid-image-wrap.visible {
    transform: translateY(0);
  }

  .droid-image {
    max-height: 50vh;
  }

  .btn-acquire {
    align-self: center;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .droid-section-title {
    letter-spacing: 5px;
  }

  .spec-line {
    font-size: 0.72rem;
    letter-spacing: 1px;
  }
}
/* ─────────────────────────────────────────────────────────────────── */

/* Responsive Design */
@media (max-width: 1200px) {
  .game-title {
    font-size: clamp(3rem, 8vw, 6rem);
  }
  
  .game-subtitle {
    font-size: clamp(0.85rem, 1.3vw, 1rem);
    padding: 0 2rem;
  }
}

/* ── Mobile navbar brand center (hidden on desktop) ── */
.nav-brand-center {
  display: none;
}

/* ── Hamburger button (hidden on desktop) ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: transparent;
  border: 1px solid rgba(192, 96, 255, 0.6);
  border-radius: 4px;
  padding: 9px 11px;
  cursor: pointer;
  position: absolute;
  right: 2rem;
  z-index: 200;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 10px rgba(192, 96, 255, 0.35), inset 0 0 6px rgba(192, 96, 255, 0.1);
}

.nav-hamburger:hover {
  border-color: var(--accent-purple);
  box-shadow: 0 0 20px rgba(192, 96, 255, 0.7), 0 0 40px rgba(192, 96, 255, 0.3), inset 0 0 10px rgba(192, 96, 255, 0.15);
}

.hamburger-bar {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--accent-purple);
  border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
  box-shadow: 0 0 8px rgba(192, 96, 255, 0.9), 0 0 16px rgba(192, 96, 255, 0.5);
}

/* Animate bars to × when open */
.nav-hamburger.is-open .hamburger-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger.is-open .hamburger-bar:nth-child(2) {
  opacity: 0;
  width: 0;
}
.nav-hamburger.is-open .hamburger-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile-only GET STARTED inside the menu (hidden on desktop) */
.nav-mobile-cta {
  display: none;
}

/* ── Mobile nav breakpoint ── */
@media (max-width: 1350px) {
  .nav-hamburger {
    display: flex;
  }

  .nav-brand-center {
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Orbitron', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-white);
    letter-spacing: 3px;
    text-transform: uppercase;
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
    opacity: 1;
    transition: opacity 0.5s ease;
  }

  .nav-container {
    justify-content: flex-start;
    padding: 0 2rem;
    position: static;
  }

  /* Keep hamburger vertically centred in the navbar */
  .nav-hamburger {
    top: 50%;
    transform: translateY(-50%);
  }

  /* Hide desktop GET STARTED button */
  .btn-get-started {
    display: none;
  }

  /* Menu collapses; slides down when .nav-open is added */
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    background: rgba(8, 5, 17, 0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 0 2rem;
    transition: max-height 0.38s ease, padding 0.38s ease;
    z-index: 998;
  }

  .nav-menu.nav-open {
    max-height: 640px;
    padding: 1rem 2rem 1.75rem;
    border: 1px solid rgba(192, 96, 255, 0.5);
    border-top: none;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 30px rgba(192, 96, 255, 0.2), inset 0 0 40px rgba(192, 96, 255, 0.04);
  }

  /* Stack each nav item with a faint separator */
  .nav-menu li {
    width: 100%;
  }

  .nav-menu .nav-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.9rem 0;
    border-bottom: 1px solid rgba(192, 96, 255, 0.18);
    font-size: 0.88rem;
    text-shadow: 0 0 8px rgba(192, 96, 255, 0.35);
  }

  .nav-menu .nav-link:hover {
    color: var(--accent-purple);
    text-shadow: 0 0 12px rgba(192, 96, 255, 0.8);
  }

  /* Show GET STARTED inside the mobile menu */
  .nav-mobile-cta {
    display: block;
    padding-top: 1.25rem;
  }

  .nav-mobile-get-started {
    display: block;
    position: static;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
    animation: neon-pulse 2.8s ease-in-out infinite;
  }

  /* Mobile dropdown: toggled by JS click, not hover */
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: none;
    max-height: 0;
    overflow: hidden;
    box-shadow: none;
    border: none;
    border-left: 2px solid rgba(192, 96, 255, 0.3);
    padding: 0 0 0 1rem;
    margin: 0;
    background: transparent;
    min-width: unset;
    transition: max-height 0.3s ease;
  }

  .dropdown.is-open .dropdown-menu {
    max-height: 200px;
  }

  /* Disable hover-based dropdown on mobile */
  .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: none;
    max-height: 0;
  }

  .dropdown.is-open:hover .dropdown-menu {
    max-height: 200px;
  }

  /* Rotate dropdown arrow when open */
  .dropdown.is-open .dropdown-arrow {
    display: inline-block;
    transform: rotate(180deg);
    transition: transform 0.3s ease;
  }
}

@media (max-width: 768px) {
  .nav-container {
    padding: 0 1.25rem;
  }

  .nav-hamburger {
    right: 1.25rem;
  }

  .game-title {
    font-size: clamp(2.5rem, 12vw, 4rem);
    letter-spacing: 2px;
  }
  
  .game-subtitle {
    font-size: 0.8rem;
    letter-spacing: 1px;
    padding: 0 1rem;
  }
  
  .btn-play-free {
    padding: 0.9rem 2rem;
    font-size: 0.9rem;
  }
  
  .hero-section {
    min-height: 500px;
  }
}
