/* --- CSS Variables and Global Styles --- */
:root {
  --primary-color: #007bff; /* A more standard, trustworthy blue */
  --primary-hover: #0056b3;
  --secondary-color: #28a745; /* Green for success/money */
  --bg-dark: #121212;
  --bg-light: #1e1e1e;
  --text-light: #ffffff;
  --text-medium: #adb5bd;
  --font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --border-radius: 8px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-family);
  background-color: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.6;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.8rem;
  border-radius: var(--border-radius);
  font-weight: bold;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-primary {
  background-color: var(--primary-color);
  color: var(--text-light);
}
.btn-primary:hover {
  background-color: var(--primary-hover);
}
.btn-large {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}
.btn-icon {
  filter: brightness(0) invert(1);
}

/* --- Header --- */
.header {
  background-color: rgba(18, 18, 18, 0.8);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid #2a2a2a;
}
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo img {
  height: 32px;
  width: auto;
}
.nav {
  display: flex;
  gap: 2rem;
}
.nav-link {
  color: var(--text-medium);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}
.nav-link:hover {
  color: var(--text-light);
}
.mobile-download-btn {
  display: none;
}

/* --- Hero Section --- */
.hero {
  padding: 4rem 0;
  background: var(--bg-light);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
}
.hero-content h1 {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.hero-content .subtitle {
  font-size: 1.2rem;
  color: var(--text-medium);
  margin-bottom: 2rem;
  max-width: 90%;
}
.hero-content .bonus-text {
  margin-top: 1rem;
  color: #ffc107;
  font-weight: bold;
}
.hero-image {
  text-align: center;
}

/* --- Features Section --- */
.features-section {
  padding: 5rem 0;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.feature-card {
  background-color: var(--bg-light);
  padding: 2rem;
  border-radius: var(--border-radius);
  text-align: center;
  border: 1px solid #2a2a2a;
}
.feature-icon {
  margin: 0 auto 1rem;
}
.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.feature-card p {
  color: var(--text-medium);
  font-size: 0.9rem;
}

/* --- Games Section --- */
.games-section {
  padding: 5rem 0;
  background-color: var(--bg-light);
}
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.game-card {
  text-align: center;
}
.game-card img {
  border-radius: 16px;
  margin-bottom: 0.5rem;
  border: 2px solid #333;
}
.game-card p {
  font-weight: 500;
}
.games-section .btn {
  display: block;
  margin: 0 auto;
  width: fit-content;
}

/* --- Reviews Section --- */
.reviews-section {
  padding: 5rem 0;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.review-card {
  background-color: var(--bg-light);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  border: 1px solid #2a2a2a;
}
.review-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}
.review-author {
  font-weight: bold;
}
.review-win {
  font-size: 0.9rem;
  color: var(--secondary-color);
}
.review-rating {
  margin-left: auto;
  background-color: var(--secondary-color);
  color: white;
  padding: 0.2rem 0.6rem;
  border-radius: 1rem;
  font-size: 0.9rem;
}
.review-body {
  color: var(--text-medium);
}

/* --- FAQ Section --- */
.faq-section {
  padding: 5rem 0;
  background-color: var(--bg-light);
}
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  margin-bottom: 1rem;
}
.faq-question {
  background-color: #2a2a2a;
  padding: 1rem 1.5rem;
  width: 100%;
  text-align: left;
  border: none;
  color: var(--text-light);
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
  border-radius: var(--border-radius);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-question::after {
  content: "+";
  font-size: 1.5rem;
}
.faq-question.active::after {
  content: "−";
}
.faq-answer {
  background-color: var(--bg-light);
  padding: 1.5rem;
  display: none;
  border-radius: 0 0 var(--border-radius) var(--border-radius);
}
.faq-answer p {
  color: var(--text-medium);
}

/* --- Footer --- */
.footer {
  background-color: #000;
  padding: 3rem 0 2rem;
}
.footer-content {
  text-align: center;
  margin-bottom: 2rem;
}
.footer-logo {
  margin-bottom: 1rem;
}
.footer-content p {
  max-width: 600px;
  margin: 0 auto 1.5rem;
  color: var(--text-medium);
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.footer-links a {
  color: var(--text-medium);
  text-decoration: none;
}
.footer-links a:hover {
  color: var(--text-light);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #2a2a2a;
  padding-top: 2rem;
}
.footer-bottom p {
  color: var(--text-medium);
}
.social-links {
  display: flex;
  gap: 1rem;
}
.social-links img {
  opacity: 0.7;
  transition: opacity 0.3s ease;
}
.social-links a:hover img {
  opacity: 1;
}

/* --- Responsive Styles --- */
@media (max-width: 992px) {
  .features-grid,
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-content .subtitle {
    margin: 1rem auto 2rem;
  }
  .hero-image {
    order: -1;
    margin-bottom: 2rem;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
  .nav {
    display: none;
  }
  .mobile-download-btn {
    display: inline-flex;
  }
  .hero-content h1 {
    font-size: 2.2rem;
  }
  .features-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
  }
}

/* --- Legal Page Styles --- */
.legal-page {
  padding: 4rem 0;
}
.legal-content {
  background-color: var(--bg-light);
  padding: 2rem 3rem;
  border-radius: var(--border-radius);
  max-width: 900px;
  margin: 0 auto;
}
.legal-content h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}
.legal-content .last-updated {
  color: var(--text-medium);
  margin-bottom: 2rem;
  font-style: italic;
}
.legal-content h2 {
  font-size: 1.8rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid var(--primary-color);
  padding-bottom: 0.5rem;
}
.legal-content p,
.legal-content li {
  color: var(--text-medium);
  line-height: 1.8;
}
.legal-content ul {
  list-style-position: inside;
  padding-left: 1rem;
}
.legal-content a {
  color: var(--primary-color);
  font-weight: bold;
}

@media (max-width: 768px) {
  .legal-content {
    padding: 1.5rem;
  }
  .legal-content h1 {
    font-size: 2rem;
  }
  .legal-content h2 {
    font-size: 1.5rem;
  }
}
