* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-main: #050313;
  --bg-secondary: #0c0720;
  --bg-card: rgba(15, 10, 35, 0.88);
  --text-main: #ffffff;
  --text-soft: #dddafc;
  --blue-neon: #35d6ff;
  --pink-neon: #ff3cac;
  --purple-neon: #9d4dff;
  --border-soft: rgba(255, 60, 172, 0.18);
  --shadow-blue: 0 0 18px rgba(53, 214, 255, 0.55);
  --shadow-pink: 0 0 18px rgba(255, 60, 172, 0.55);
  --shadow-purple: 0 0 18px rgba(157, 77, 255, 0.45);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  background: linear-gradient(180deg, #04020d 0%, #090518 35%, #0c0622 65%, #04020d 100%);
  color: var(--text-main);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(3, 2, 12, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 60, 172, 0.12);
}

.navbar {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-logo img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(53, 214, 255, 0.45);
  box-shadow: 0 0 16px rgba(255, 60, 172, 0.45);
}

.nav-logo span {
  font-size: 1.05rem;
  font-weight: bold;
  color: #fff;
  text-shadow: 0 0 10px rgba(255, 60, 172, 0.75);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 22px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-main);
  font-weight: bold;
  transition: 0.3s ease;
}

.nav-links a:hover {
  color: var(--pink-neon);
  text-shadow: 0 0 8px rgba(255, 60, 172, 0.85);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--text-main);
  font-size: 2rem;
  cursor: pointer;
}

.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-banner {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(4, 2, 13, 0.3), rgba(4, 2, 13, 0.86)),
    radial-gradient(circle at center, rgba(53, 214, 255, 0.07), rgba(255, 60, 172, 0.1), rgba(0, 0, 0, 0.75));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 850px;
  text-align: center;
  padding: 45px 35px;
  border-radius: 24px;
  background: rgba(7, 4, 18, 0.62);
  border: 1px solid rgba(255, 60, 172, 0.18);
  box-shadow:
    0 0 35px rgba(255, 60, 172, 0.16),
    0 0 55px rgba(53, 214, 255, 0.08);
}

.hero-content h1 {
  font-size: 4.2rem;
  margin-bottom: 22px;
  color: #ffffff;
  text-shadow:
    0 0 10px rgba(53, 214, 255, 0.95),
    0 0 20px rgba(255, 60, 172, 0.85);
}

.hero-content p {
  font-size: 1.22rem;
  color: var(--text-soft);
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 15px 26px;
  border-radius: 14px;
  text-decoration: none;
  color: white;
  font-weight: bold;
  transition: 0.3s ease;
  border: 1px solid transparent;
}

.btn-primary {
  background: linear-gradient(90deg, var(--pink-neon), var(--purple-neon));
  box-shadow: var(--shadow-pink);
}

.btn-secondary {
  background: linear-gradient(90deg, var(--blue-neon), #6b8cff);
  box-shadow: var(--shadow-blue);
}

.btn:hover {
  transform: translateY(-3px) scale(1.03);
  opacity: 0.95;
}

.section {
  padding: 95px 0;
}

.alt-section {
  background: linear-gradient(180deg, rgba(10, 6, 25, 0.92), rgba(5, 3, 15, 0.98));
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.section h2 {
  text-align: center;
  font-size: 2.7rem;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow:
    0 0 8px rgba(53, 214, 255, 0.85),
    0 0 12px rgba(255, 60, 172, 0.4);
}

.section-text {
  max-width: 900px;
  margin: 0 auto 42px auto;
  text-align: center;
  color: var(--text-soft);
  font-size: 1.08rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 0 18px rgba(255, 60, 172, 0.08);
  transition: 0.3s ease;
}

.card:hover,
.staff-card:hover,
.rule-item:hover {
  transform: translateY(-6px);
}

.card h3,
.staff-card h3 {
  margin-bottom: 12px;
  color: #ffffff;
}

.card p,
.staff-card p {
  color: var(--text-soft);
}

.glow-blue {
  box-shadow: var(--shadow-blue);
}

.glow-pink {
  box-shadow: var(--shadow-pink);
}

.glow-purple {
  box-shadow: var(--shadow-purple);
}

.staff-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.staff-card {
  background: rgba(13, 8, 30, 0.96);
  border: 1px solid rgba(53, 214, 255, 0.2);
  border-radius: 22px;
  padding: 26px;
  text-align: center;
  box-shadow: 0 0 16px rgba(53, 214, 255, 0.08);
  transition: 0.3s ease;
}

.vip-box {
  max-width: 820px;
  margin: 0 auto;
  background: rgba(14, 8, 30, 0.95);
  padding: 38px;
  border-radius: 24px;
  border: 1px solid rgba(255, 60, 172, 0.18);
  box-shadow: 0 0 20px rgba(255, 60, 172, 0.1);
  text-align: center;
}

.vip-box ul {
  list-style: none;
  margin-bottom: 25px;
}

.vip-box li {
  margin: 12px 0;
  color: var(--text-soft);
  font-size: 1.05rem;
}

.rules-list {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
}

.rule-item {
  background: rgba(15, 8, 32, 0.95);
  padding: 18px 20px;
  border-left: 4px solid var(--pink-neon);
  border-radius: 14px;
  color: var(--text-soft);
  box-shadow: 0 0 12px rgba(255, 60, 172, 0.08);
  transition: 0.3s ease;
}

.contact-section {
  text-align: center;
}

.contact-buttons {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.footer {
  text-align: center;
  padding: 26px 15px;
  background: #05020f;
  border-top: 1px solid rgba(157, 77, 255, 0.16);
  color: #cfcff5;
}

/* Responsive */
@media (max-width: 992px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .staff-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-content h1 {
    font-size: 3.1rem;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 80px;
    right: 5%;
    width: 240px;
    background: rgba(8, 5, 20, 0.97);
    border: 1px solid rgba(255, 60, 172, 0.2);
    border-radius: 16px;
    flex-direction: column;
    padding: 20px;
    display: none;
    box-shadow: 0 0 18px rgba(255, 60, 172, 0.15);
  }

  .nav-links.active {
    display: flex;
  }

  .cards-grid,
  .staff-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 580px;
  }

  .hero-banner {
    object-position: 60% center;
  }

  .hero-content {
    padding: 28px 20px;
  }

  .hero-content h1 {
    font-size: 2.45rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .section h2 {
    font-size: 2.1rem;
  }

  .nav-logo span {
    font-size: 0.92rem;
  }
}

.age-modal {
  position: fixed;
  inset: 0;
  background: rgba(2, 1, 8, 0.92);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}

.age-modal.hidden {
  display: none;
}

.age-box {
  width: 100%;
  max-width: 520px;
  background: rgba(10, 6, 24, 0.96);
  border: 1px solid rgba(255, 60, 172, 0.22);
  border-radius: 24px;
  padding: 35px 30px;
  text-align: center;
  box-shadow:
    0 0 24px rgba(255, 60, 172, 0.18),
    0 0 30px rgba(53, 214, 255, 0.1);
}

.age-box h2 {
  font-size: 2rem;
  margin-bottom: 18px;
  color: #ffffff;
  text-shadow:
    0 0 8px rgba(53, 214, 255, 0.8),
    0 0 12px rgba(255, 60, 172, 0.4);
}

.age-box p {
  color: var(--text-soft);
  font-size: 1.05rem;
  margin-bottom: 14px;
}

.age-warning {
  font-weight: bold;
  color: #ffffff;
}

.age-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 18px;
}