/* pop slots - Purple-Cyan Neon Theme CSS */

:root {
  --primary-purple: #9333EA;
  --primary-cyan: #06B6D4;
  --accent-pink: #EC4899;
  --accent-yellow: #FBBF24;
  --dark-bg: #1E1B4B;
  --darker-bg: #0F172A;
  --light-text: #F8FAFC;
  --gray-text: #CBD5E1;
}

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

body {
  font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
  color: var(--light-text);
  line-height: 1.7;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header & Navigation */
header {
  background: rgba(30, 27, 75, 0.95);
  padding: 20px 0;
  box-shadow: 0 4px 20px rgba(147, 51, 234, 0.3);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-cyan);
  text-decoration: none;
  text-shadow: 0 0 20px rgba(6, 182, 212, 0.6);
}

.logo img {
  width: 50px;
  height: 50px;
  filter: drop-shadow(0 0 10px rgba(147, 51, 234, 0.8));
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}

.nav-menu a {
  color: var(--gray-text);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.nav-menu a:hover {
  color: var(--primary-cyan);
  text-shadow: 0 0 10px rgba(6, 182, 212, 0.5);
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-purple), var(--primary-cyan));
  transition: width 0.3s ease;
}

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

.cta-button {
  background: linear-gradient(135deg, var(--primary-purple), var(--primary-cyan));
  color: white;
  padding: 12px 28px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(147, 51, 234, 0.4);
  transition: all 0.3s ease;
  display: inline-block;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(147, 51, 234, 0.6);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--primary-cyan);
  font-size: 28px;
  cursor: pointer;
}

/* Hero Section */
.hero {
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(147, 51, 234, 0.15), transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--primary-cyan), var(--primary-purple), var(--accent-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  line-height: 1.2;
}

.hero p {
  font-size: 20px;
  color: var(--gray-text);
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-image {
  margin-top: 40px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(147, 51, 234, 0.4);
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Section Styles */
section {
  padding: 80px 0;
}

h2 {
  font-size: 36px;
  margin-bottom: 20px;
  text-align: center;
  background: linear-gradient(135deg, var(--primary-purple), var(--primary-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--primary-cyan);
  font-weight: 600;
}

/* Game Cards */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.game-card {
  background: rgba(30, 27, 75, 0.6);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.game-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-cyan);
  box-shadow: 0 15px 40px rgba(6, 182, 212, 0.3);
}

.game-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.game-card-content {
  padding: 20px;
}

.game-card h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.game-card p {
  color: var(--gray-text);
  margin-bottom: 15px;
  font-size: 15px;
}

/* Payment Methods */
.payment-methods {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.payment-item {
  background: rgba(30, 27, 75, 0.6);
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  min-width: 150px;
  border: 2px solid rgba(147, 51, 234, 0.3);
  transition: all 0.3s ease;
}

.payment-item:hover {
  border-color: var(--primary-cyan);
  transform: scale(1.05);
}

.payment-item img {
  width: 80px;
  height: auto;
  margin-bottom: 10px;
}

/* FAQ Accordion */
.faq-item {
  background: rgba(30, 27, 75, 0.6);
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  border: 1px solid rgba(147, 51, 234, 0.2);
}

.faq-question {
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--primary-cyan);
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: rgba(147, 51, 234, 0.1);
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: var(--gray-text);
}

.faq-item.active .faq-answer {
  padding: 20px;
  max-height: 500px;
}

.faq-icon {
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.review-card {
  background: rgba(30, 27, 75, 0.6);
  padding: 25px;
  border-radius: 12px;
  border-left: 4px solid var(--primary-cyan);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.reviewer-name {
  font-weight: 600;
  color: var(--primary-cyan);
}

.review-rating {
  color: var(--accent-yellow);
}

.review-text {
  color: var(--gray-text);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 10px;
}

.review-date {
  font-size: 12px;
  color: #64748B;
}

/* Footer */
footer {
  background: rgba(15, 23, 42, 0.95);
  padding: 60px 0 20px;
  margin-top: 80px;
  border-top: 2px solid rgba(147, 51, 234, 0.3);
}

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

.footer-section h4 {
  color: var(--primary-cyan);
  margin-bottom: 20px;
  font-size: 18px;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section a {
  color: var(--gray-text);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--primary-cyan);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(147, 51, 234, 0.2);
  color: var(--gray-text);
  font-size: 14px;
}

.age-restriction {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(239, 68, 68, 0.2);
  padding: 8px 16px;
  border-radius: 20px;
  color: #FCA5A5;
  font-weight: 600;
  margin-top: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }
  
  .nav-menu {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 15px;
    padding: 20px 0;
  }
  
  .nav-menu.active {
    display: flex;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero p {
    font-size: 16px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  .games-grid {
    grid-template-columns: 1fr;
  }
}

/* Lazy Loading */
img[loading="lazy"] {
  opacity: 0;
  transition: opacity 0.3s ease;
}

img[loading="lazy"].loaded {
  opacity: 1;
}
