/* General Styles */
:root {
  --primary-color: #e0b05b; /* Gold/Orange accent from Imagine Live */
  --secondary-color: #ffffff; /* White for text */
  --background-dark: #1a1a1a; /* Dark background from Imagine Live */
  --background-light: #2a2a2a; /* Slightly lighter dark for cards/sections */
  --text-light: #ffffff;
  --text-dark: #1a1a1a;
  --border-color: rgba(255, 255, 255, 0.1);
  --shadow-color: rgba(0, 0, 0, 0.5);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  height: 100%;
}

body {
  font-family: 'Montserrat', sans-serif; /* Modern, clean font */
  line-height: 1.6;
  color: var(--text-light);
  background-color: var(--background-dark);
  background-image: url('https://imaginelive.com/wp-content/themes/imagine-live/assets/images/bg-pattern.png'); /* Subtle pattern from Imagine Live */
  background-attachment: fixed;
  min-height: 100vh;
  overflow-x: hidden; /* Prevent horizontal scroll */
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(26, 26, 26, 0.95); /* Darker, matching site */
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  padding: 15px 0;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 10px;
  padding: 0 20px;
}

.logo img {
  height: 50px;
  width: auto;
}

.nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 40px;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-list-mobile {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  text-align: center;
  transition: all 0.2s ease;
}

.nav-list-mobile li {
  list-style: none;
}

.nav-list a,
.nav-list-mobile a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  padding: 10px 15px;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  font-size: 16px;
}

.nav-list a:hover,
.nav-list-mobile a:hover {
  color: var(--primary-color);
}

.dropdown {
  position: relative;
}

.dropdown > a {
  color: var(--primary-color) !important;
  font-weight: 600;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(26, 26, 26, 0.98); /* Darker, matching site */
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 15px 0;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  list-style: none;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  margin: 0;
}

.dropdown-menu a {
  display: block;
  padding: 12px 20px;
  border-radius: 0;
  margin: 0;
  color: var(--text-light) !important;
  font-weight: 400 !important;
  font-size: 14px;
}

.dropdown-menu a:hover {
  background: rgba(224, 176, 91, 0.1); /* Lighter primary color for hover */
  color: var(--primary-color) !important;
}

.header-cta {
  flex-shrink: 0;
}
.header-cta a .mobile {
  display: none;
}

.play-btn {
  background: var(--primary-color);
  color: var(--text-dark);
  text-decoration: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(224, 176, 91, 0.3); /* Shadow matching primary color */
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.5px;
}

.play-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(224, 176, 91, 0.4);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--text-light);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Hero Section */
.hero {
  padding: 140px 0 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 60px;
}

.badge {
  background: rgba(224, 176, 91, 0.2); /* Primary color with transparency */
  color: var(--primary-color);
  padding: 10px 20px;
  border-radius: 25px;
  display: inline-block;
  margin-bottom: 25px;
  font-size: 14px;
  font-weight: bold;
  border: 1px solid rgba(224, 176, 91, 0.3);
}

.hero-title {
  font-size: 4rem;
  font-weight: bold;
  line-height: 1.1;
  margin-bottom: 25px;
}

.highlight {
  color: var(--primary-color);
  /* background: linear-gradient(45deg, var(--primary-color), var(--secondary-color)); */
  /* -webkit-background-clip: text; */
  /* -webkit-text-fill-color: transparent; */
  /* background-clip: text; */
}

.hero-description {
  font-size: 18px;
  margin-bottom: 35px;
  opacity: 0.9;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}

.btn {
  padding: 15px 30px;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.btn-primary {
  background: var(--primary-color);
  color: var(--text-dark);
  box-shadow: 0 4px 15px rgba(224, 176, 91, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--shadow-color);
}

.game-preview {
  display: flex;
  justify-content: center;
  align-items: center;
}

.game-preview-image {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px var(--shadow-color);
  transition: transform 0.3s ease;
}

.game-preview-image:hover {
  transform: scale(1.05);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.stat {
  text-align: center;
  padding: 25px;
  background: var(--background-light);
  border-radius: 15px;
  border: 1px solid var(--border-color);
}

.stat-value {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Sections */
section {
  padding: 80px 0;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-align: center;
  color: var(--primary-color); /* Solid primary color for headings */
  /* -webkit-background-clip: text; */
  /* -webkit-text-fill-color: transparent; */
  /* background-clip: text; */
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

/* Casinos Section */
.casino-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.casino-card {
  background: var(--background-light);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 30px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.casino-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary-color); /* Solid primary color for accent */
}

.casino-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px var(--shadow-color);
}

.casino-header {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
  align-items: center;
}

.casino-logo img {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  object-fit: cover;
}

.casino-info h3 {
  font-size: 22px;
  margin-bottom: 8px;
  color: var(--primary-color);
}

.rating {
  color: var(--primary-color);
  margin-bottom: 10px;
  font-size: 14px;
}

.casino-info p {
  font-size: 14px;
  opacity: 0.8;
  line-height: 1.5;
}

.bonus {
  background: rgba(224, 176, 91, 0.15); /* Primary color with transparency */
  color: var(--primary-color);
  padding: 18px;
  border-radius: 12px;
  margin-bottom: 20px;
  font-weight: bold;
  text-align: center;
  border: 1px solid rgba(224, 176, 91, 0.3);
}

.features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 25px;
}

.feature {
  background: rgba(255, 255, 255, 0.1);
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.casino-buttons {
  display: flex;
  gap: 12px;
}

.btn-outline {
  background: transparent;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

/* Demo Section */
.demo {
  text-align: center;
  background: var(--background-light);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.demo iframe,
.demo-iframe {
  border-radius: 15px;
  margin-top: 30px;
  box-shadow: 0 10px 30px var(--shadow-color);
}

.demo-iframe {
  padding: 15px;
  background: var(--background-light);
  border-radius: 15px;
  margin-top: 30px;
  box-shadow: 0 10px 30px var(--shadow-color);
  position: relative;
  width: 100%;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.demo-iframe button {
  max-width: 250px;
  max-height: 80px;
  padding: 14px 30px;
}

/* About Section */
.about {
  background: transparent;
  color: var(--text-light);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 40px;
}

.about-text {
  font-size: 16px;
  line-height: 1.7;
}

.about-text p {
  margin-bottom: 25px;
  opacity: 0.9;
}

.game-specs {
  background: var(--background-light);
  padding: 30px;
  border-radius: 15px;
  border: 1px solid var(--border-color);
  margin-top: 30px;
}

.game-specs h3 {
  color: var(--primary-color);
  margin-bottom: 25px;
  font-size: 20px;
  text-align: left;
  background: none;
  -webkit-text-fill-color: unset; /* Resetting this */
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.spec-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-color);
}

.spec-item:last-child {
  border-bottom: none;
}

.spec-label {
  font-weight: 500;
  opacity: 0.8;
}

.spec-value {
  color: var(--primary-color);
  font-weight: bold;
}

.game-interface {
  position: relative;
  background: var(--background-light);
  border-radius: 20px;
  padding: 30px;
  border: 2px solid var(--border-color);
}

.multiplier-display {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.multiplier {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 18px;
  color: var(--text-light);
  transition: all 0.3s ease;
}

.multiplier.active {
  background: var(--primary-color);
  border-color: var(--primary-color);
  box-shadow: 0 0 20px rgba(224, 176, 91, 0.5);
}

.game-screen {
  text-align: center;
}

.game-interface-image {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 15px 35px var(--shadow-color);
}

/* Features Section */
.features {
  background: transparent;
  color: var(--text-light);
}

.features-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 50px;
}

.features-header h2 {
  color: var(--primary-color);
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 30px;
  text-align: left;
  background: none;
  -webkit-text-fill-color: unset; /* Resetting this */
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 30px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: var(--background-light);
  border-radius: 15px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(10px);
}

.feature-icon {
  font-size: 24px;
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: var(--text-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-text h3 {
  color: var(--primary-color);
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 600;
}

.feature-text p {
  opacity: 0.9;
  line-height: 1.6;
  margin: 0;
}

.features-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.feature-box {
  background: var(--background-light);
  padding: 20px;
  border-radius: 15px;
  border: 1px solid var(--border-color);
  text-align: center;
}

.feature-box-icon {
  font-size: 32px;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.feature-box h4 {
  color: var(--primary-color);
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 600;
}

.feature-box p {
  opacity: 0.9;
  line-height: 1.5;
  margin: 0;
  font-size: 14px;
}

.infographic-container {
  background: var(--background-light);
  border-radius: 20px;
  padding: 30px;
  border: 2px solid var(--border-color);
}

.features-img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 15px 35px var(--shadow-color);
}

/* Benefits Section */
.benefits {
  background: transparent;
  color: var(--text-light);
}

.benefits-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 50px;
}

.benefits-img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 15px 35px var(--shadow-color);
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: var(--background-light);
  border-radius: 15px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.benefit-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(10px);
}

.benefit-icon {
  font-family: 'FontAwesome';
  font-size: 24px;
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: var(--text-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-text h3 {
  color: var(--primary-color);
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 600;
}

.benefit-text p {
  opacity: 0.9;
  line-height: 1.6;
  margin: 0;
}

/* Guide Section */
.guide-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 50px;
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: var(--background-light);
  border-radius: 15px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.step-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(10px);
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: var(--text-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 20px;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(224, 176, 91, 0.3);
}

.step-text h3 {
  color: var(--primary-color);
  margin-bottom: 8px;
  font-size: 18px;
}

.step-text p {
  opacity: 0.9;
  line-height: 1.6;
}

/* Legal Section */
.legal-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.legal-box {
  background: var(--background-light);
  backdrop-filter: blur(10px);
  padding: 35px;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.legal-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px var(--shadow-color);
}

.legal-box h3 {
  color: var(--primary-color);
  margin-bottom: 25px;
  font-size: 22px;
  text-align: left;
  background: none;
  -webkit-text-fill-color: unset; /* Resetting this */
}

.legal-list {
  list-style: none;
}

.legal-list li {
  padding: 12px 0;
  padding-left: 30px;
  position: relative;
  opacity: 0.9;
  line-height: 1.6;
}

.legal-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color); /* Changed to primary color */
  font-weight: bold;
  font-size: 18px;
}

/* Pros and Cons */
.pros-cons-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 50px;
}

.pros-box,
.cons-box {
  background: var(--background-light);
  backdrop-filter: blur(10px);
  padding: 35px;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.pros-box:hover,
.cons-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px var(--shadow-color);
}

.pros-header,
.cons-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.pros-icon,
.cons-icon {
  font-size: 2rem;
  color: var(--primary-color); /* Changed to primary color */
}

.pros-header h3 {
  color: var(--primary-color);
  font-size: 24px;
  text-align: left;
  background: none;
  -webkit-text-fill-color: unset; /* Resetting this */
}

.cons-header h3 {
  color: var(--primary-color); /* Changed to primary color */
  font-size: 24px;
  text-align: left;
  background: none;
  -webkit-text-fill-color: unset; /* Resetting this */
}

.pros-list,
.cons-list {
  list-style: none;
}

.pros-list li,
.cons-list li {
  padding: 10px 0;
  padding-left: 25px;
  position: relative;
  opacity: 0.9;
  line-height: 1.5;
}

.pros-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color); /* Changed to primary color */
  font-weight: bold;
}

.cons-list li:before {
  content: "✗";
  position: absolute;
  left: 0;
  color: var(--primary-color); /* Changed to primary color */
  font-weight: bold;
}

/* FAQ Section */
.faq {
  background-color: var(--background-dark);
  border-top: 1px solid var(--border-color);
}

/* Footer Styles */
.footer {
  background: var(--background-dark);
  padding: 40px 0;
  border-top: 1px solid var(--border-color);
  text-align: center;
  font-size: 14px;
  opacity: 0.7;
}

.footer-links a {
  color: var(--text-light);
  text-decoration: none;
  margin: 0 15px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-color);
}

.social-icons a {
  color: var(--text-light);
  font-size: 20px;
  margin: 0 10px;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 992px) {
  .nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .header-content {
    justify-content: space-between;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .game-preview {
    order: -1; /* Image above text on mobile */
  }

  .stats {
    grid-template-columns: 1fr;
  }

  .about-content,
  .features-content,
  .benefits-content,
  .guide-content {
    grid-template-columns: 1fr;
  }

  .features-header h2,
  .game-specs h3,
  .legal-box h3,
  .pros-header h3,
  .cons-header h3 {
    text-align: center;
  }

  .features-list,
  .benefits-list,
  .steps-list {
    align-items: center;
  }

  .feature-item,
  .benefit-item,
  .step-item {
    flex-direction: column;
    text-align: center;
  }

  .feature-icon,
  .benefit-icon,
  .step-number {
    margin-bottom: 15px;
  }

  .pros-cons-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }

  h2 {
    font-size: 2rem;
  }

  .casino-grid {
    grid-template-columns: 1fr;
  }

  .legal-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-description {
    font-size: 16px;
  }

  .play-btn,
  .btn {
    padding: 10px 20px;
    font-size: 12px;
  }

  .header-cta a .desktop {
    display: none;
  }

  .header-cta a .mobile {
    display: inline-block;
  }

  .logo img {
    height: 40px;
  }

  .header {
    padding: 10px 0;
  }
}

