@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800;900&display=swap');

:root {
  /* Colors */
  --bg-primary: #0b0b0f;
  --bg-secondary: #14141a;
  --accent-purple: #a855f7;
  --accent-yellow: #fde047;
  --accent-orange: #fb923c;
  --accent-red: #ef4444;
  --text-main: #f8fafc;
  --text-secondary: #d4d4d8;
  --text-muted: #71717a;

  /* Gradients */
  --grad-neon-burst: linear-gradient(135deg, var(--accent-purple), var(--accent-orange));
  --grad-party-heat: linear-gradient(135deg, var(--accent-red), var(--accent-yellow));
  --grad-electric-glow: linear-gradient(135deg, var(--accent-purple), var(--accent-yellow));

  /* Glow Effects */
  --glow-purple: rgba(168, 85, 247, 0.45);
  --glow-yellow: rgba(253, 224, 71, 0.35);
  --glow-orange: rgba(251, 146, 60, 0.35);
  --glow-red: rgba(239, 68, 68, 0.35);

  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-blur: blur(18px);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.text-gradient {
  background: var(--grad-electric-glow);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-heat {
  background: var(--grad-party-heat);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

p {
  color: var(--text-secondary);
  font-size: 1.125rem;
  margin-bottom: 15px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

/* Layout */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 100px 0;
  position: relative;
}

/* Header */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(11, 11, 15, 0.7);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--glass-border);
  transition: all 0.3s ease;
}

.navbar::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--grad-neon-burst);
  opacity: 0.5;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--text-main);
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 0 10px var(--glow-purple);
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}

.nav-links a:hover {
  color: var(--accent-yellow);
  text-shadow: 0 0 8px var(--glow-yellow);
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background: var(--accent-yellow);
  transition: width 0.3s ease;
  box-shadow: 0 0 8px var(--glow-yellow);
}

.nav-links a:hover::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background: var(--grad-neon-burst);
  color: var(--text-main);
  box-shadow: 0 0 20px var(--glow-purple);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px var(--glow-orange);
}

.btn-primary:active {
  transform: scale(0.95);
}

.btn-secondary {
  background: var(--glass-bg);
  border: 1px solid var(--accent-yellow);
  color: var(--accent-yellow);
  box-shadow: 0 0 15px var(--glow-yellow);
}

.btn-secondary:hover {
  background: rgba(253, 224, 71, 0.1);
  box-shadow: 0 0 25px var(--glow-yellow);
  transform: translateY(-2px);
}

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

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('images/neon-festival-night-hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: -2;
  animation: bg-zoom 20s infinite alternate linear;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(11, 11, 15, 0.95) 0%, rgba(11, 11, 15, 0.6) 50%, rgba(11, 11, 15, 0.95) 100%);
  z-index: -1;
}

.hero-content {
  max-width: 800px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: clamp(3rem, 6vw, 5.5rem);
  margin-bottom: 20px;
  text-shadow: 0 0 20px rgba(168, 85, 247, 0.5);
}

.hero p {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--text-main);
  margin-bottom: 40px;
  font-weight: 300;
  text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

.hero-btns {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.hero-legal {
  margin-top: 50px;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 10px 20px;
  background: var(--glass-bg);
  border-radius: 50px;
  border: 1px solid var(--glass-border);
  display: inline-block;
}

/* Game Section */
.game-section {
  background: var(--bg-secondary);
  position: relative;
}

.game-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, var(--glow-purple) 0%, transparent 60%);
  opacity: 0.1;
  pointer-events: none;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 15px;
}

.game-container {
  max-width: 1100px;
  margin: 0 auto;
  background: var(--glass-bg);
  border-radius: 24px;
  padding: 10px;
  border: 1px solid var(--accent-purple);
  box-shadow: 0 0 40px var(--glow-purple);
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.game-container:hover {
  transform: scale(1.01);
  box-shadow: 0 0 60px var(--glow-purple), inset 0 0 20px var(--glow-purple);
}

.game-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  border-radius: 16px;
  overflow: hidden;
  background: #000;
}

.game-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Features Section */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.feature-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: var(--grad-neon-burst);
  transition: left 0.5s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 20px var(--glow-orange);
  border-color: rgba(251, 146, 60, 0.3);
}

.feature-card:hover::before {
  left: 0;
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  font-size: 2.5rem;
  box-shadow: inset 0 0 20px rgba(255,255,255,0.05);
}

.fc-1 .feature-icon { color: var(--accent-purple); text-shadow: 0 0 15px var(--glow-purple); }
.fc-2 .feature-icon { color: var(--accent-yellow); text-shadow: 0 0 15px var(--glow-yellow); }
.fc-3 .feature-icon { color: var(--accent-orange); text-shadow: 0 0 15px var(--glow-orange); }
.fc-4 .feature-icon { color: var(--accent-red); text-shadow: 0 0 15px var(--glow-red); }

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--text-main);
}

/* SEO & Additional Sections */
.seo-section {
  padding: 100px 0;
}

.styled-list {
  margin-top: 20px;
  margin-bottom: 20px;
  list-style-type: none;
}

.styled-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 15px;
  color: var(--text-secondary);
}

.styled-list li::before {
  content: '⚡';
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1rem;
  color: var(--accent-yellow);
}

.styled-list li strong {
  color: var(--text-main);
}

/* FAQ Section */
.faq-section {
  padding: 100px 0;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 30px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-2px);
  border-color: var(--accent-purple);
  box-shadow: 0 5px 20px var(--glow-purple);
}

.faq-item h3 {
  color: var(--accent-yellow);
  margin-bottom: 12px;
  font-size: 1.25rem;
  text-transform: none;
}

.faq-item p {
  margin-bottom: 0;
}

/* Internal Pages specific */
.page-header {
  padding: 160px 0 80px;
  text-align: center;
  background: var(--bg-secondary);
  position: relative;
  border-bottom: 1px solid var(--glass-border);
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  height: 2px;
  background: var(--grad-electric-glow);
  filter: blur(2px);
}

.content-panel {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 50px;
  margin-bottom: 40px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.content-panel h2 {
  margin-top: 30px;
  margin-bottom: 15px;
  color: var(--accent-yellow);
}

.content-panel p {
  margin-bottom: 20px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-image img {
  width: 100%;
  border-radius: 20px;
  border: 1px solid var(--accent-purple);
  box-shadow: 0 0 30px var(--glow-purple);
}

/* Forms */
.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.form-control {
  width: 100%;
  padding: 16px;
  background: rgba(0,0,0,0.5);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  color: var(--text-main);
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-purple);
  box-shadow: 0 0 15px var(--glow-purple);
}

textarea.form-control {
  resize: vertical;
  min-height: 150px;
}

/* Footer */
footer {
  background: var(--bg-secondary);
  padding: 80px 0 40px;
  border-top: 1px solid var(--glass-border);
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand p {
  margin-top: 20px;
  font-size: 1rem;
  max-width: 400px;
}

.footer-links h4 {
  color: var(--text-main);
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.footer-links ul li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--text-secondary);
  font-weight: 300;
}

.footer-links a:hover {
  color: var(--accent-yellow);
  text-shadow: 0 0 8px var(--glow-yellow);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid var(--glass-border);
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-disclaimer {
  margin-top: 15px;
  font-size: 0.8rem;
  color: var(--accent-red);
  text-transform: uppercase;
}

/* Animations */
@keyframes bg-zoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.1); }
}

.neon-flicker {
  animation: flicker 4s infinite alternate;
}

@keyframes flicker {
  0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
    text-shadow: 0 0 10px var(--glow-purple), 0 0 20px var(--glow-purple), 0 0 40px var(--accent-purple);
    opacity: 1;
  }
  20%, 24%, 55% {
    text-shadow: none;
    opacity: 0.8;
  }
}

.pulse-glow {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(168, 85, 247, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(168, 85, 247, 0); }
  100% { box-shadow: 0 0 0 0 rgba(168, 85, 247, 0); }
}

/* Particles / Floating elements */
.particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.particle {
  position: absolute;
  background: var(--accent-yellow);
  border-radius: 50%;
  opacity: 0.5;
  animation: float 10s infinite ease-in-out;
  box-shadow: 0 0 10px var(--glow-yellow);
}

@keyframes float {
  0% { transform: translateY(0) translateX(0); opacity: 0; }
  50% { opacity: 0.8; }
  100% { transform: translateY(-100vh) translateX(50px); opacity: 0; }
}

/* Responsive */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 80px;
    right: -100%;
    width: 250px;
    height: calc(100vh - 80px);
    background: var(--bg-secondary);
    flex-direction: column;
    padding: 40px;
    transition: right 0.3s ease;
    border-left: 1px solid var(--accent-purple);
    box-shadow: -10px 0 30px var(--glow-purple);
  }

  .nav-links.active {
    right: 0;
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-btns {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .content-panel {
    padding: 30px 20px;
  }

  .faq-item {
    padding: 20px;
  }
}