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

:root {
  --cosmic-black: #070A13;
  --horizon-blue: #1A6DFF;
  --aurora-cyan: #00E5FF;
  --ember-orange: #FF7846;
  --frost-white: #F5F8FF;
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glow-shadow: 0 0 15px rgba(26, 109, 255, 0.5);
}

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

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--cosmic-black);
  color: var(--frost-white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 700;
}

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

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

/* Layout Utilities */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.section-padding {
  padding: 100px 0;
}

.glass-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.neon-glow {
  box-shadow: var(--glow-shadow);
  border-color: var(--horizon-blue);
}

.neon-text-blue {
  color: var(--horizon-blue);
  text-shadow: 0 0 10px rgba(26, 109, 255, 0.8);
}

.neon-text-cyan {
  color: var(--aurora-cyan);
  text-shadow: 0 0 10px rgba(0, 229, 255, 0.8);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 30px;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 5px;
  cursor: pointer;
  border: 1px solid transparent;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  letter-spacing: 1px;
}

.btn-primary {
  background: var(--horizon-blue);
  color: white;
  box-shadow: 0 4px 15px rgba(26, 109, 255, 0.2);
}

.btn-primary:hover {
  background: #2b7dff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 109, 255, 0.3);
}

.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--frost-white);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--aurora-cyan);
  color: var(--aurora-cyan);
  transform: translateY(-2px);
}

/* Animations */
@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0px);
  }
}

.floating {
  animation: float 4s ease-in-out infinite;
}

@keyframes glow-pulse {
  0% {
    opacity: 0.6;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0.6;
  }
}

.glow-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(26, 109, 255, 0.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

/* Header */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  background: rgba(7, 10, 19, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--glass-border);
}

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

.logo {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--frost-white);
  letter-spacing: 2px;
}

nav ul {
  display: flex;
  gap: 30px;
}

nav ul li a {
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

nav ul li a:hover {
  color: var(--aurora-cyan);
}

/* Hero Section */
#hero {
  min-height: 95vh;
  padding: 150px 0 100px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(rgba(7, 10, 19, 0.8), rgba(7, 10, 19, 0.8)), url('/images/banner.webp') center/cover no-repeat;

}

.hero-content {
  max-width: 600px;
  position: relative;
  z-index: 2;
}

#hero h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  line-height: 1.2;
  text-transform: none;
  background: linear-gradient(to right, var(--frost-white), var(--aurora-cyan));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

#hero p {
  font-size: 1rem;
  margin-bottom: 30px;
  color: rgba(245, 248, 255, 0.7);
  letter-spacing: 0.5px;
}

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

/* Digital Grid Background Effect */
.grid-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(26, 109, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 109, 255, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  transform: perspective(500px) rotateX(60deg) translateY(-200px);
  z-index: 1;
  opacity: 0.1;
}

/* Feature Cards */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.feature-card {
  padding: 40px;
  text-align: center;
}

.feature-card i {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
}

.feature-card h3 {
  margin-bottom: 15px;
  color: var(--aurora-cyan);
}

.feature-card p {
  font-size: 0.95rem;
  color: rgba(245, 248, 255, 0.7);
}

.feature-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: var(--aurora-cyan);
  box-shadow: 0 10px 30px rgba(0, 229, 255, 0.2);
}

#game-showcase {
  background: rgba(26, 109, 255, 0.02);
  position: relative;
}

.slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.horizontal-scroll {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  padding: 50px 0;
  scroll-behavior: smooth;
  scrollbar-width: none;
  cursor: grab;
  width: 100%;
}

.horizontal-scroll:active {
  cursor: grabbing;
}

.horizontal-scroll::-webkit-scrollbar {
  display: none;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  font-size: 1.5rem;
  color: var(--aurora-cyan);
  border: 1px solid var(--glass-border);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  cursor: pointer;
}

.left-btn {
  left: -20px;
}

.right-btn {
  right: -20px;
}

.horizontal-scroll.active {
  cursor: grabbing;
}

.slider-btn:hover {
  background: var(--horizon-blue);
  color: white;
  border-color: var(--aurora-cyan);
  box-shadow: 0 0 20px var(--horizon-blue);
}

.game-card {
  flex: 0 0 380px;
  position: relative;
  overflow: hidden;
  height: 500px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.game-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 60%, rgba(7, 10, 19, 0.8));
  pointer-events: none;
}

.game-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}

.game-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 40px;
  text-align: center;
  z-index: 2;
  transform: translateY(10px);
  opacity: 0.9;
  transition: all 0.5s ease;
}

.game-card:hover img {
  transform: scale(1.15);
}

.game-card:hover .game-info {
  transform: translateY(0);
  opacity: 1;
}

.game-card h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.scroll-progress-container {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.05);
  margin-top: 20px;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}

#scroll-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(to right, var(--horizon-blue), var(--aurora-cyan));
  box-shadow: 0 0 10px var(--aurora-cyan);
  transition: width 0.1s ease;
}

@media (max-width: 768px) {
  .game-card {
    flex: 0 0 300px;
    height: 400px;
  }

  .slider-btn {
    display: none;
  }

  .left-btn,
  .right-btn {
    display: none;
  }
}

/* Experience Timeline */
.timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, var(--horizon-blue), var(--aurora-cyan), transparent);
}

.timeline-item {
  margin-bottom: 100px;
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.timeline-container {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 60px;
}

.timeline-item:nth-child(even) .timeline-container {
  flex-direction: row-reverse;
}

.timeline-content,
.timeline-img {
  width: 45%;
}

.timeline-img {
  overflow: hidden;
  padding: 10px;
}

.timeline-img img {
  width: 100%;
  border-radius: 10px;
  transition: transform 0.5s ease;
}

.timeline-item:hover .timeline-img img {
  transform: scale(1.05);
}

.timeline-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background: var(--aurora-cyan);
  border-radius: 50%;
  box-shadow: 0 0 15px var(--aurora-cyan);
  z-index: 1;
}

.timeline-content {
  padding: 30px;
  text-align: left;
}

.timeline-item:nth-child(odd) .timeline-content {
  text-align: right;
}

.timeline-content h3 {
  color: var(--aurora-cyan);
  margin-bottom: 15px;
}

@media (max-width: 991px) {
  .timeline::before {
    left: 30px;
    transform: none;
  }

  .timeline-dot {
    left: 30px;
    transform: translate(-50%, -50%);
  }

  .timeline-container {
    flex-direction: column !important;
    gap: 30px;
    padding-left: 70px;
  }

  .timeline-content,
  .timeline-img {
    width: 100%;
    text-align: left !important;
  }

  .timeline-item {
    margin-bottom: 60px;
  }
}

/* Stats Section */
#stats {
  background: linear-gradient(rgba(7, 10, 19, 0.85), rgba(7, 10, 19, 0.85)), url('/images/banner.webp') center/cover fixed;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  text-align: center;
}

.stat-item h2 {
  font-size: 3rem;
  color: var(--aurora-cyan);
  margin-bottom: 10px;
}

.stat-item p {
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 0.8rem;
}

/* FAQ Accordion */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 15px;
}

.faq-question {
  width: 100%;
  padding: 20px;
  text-align: left;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  color: var(--frost-white);
  font-family: 'Orbitron', sans-serif;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 0 0 8px 8px;
}

.faq-answer p {
  padding: 20px;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-item.active .faq-question {
  border-color: var(--aurora-cyan);
}

/* 18+ Disclaimer Section */
.disclaimer-section {
  background: rgba(255, 120, 70, 0.05);
  border: 1px solid var(--ember-orange);
  border-radius: 15px;
  padding: 40px;
  text-align: center;
}

.disclaimer-section h2 {
  color: var(--ember-orange);
  margin-bottom: 20px;
}

/* Footer */
footer {
  background: #04060b;
  padding: 80px 0 40px;
  border-top: 1px solid var(--glass-border);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 50px;
  margin-bottom: 50px;
}

.footer-col h4 {
  margin-bottom: 25px;
  color: var(--aurora-cyan);
}

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

.footer-col ul li a:hover {
  padding-left: 5px;
  color: var(--horizon-blue);
}

.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: var(--glass-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
}

.social-icon:hover {
  border-color: var(--aurora-cyan);
  box-shadow: 0 0 10px var(--aurora-cyan);
  color: var(--aurora-cyan);
}

.footer-bottom {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid var(--glass-border);
}

.footer-disclaimer-text {
  font-size: 0.8rem;
  color: rgba(245, 248, 255, 0.5);
  margin-bottom: 10px;
}

/* Age Verification Popup */
#age-verify-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--cosmic-black);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.age-verify-content {
  max-width: 500px;
  padding: 50px;
}

/* Cookie Toast */
#cookie-toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #0a0e1a;
  padding: 20px;
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  z-index: 1500;
  display: none;
  max-width: 400px;
}

/* Contact Form */
.contact-form {
  margin-top: 40px;
  text-align: left;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.8rem;
  color: var(--aurora-cyan);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--frost-white);
  font-family: 'Poppins', sans-serif;
  outline: none;
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--aurora-cyan);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 10px rgba(0, 229, 255, 0.2);
}

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

/* Mobile Responsive */
@media (max-width: 991px) {
  #hero h1 {
    font-size: 3rem;
  }

  .timeline::before {
    left: 30px;
  }

  .timeline-item {
    width: 100%;
    padding-left: 70px !important;
    text-align: left !important;
  }

  .timeline-dot {
    left: 20px !important;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 2.5rem;
  }

  .section-padding {
    padding: 60px 0;
  }

  .hero-btns {
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  nav ul {
    display: none;
  }

  /* Add burger menu logic in JS if needed */
}