/* slot crazy - Neon Blue & Hot Pink Theme */
:root {
  --primary-blue: #00D4FF;
  --primary-pink: #FF006E;
  --dark-bg: #0A0E27;
  --darker-bg: #050812;
  --card-bg: #131829;
  --text-light: #E8F1F5;
  --text-gray: #A0AEC0;
  --accent-purple: #9D4EDD;
  --accent-yellow: #FFD60A;
  --success-green: #06FFA5;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
  color: var(--text-light);
  line-height: 1.6;
  min-height: 100vh;
}

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

/* Header & Navigation */
header {
  background: rgba(10, 14, 39, 0.95);
  border-bottom: 2px solid var(--primary-blue);
  padding: 1rem 0;
  position: relative;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.8rem;
  font-weight: 800;
  text-decoration: none;
  color: var(--text-light);
  text-shadow: 0 0 20px var(--primary-blue);
}

.logo-img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

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

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

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

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

.cta-button {
  background: linear-gradient(135deg, var(--primary-pink), var(--accent-purple));
  color: white;
  padding: 12px 28px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 0 20px rgba(255, 0, 110, 0.5);
  transition: all 0.3s;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(255, 0, 110, 0.8);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 1.5rem;
  cursor: pointer;
}

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

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

.hero h1 {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 40px rgba(0, 212, 255, 0.3);
}

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

.hero-image {
  width: 100%;
  max-width: 1000px;
  height: auto;
  border-radius: 20px;
  margin: 40px auto;
  box-shadow: 0 20px 60px rgba(0, 212, 255, 0.3);
}

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

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--primary-blue);
  text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

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

.game-card {
  background: var(--card-bg);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s;
  border: 2px solid transparent;
}

.game-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-pink);
  box-shadow: 0 15px 40px rgba(255, 0, 110, 0.4);
}

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

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

.game-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--primary-blue);
}

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

.game-button {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-purple));
  color: white;
  padding: 10px 24px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.game-button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.6);
}

/* Info Sections */
.info-section {
  background: var(--card-bg);
  border-radius: 15px;
  padding: 40px;
  margin: 40px 0;
  border-left: 4px solid var(--primary-pink);
}

.info-section h2 {
  color: var(--primary-blue);
  margin-bottom: 20px;
  font-size: 2rem;
}

.info-section p, .info-section ul {
  color: var(--text-gray);
  margin-bottom: 15px;
}

.info-section ul {
  list-style-position: inside;
  padding-left: 20px;
}

/* Payment Methods */
.payment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.payment-item {
  background: var(--card-bg);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  border: 2px solid var(--primary-blue);
}

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

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

.faq-item {
  background: var(--card-bg);
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  border: 1px solid var(--primary-blue);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text-light);
  padding: 20px;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s;
}

.faq-question:hover {
  background: rgba(0, 212, 255, 0.1);
}

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

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

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

.review-card {
  background: var(--card-bg);
  padding: 25px;
  border-radius: 12px;
  border-left: 4px solid var(--primary-pink);
}

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

.reviewer-name {
  font-weight: 700;
  color: var(--primary-blue);
}

.review-rating {
  color: var(--accent-yellow);
  font-size: 1.2rem;
}

.review-text {
  color: var(--text-gray);
  margin-bottom: 10px;
}

.review-date {
  font-size: 0.85rem;
  color: var(--text-gray);
  opacity: 0.7;
}

/* Footer */
footer {
  background: var(--darker-bg);
  border-top: 2px solid var(--primary-blue);
  padding: 50px 0 20px;
  margin-top: 80px;
}

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

.footer-section h3 {
  color: var(--primary-blue);
  margin-bottom: 20px;
}

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

.footer-section a {
  color: var(--text-gray);
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
  transition: color 0.3s;
}

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

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-gray);
  font-size: 0.9rem;
}

/* Breadcrumb */
.breadcrumb {
  padding: 20px 0;
  font-size: 0.9rem;
}

.breadcrumb a {
  color: var(--primary-blue);
  text-decoration: none;
}

.breadcrumb span {
  color: var(--text-gray);
  margin: 0 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-menu {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 1rem;
    padding: 20px 0;
  }

  .nav-menu.active {
    display: flex;
  }

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

  .hero p {
    font-size: 1.1rem;
  }

  .section-title {
    font-size: 2rem;
  }

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

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

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

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