/* === Import Orbitron Font from Google === */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@500&display=swap');

/* === Global Reset and Base Styles === */
*, *::before, *::after {
  box-sizing: border-box;
}

body {
  font-family: 'Orbitron', sans-serif;
  margin: 0;
  background: radial-gradient(ellipse at center, #0a0f1e 0%, #000 100%);
  background-size: cover;
  background-attachment: fixed;
  overflow-x: hidden;
  color: #fff;
  cursor: url('images/pointer.png'), auto;
  padding-bottom: env(safe-area-inset-bottom, 20px);
}

/* === Main Content Padding === */
main {
  padding-top: clamp(80px, 10vh, 120px);
}

/* === Text Shadow for Depth === */
h1, h2, h3, p, .content-text {
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}
/* === Flicker Animation for Neon Effects === */
@keyframes flicker {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.95; }
}

/* === Pulse Animation for Call-to-Action Buttons === */
@keyframes pulse {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.07); }
  100% { transform: scale(1); }
}

/* === Fade-In Up Animation for Entrance Effects === */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* === Fixed Header with Blur and Neon Border === */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0, 20, 30, 0.4);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #00ffe0;
  box-shadow: 0 0 15px rgba(0, 255, 224, 0.2);
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  z-index: 1000;
}

/* === Logo Styling with Flicker Effect === */
.neoverso-logo {
  font-size: 2.5em;
  color: #00f0ff;
  text-shadow: 0 0 5px #00f0ff, 0 0 10px #00f0ff, 0 0 20px #0080ff;
  padding: 15px 25px;
  border-radius: 12px;
  display: inline-block;
  animation: flicker 2s infinite;
}

.neoverso-logo .lens {
  color: #00ffcc;
  text-shadow: 0 0 8px #00ffcc, 0 0 15px #00ffcc, 0 0 25px #00ccaa;
  transform: scale(1.05);
  display: inline-block;
}

/* === Navigation Menu Styling === */
nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0;
  margin: 0;
}

nav a {
  color: #00f0ff;
  text-decoration: none;
  font-size: 1.2em;
  padding: 8px 15px;
  border-radius: 6px;
  background-color: rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 10px #00f0ff;
  transition: background-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

nav a:hover,
nav a:focus {
  background: linear-gradient(to right, #00ffe0, #ff00d4);
  color: #000;
  box-shadow: 0 0 15px #00ffe0;
  transform: scale(1.05);
  outline: none;
}
/* === Hero Section Split Background Layout === */
.hero-bg-split {
  position: relative;
  width: 100%;
  min-height: 70vh;           /* Allows content to grow on smaller screens */
  height: auto;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 120px;
  padding-bottom: 40px;       /* Ensures button doesn't get cut off */
  z-index: 0;
}

/* === Background Image Panels === */
.bg-left,
.bg-right {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 1;
  z-index: 0;
}

.bg-left {
  left: 0;
  background-image: url('images/Wplayer3.1.jpg');
}

.bg-right {
  right: 0;
  background-image: url('images/MPlayer1.1.jpg');
}
/* 🎃 Hero Competencia Section */
.hero-competencia {
  position: relative;
  background-image: url("images/HellHordeRift.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
  color: #fff;
}

/* 🧥 Overlay Content */
.hero-overlay {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 40px;
  border-radius: 12px;
  max-width: 800px;
  box-shadow: 0 0 20px #00ffe055;
}

.hero-overlay h1 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #00ffe0;
  text-shadow: 0 0 2px #00ffe0;
}

.hero-overlay h2 {
  font-size: 1.6rem;
  margin-bottom: 15px;
}

.hero-overlay p {
  font-size: 1rem;
  margin-bottom: 25px;
  color: #ccc;
}

.hero-book-btn {
  background-color: #00ffe0;
  color: #000;
  font-family: 'Orbitron', sans-serif;
  font-size: 1rem;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 0 10px #00ffe055;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
}

.hero-book-btn:hover {
  background-color: #00e6cc;
  transform: scale(1.05);
}

/* === Hero Content Container === */
.hero-content {
  position: relative;
  z-index: 1;                 /* Ensures it's above background images */
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  text-align: center;
  padding: 0 1rem 20px;       /* Bottom padding added for spacing */
}

/* === Hero Headings === */
.hero-content h1 {
  font-size: clamp(2.5rem, 6vw, 3.5rem);
}

.hero-content h2 {
  font-size: clamp(1.8rem, 5vw, 2.5rem);
}

.hero-content h3 {
  font-size: clamp(1.4rem, 4vw, 2rem);
}

/* === Call-To-Action Button === */
.hero-book-btn {
  display: inline-block;
  margin-top: 30px;
  padding: 16px 32px;
  font-weight: bold;
  font-size: 1.1rem;
  border-radius: 30px;
  text-decoration: none;
  background: linear-gradient(to right, #00ffe0, #ff00d4);
  color: #000;
  box-shadow: 0 0 12px #00ffff99;
  animation: pulse 2s infinite ease-in-out;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-book-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px #00ffe0, 0 0 35px #ff00d4;
}
/* === Mobile Adjustments for Hero Section === */
@media (max-width: 480px) {
  .hero-content h1,
  .hero-content h2,
  .hero-content h3 {
    font-size: 1.2rem;        /* Scales down text for smaller screens */
  }

  .hero-book-btn {
    padding: 12px 24px;
    font-size: 1rem;
    margin-top: 20px;
  }

  .hero-bg-split {
    padding-bottom: 60px;     /* Extra space to prevent button clipping */
  }
}
/* === Footer Container === */
footer, .site-footer {
  text-align: center;
  padding: 40px 20px;
  padding-bottom: calc(env(safe-area-inset-bottom, 20px) + 40px);
  background-color: #111;
  font-size: 0.9rem;
  border-top: 2px solid #00ffe0;
  box-shadow: 0 0 15px rgba(0, 255, 224, 0.15);
  color: #ccc;
}

/* === Footer Grid Layout === */
.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

/* === Individual Footer Columns === */
.footer-column {
  flex: 1 1 250px;
  max-width: 300px;
}

.footer-column h3 {
  color: #00ffe7;
  margin-bottom: 12px;
  font-size: 1.2rem;
}
/* ✉️ Email Reservation Button */
.reserve-btn {
  background-color: #00ffe0;
  color: #000;
  font-family: 'Orbitron', sans-serif;
  font-size: 1rem;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 0 10px #00ffe055;
  transition: background 0.3s ease, transform 0.2s ease;
}

.reserve-btn:hover {
  background-color: #00e6cc;
  transform: scale(1.05);
}

/* === Email Link Styling === */
.email-link {
  display: inline-block;
  padding: 12px 20px;
  background: rgba(0, 255, 231, 0.1);
  border: 2px solid #00ffe7;
  border-radius: 10px;
  color: #00ffe7;
  font-weight: bold;
  text-decoration: none;
  backdrop-filter: blur(4px);
  box-shadow: 0 0 10px #00ffe7;
  transition: box-shadow 0.3s ease, transform 0.2s ease;
}

.email-link:hover {
  box-shadow: 0 0 20px #00ffe7;
  transform: scale(1.05);
}
/* === Section Backgrounds for Game & Genre Areas === */
.game-gallery,
.game-category,
.genre-section,
.experience-grid-section {
  padding: 40px 20px;
  background: linear-gradient(to bottom, #0e0d1b, #1d1d2f);
  color: #fff;
  text-align: center;
  border-top: 2px solid #00ffe0;
  box-shadow: 0 0 20px #00ffe033;
}

/* === Section Titles === */
.game-gallery h1,
.game-category h2,
.genre-section h2,
.experience-grid-title {
  font-size: 2.4rem;
  color: #00ffe0;
  text-shadow: 0 0 10px #00ffe0;
  margin-bottom: 40px;
}

/* === Responsive Grid Layouts === */
.game-grid,
.genre-grid,
.experience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  justify-content: center;
  padding: 20px;
}
/* === Horizontal Game Card === */
.game-card.horizontal {
  background-color: #111;
  border-radius: 12px;
  margin: 30px auto;
  max-width: 1000px;
  box-shadow: 0 0 20px #00ffe055;
  color: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* === Banner Image and Title === */
.game-banner {
  position: relative;
  text-align: left;
}

.game-banner img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  opacity: 0.85;
  box-shadow: 0 0 12px #00ffff66;
}

.game-banner h3 {
  position: absolute;
  bottom: 10px;
  left: 20px;
  font-size: 1.6rem;
  color: #0ff;
  text-shadow: 0 0 6px #00ffff;
  margin: 0;
}

/* === Body Section: Description + Video Side-by-Side === */
.game-body {
  display: flex;
  flex-direction: row;
  gap: 20px;
  padding: 20px;
  flex-wrap: wrap;
}

.game-description {
  flex: 1 1 45%;
  font-size: 1rem;
  color: #ccc;
}

.game-description ul {
  list-style: none;
  padding: 0;
  margin-top: 10px;
}

.game-description li {
  margin-bottom: 8px;
}

/* === Horizontal Video Container === */
.video-container.horizontal-video {
  flex: 1 1 45%;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: 10px;
  box-shadow: 0 0 12px #00ffff66;
}

.video-container.horizontal-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}


/* === Game Grid Layout === */
.game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  padding: 20px;
  align-items: start; /* Align cards to top for visual consistency */
}

/* === Game Card Container === */
.game-card {
  display: flex;
  flex-direction: column;
  background-color: #111;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 20px #00ffe055;
  color: #fff;
  font-family: 'Orbitron', sans-serif;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 30px #00ffff88;
}

/* === Image Styling === */
.game-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
  box-shadow: 0 0 12px #00ffff66;
}

/* === Game Body === */
.game-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1rem;
  flex-grow: 1;
}

/* === Text Styling === */
.game-card h3 {
  font-size: 1.4rem;
  color: #0ff;
  margin-bottom: 10px;
  text-shadow: 0 0 6px #00ffff;
}

.game-card p {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 10px;
}

.game-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 15px;
}

.game-card li {
  font-size: 0.95rem;
  margin-bottom: 6px;
}

/* === Video Container === */
.video-container {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 0 12px #00ffff66;
}

.video-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}


/* === Horizontal Game Reel Showcase === */
.game-card-reel {
  position: relative;
  z-index: 10;
  background: linear-gradient(to bottom, #0e0d1b, #1d1d2f);
  color: #e0e0e0;
  padding: 60px 20px;
  text-align: center;
  font-family: 'Orbitron', sans-serif;
  border-top: 2px solid #00ffe7;
  overflow: hidden;
}

/* === Reel Container with Horizontal Scroll === */
.reel-container {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 10px;
  box-sizing: border-box;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

/* === Reel Track with Auto-Scroll Animation === */
.reel-track {
  display: flex;
  flex-direction: row;
  gap: 20px;
  width: max-content;
  min-width: 100%;
  animation: reelLoop 60s linear infinite;
  touch-action: pan-x;
  scroll-snap-type: x mandatory;
}

.reel-track:hover {
  animation-play-state: paused;
}

@keyframes reelLoop {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* === Individual Game Slide === */
.game-slide {
  flex: 0 0 300px;
  text-align: center;
  margin: 0 10px;
  scroll-snap-align: start;
}

.game-slide img {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

.game-slide h3 {
  font-size: 1.25rem;
  color: #00ffe7;
  margin-top: 10px;
}

.game-description {
  font-size: 0.95rem;
  color: #ccc;
  margin-top: 8px;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}

.slider-cta {
  margin-top: 30px;
}
/* === Mobile Layout for Game Reel === */
@media (max-width: 600px) {
  .reel-container {
    max-width: 100vw;
    padding: 0 10px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .reel-track {
    animation: none;
    flex-wrap: nowrap;
    display: flex;
    gap: 16px;
    scroll-snap-type: x mandatory;
  }

  .game-slide {
    flex: 0 0 80vw;
    max-width: 80vw;
    scroll-snap-align: start;
    margin: 0;
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    box-sizing: border-box;
  }

  .game-slide img {
    width: 100%;
    height: auto;
    max-height: 180px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
  }

  .game-slide h3 {
    font-size: 1.1rem;
    margin-top: 12px;
    text-shadow: 0 0 5px #000;
  }

  .game-description {
    font-size: 0.9rem;
    line-height: 1.4;
    max-width: 90%;
    margin: 0 auto;
  }
}
/* === Team Showcase Grid === */
.team-showcase {
  padding: 80px 30px;
  text-align: center;
  background: linear-gradient(to bottom, #0e0d1b, #1d1d2f);
}

.team-showcase h2 {
  color: #0ff;
  font-size: 2rem;
  margin-bottom: 40px;
  text-shadow: 0 0 10px #0ff;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
  padding: 0 10px;
  justify-items: center;
}

.team-grid img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 0 20px #00ffff44;
  transition: transform 0.3s ease;
}

.team-grid img:hover {
  transform: scale(1.05);
}
/* === Connect Section for Social Media Links === */
.connect-section {
  padding: 60px 20px;
  text-align: center;
  background: #0a0a0a;
  color: #fff;
}

.connect-section h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.connect-section p {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 40px;
}

/* === Social Grid Layout === */
.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 30px;
  max-width: 80%;
  margin: 0 auto;
}

/* === Individual Social Card Styling === */
.social-card {
  background: #111;
  padding: 20px;
  border-radius: 12px;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 150px;
  box-sizing: border-box;
  transition: transform 0.3s, box-shadow 0.3s;
}

.social-card img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  margin-bottom: 10px;
  filter: brightness(1.2);
  display: block;
  max-width: 100%;
}

.social-card span {
  font-weight: bold;
  font-size: 1rem;
}

.social-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px #0ff;
}
/* === Promo Carousel Section === */
.promo-carousel-countdown {
  background: linear-gradient(180deg, #000 0%, #111 100%);
  color: #fff;
  text-align: center;
  padding: 60px 20px;
}

/* === Carousel Container for Promo Slides === */
.carousel-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}

/* === Individual Promo Slide Styling === */
.promo-slide {
  background: #1a1a1a;
  border-radius: 10px;
  width: 300px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  transition: transform 0.3s ease;
}

.promo-slide:hover {
  transform: scale(1.03);
}

.promo-slide img {
  width: 100%;
  display: block;
}

.promo-text {
  padding: 15px;
}

/* === Countdown Timer Styling === */
.countdown-timer {
  margin-top: 30px;
  font-family: 'Orbitron', sans-serif;
  font-size: 1.5rem;
}

#countdown {
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  color: #0ff;
  margin-top: 10px;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

#countdown span {
  font-weight: bold;
  padding: 0 5px;
}
/* === FAQ Section Container === */
.faq-section {
  padding: 60px 30px;
  background: linear-gradient(to bottom, #0a0a0a, #1c1c2c);
  color: #fff;
  text-align: center;
  border-top: 2px solid #00ffe0;
  box-shadow: 0 0 20px #00ffe033;
}

/* === FAQ Toggle Button === */
.faq-toggle {
  display: inline-block;
  font-size: 1.3rem;
  font-weight: 600;
  background: linear-gradient(to right, #00ffe0, #ff00d4);
  color: #0a0a0a;
  padding: 10px 18px;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 0 6px #00ffe0aa;
  margin: 0 auto 25px;
  max-width: fit-content;
  transition: all 0.3s ease;
  text-align: center;
}

.faq-toggle:hover,
.faq-section > details[open] .faq-toggle::after {
  background: linear-gradient(to right, #ff00d4, #00ffe0);
  box-shadow: 0 0 12px #00ffe0cc;
}

.faq-toggle::after {
  content: " ▼";
  font-size: 1rem;
}

/* === FAQ Content Container === */
.faq-content {
  margin-top: 40px;
  animation: fadeUp 0.6s ease forwards;
}

/* === Individual FAQ Entry === */
.faq-content details {
  background: rgba(255, 255, 255, 0.04);
  margin-bottom: 15px;
  padding: 20px 25px;
  border-radius: 12px;
  box-shadow: 0 0 15px #00ffff33;
  transition: all 0.3s ease;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.faq-content summary {
  font-weight: bold;
  font-size: 1.2rem;
  color: #00ffe0;
  cursor: pointer;
  outline: none;
}

.faq-content p {
  margin-top: 15px;
  font-size: 1rem;
  color: #ccc;
  line-height: 1.5;
}

.faq-content details:hover,
.faq-content details:focus-within {
  box-shadow: 0 0 25px #00ffff55;
  transform: scale(1.02);
}
/* === Booking Options Section === */
.booking-options {
  padding: 40px 20px;
  text-align: center;
}

/* === Booking Header Title === */
.booking-header h2 {
  margin-bottom: 20px;
  font-size: 2rem;
  color: #00ffe0;
  text-shadow: 0 0 10px #00ffe0;
}

/* === Booking Buttons Layout === */
.booking-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

/* === Individual Booking Button Styling === */
.booking-buttons button {
  background-color: #0d0d1a;
  color: #f0f0f0;
  border: 2px solid #00c8ff;
  padding: 14px 28px;
  font-size: 1.1rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 200, 255, 0.2);
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  width: 100%;
  max-width: 300px;
}

.booking-buttons button:hover {
  background-color: #00c8ff;
  color: #0d0d1a;
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(0, 200, 255, 0.4);
}
/* === Embedded Map Thumbnail Styling === */
.map-thumb {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 0 12px #00ffff44;
  transition: transform 0.3s ease;
}

.map-thumb:hover {
  transform: scale(1.05);
}
/* === Who We Are Section === */
.who-we-are,
.identity-box {
  padding: 60px 20px;
  text-align: center;
}

/* === Identity Image Styling === */
.identity-img {
  width: 150px;
  border-radius: 10px;
}

/* === Identity Text Heading === */
.identity-text h2 {
  font-size: 1.6rem;
}

/* === Icon or Decorative Element Below Text === */
.identity-icon {
  margin-top: 20px;
}

/* === Contact Us Section === */
.contact-us {
  padding: 60px 20px;
  text-align: center;
  display: flex;
  justify-content: center;
}

/* === Contact Card Container === */
.contact-card {
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
/* === Who We Are Section === */
.who-we-are,
.identity-box {
  padding: 60px 20px;
  text-align: center;
}

/* === Identity Image Styling === */
.identity-img {
  width: 150px;
  border-radius: 10px;
}

/* === Identity Text Heading === */
.identity-text h2 {
  font-size: 1.6rem;
}

/* === Icon or Decorative Element Below Text === */
.identity-icon {
  margin-top: 20px;
}

/* === Contact Us Section === */
.contact-us {
  padding: 60px 20px;
  text-align: center;
  display: flex;
  justify-content: center;
}

/* === Contact Card Container === */
.contact-card {
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
/* === Trigger Button for Terms Popup === */
#terms-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 10, 0.95);
  z-index: 3000; /* Must be higher than your navbar */
  overflow-y: auto;
  backdrop-filter: blur(6px);
}

.terms-popup-trigger {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.terms-popup-trigger button {
  background-color: #1a1a1a;
  color: #00ffe7;
  border: 2px solid #00ffe7;
  padding: 10px 20px;
  font-family: 'Orbitron', sans-serif;
  font-size: 1em;
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.3s, color 0.3s;
}

/* === Modal Overlay === */
.modal {
  display: none;
  position: fixed;
  z-index: 3000; /* ✅ Raised above navbar */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(6px); /* Optional: adds subtle blur */
}

/* === Modal Content Box === */
.modal-content {
  background-color: #1a1a1a;
  margin: 10% auto;
  padding: 20px;
  border: 1px solid #444;
  width: 80%;
  max-width: 700px;
  border-radius: 8px;
  color: #eee;
  font-family: 'Orbitron', sans-serif;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 0 20px #00ffe055;
}

.modal-content h2 {
  color: #00ffe7;
  text-align: center;
  margin-bottom: 20px;
  text-shadow: 0 0 10px #00ffe7;
}

.modal-content ol {
  text-align: left;
  padding-left: 20px;
}

.modal-content ol li {
  margin-bottom: 15px;
  line-height: 1.6;
}

/* === Close Button === */
.close {
  color: #00ffe7;
  float: right;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  padding: 10px 15px;
  line-height: 1;
  border-radius: 6px;
  transition: background 0.2s;
}

.close:hover {
  background-color: #00ffe720;
}

/* === Gallery Tour Section === */
.gallery-tour {
  padding: 2rem;
  background-color: #0a0a0a;
  color: #fff;
  text-align: center;
}

.gallery-tour h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  margin-bottom: 1rem;
}

/* === Image Grid for Gallery === */
.gallery-grid {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.gallery-grid img {
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
  transition: transform 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.05);
}

/* === Embedded Video Styling === */
.video-tour iframe {
  max-width: 100%;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
}

/* === Filter Buttons for Gallery Categories === */
.filter-buttons {
  text-align: center;
  margin: 2rem 0;
}

.filter-buttons button {
  background-color: transparent;
  border: 2px solid #00f2ff;
  color: #00f2ff;
  font-family: 'Orbitron', sans-serif;
  font-size: 1rem;
  padding: 0.6rem 1.2rem;
  margin: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 8px;
}

.filter-buttons button:hover,
.filter-buttons button.active {
  background-color: #00f2ff;
  color: #000;
  box-shadow: 0 0 10px #00f2ff;
}
/* === Responsive Video Container (16:9 Aspect Ratio) === */
.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: 8px;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
/* === Fullscreen Popup Form Overlay === */
.popup-form {
  display: none;
  position: fixed;
  z-index: 3000; /* ✅ Raised above navbar */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  font-family: 'Orbitron', sans-serif;
  backdrop-filter: blur(6px); /* Optional polish */
  overflow-y: auto;
  padding: 40px 20px;
  box-sizing: border-box;
}
/* === Form Content Box === */
.form-content {
  background-color: #1a1a1a;
  margin: 0 auto;
  padding: 30px;
  border-radius: 12px;
  max-width: 500px;
  color: #fff;
  box-shadow: 0 0 20px #00ffe055;
  position: relative;
}

/* === Close Button === */
.close-btn {
  color: #00ffe7;
  font-size: 2rem;
  position: absolute;
  top: 10px;
  right: 15px;
  cursor: pointer;
}

/* === Styled Form Container === */
.styled-form {
  background: rgba(0, 0, 0, 0.6);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 0 20px #00ffe055;
  max-width: 500px;
  margin: 0 auto;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.styled-form h2 {
  font-size: 1.8rem;
  color: #00ffe0;
  margin-bottom: 10px;
  text-align: center;
}

.styled-form p {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 30px;
  text-align: center;
}

/* === Availability Indicator === */
.cupos-indicador {
  font-size: 1.2rem;
  color: #00ffe0;
  margin-bottom: 25px;
  text-align: center;
  background: rgba(0, 255, 224, 0.1);
  padding: 10px 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px #00ffe055;
}
/* === Form Group Container === */
.form-group {
  width: 100%;
  max-width: 400px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

/* === Label Styling === */
.form-group label {
  font-weight: bold;
  margin-bottom: 8px;
  color: #00ffe0;
  font-size: 1rem;
}

/* === Input Field Styling === */
.form-group input {
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #00ffe055;
  background-color: #111;
  color: #fff;
  font-size: 1rem;
  box-shadow: 0 0 10px #00ffe022;
  transition: box-shadow 0.3s ease;
  width: 100%;
}

.form-group input:focus {
  outline: none;
  box-shadow: 0 0 15px #00ffe0;
}

.form-group input::placeholder {
  color: #888;
}

/* === Submit Button Styling === */
.submit-btn {
  background: linear-gradient(to right, #00ffe0, #ff00d4);
  color: #000;
  font-weight: bold;
  padding: 12px 24px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  width: 100%;
  max-width: 400px;
  font-size: 1.1rem;
  box-shadow: 0 0 12px #00ffff99;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.submit-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px #00ffe0, 0 0 35px #ff00d4;
}
/* === Fullscreen Background Video Styling === */
#bg-video {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  z-index: -1;
  object-fit: cover;
}
/* === Mobile Header Layout === */
@media (max-width: 600px) {
  header.header-top {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
    padding: 15px 20px;
    background: #0a0a0a;
    position: relative;
  }

  .neoverso-logo {
    font-size: 1.5rem;
    color: #00ffe0;
    margin-bottom: 0;
  }

  #menu-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 2rem;
    color: #00ffe0;
    cursor: pointer;
    margin-bottom: 0;
  }

  #main-nav {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    width: 100%;
    background: rgba(0, 20, 30, 0.95);
    backdrop-filter: blur(8px);
    box-sizing: border-box;
    padding: 0;
  }

  #main-nav.show {
    max-height: 500px;
    padding: 20px 0;
  }

  nav ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: center;
    padding: 0;
    margin: 0;
  }

  nav ul li {
    list-style: none;
  }

  nav ul li a {
    color: #00ffe0;
    text-decoration: none;
    font-size: 1.2rem;
    padding: 10px 15px;
    display: block;
    transition: background 0.3s ease;
  }

  nav ul li a:hover {
    background: rgba(0, 255, 224, 0.1);
  }
}

/* === Additional Responsive Adjustments === */
.team-grid img,
.map-thumb {
  height: auto;
}

.faq-section {
  padding: 40px 20px;
}

.faq-section details {
  padding: 15px 20px;
}

.faq-section h2,
.booking-header h2 {
  font-size: 1.8rem;
}

.faq-section summary,
.booking-buttons button,
.tile-btn {
  font-size: 1rem;
}

.faq-section p,
.overlay p {
  font-size: 0.95rem;
}

.game-grid,
.genre-grid {
  grid-template-columns: 1fr;
}

.game-tile {
  height: 260px;
}

.tile-btn {
  padding: 10px 20px;
}

.identity-text h2 {
  font-size: 1.4rem;
}
/* 🍔 Hide hamburger menu by default */
#menu-toggle {
  display: none;
}

/* 📱 Show hamburger menu on small screens */
@media screen and (max-width: 768px) {
  #menu-toggle {
    display: block;
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    background: none;
    border: none;
    color: #00ffe0;
    cursor: pointer;
    z-index: 3000;
  }
}



