/* style/expert-reviews-bet999-game-selection.css */

/* Variables for colors */
:root {
  --primary-color: #FFD700; /* Gold */
  --secondary-color: #000080; /* Dark Blue */
  --text-dark: #333333; /* Dark text for light backgrounds */
  --text-light: #ffffff; /* Light text for dark backgrounds */
  --button-hover-primary: #b39700; /* Darker gold for hover */
  --button-hover-secondary: #00005a; /* Darker blue for hover */
  --background-light: #f8f8f8;
}

.page-expert-reviews-bet999-game-selection {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--background-light);
}

.page-expert-reviews-bet999-game-selection .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-expert-reviews-bet999-game-selection h1,
.page-expert-reviews-bet999-game-selection h2,
.page-expert-reviews-bet999-game-selection h3 {
  color: var(--secondary-color);
  margin-bottom: 20px;
  font-weight: bold;
}

.page-expert-reviews-bet999-game-selection h1 {
  font-size: 2.8em;
  text-align: center;
  color: var(--text-light);
}

.page-expert-reviews-bet999-game-selection h2 {
  font-size: 2.2em;
  text-align: center;
  margin-top: 40px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary-color);
}

.page-expert-reviews-bet999-game-selection h3 {
  font-size: 1.6em;
  color: var(--secondary-color);
}

.page-expert-reviews-bet999-game-selection p {
  margin-bottom: 15px;
  font-size: 1.1em;
}

.page-expert-reviews-bet999-game-selection ul {
  list-style: disc inside;
  margin-bottom: 20px;
  padding-left: 20px;
}

.page-expert-reviews-bet999-game-selection ul li {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-expert-reviews-bet999-game-selection .btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  font-size: 1.1em;
  text-align: center;
}

.page-expert-reviews-bet999-game-selection .btn-primary {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  border: 2px solid var(--primary-color);
}

.page-expert-reviews-bet999-game-selection .btn-primary:hover {
  background-color: var(--button-hover-primary);
  color: var(--secondary-color);
}

.page-expert-reviews-bet999-game-selection .btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  margin-left: 15px;
}

.page-expert-reviews-bet999-game-selection .btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--secondary-color);
}

.page-expert-reviews-bet999-game-selection .btn-link {
  color: var(--secondary-color);
  text-decoration: underline;
  background: none;
  border: none;
  padding: 0;
  margin-top: 10px;
  display: inline-block;
}

.page-expert-reviews-bet999-game-selection .btn-link:hover {
  color: var(--primary-color);
}

.page-expert-reviews-bet999-game-selection .btn-lg {
  padding: 15px 35px;
  font-size: 1.2em;
}

/* Hero Section */
.page-expert-reviews-bet999-game-selection .hero-section {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #00005a 100%); /* Dark blue gradient */
  padding: 80px 0;
  color: var(--text-light);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-expert-reviews-bet999-game-selection .hero-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.page-expert-reviews-bet999-game-selection .hero-content {
  max-width: 800px;
}

.page-expert-reviews-bet999-game-selection .hero-content p {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.page-expert-reviews-bet999-game-selection .hero-actions {
  margin-top: 30px;
}

.page-expert-reviews-bet999-game-selection .hero-image-wrapper {
  margin-top: 40px;
}

.page-expert-reviews-bet999-game-selection .hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* General Section Styling */
.page-expert-reviews-bet999-game-selection section {
  padding: 60px 0;
  margin-bottom: 20px;
  background-color: var(--background-light);
}

.page-expert-reviews-bet999-game-selection .section-overview,
.page-expert-reviews-bet999-game-selection .section-quality-providers,
.page-expert-reviews-bet999-game-selection .section-user-experience,
.page-expert-reviews-bet999-game-selection .section-promotions,
.page-expert-reviews-bet999-game-selection .section-tips,
.page-expert-reviews-bet999-game-selection .section-conclusion {
  background-color: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  margin-bottom: 30px;
}

.page-expert-reviews-bet999-game-selection .content-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 30px auto;
  display: block;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Game Categories Grid */
.page-expert-reviews-bet999-game-selection .category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-expert-reviews-bet999-game-selection .game-category-item {
  background-color: #f0f0f0;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-expert-reviews-bet999-game-selection .game-category-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
}

.page-expert-reviews-bet999-game-selection .category-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-expert-reviews-bet999-game-selection .game-category-item h3 {
  color: var(--secondary-color);
  margin-bottom: 15px;
  font-size: 1.4em;
}

.page-expert-reviews-bet999-game-selection .game-category-item p {
  font-size: 1em;
  color: #555555;
}

/* Provider Logos */
.page-expert-reviews-bet999-game-selection .provider-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-expert-reviews-bet999-game-selection .provider-logo {
  max-width: 150px;
  height: auto;
  filter: grayscale(80%);
  opacity: 0.7;
  transition: filter 0.3s ease, opacity 0.3s ease;
}

.page-expert-reviews-bet999-game-selection .provider-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* Promotions Section */
.page-expert-reviews-bet999-game-selection .promotion-call-to-action {
  text-align: center;
  margin-top: 40px;
}

.page-expert-reviews-bet999-game-selection .promo-banner {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Conclusion Section */
.page-expert-reviews-bet999-game-selection .section-conclusion {
  text-align: center;
  padding-bottom: 80px;
}

.page-expert-reviews-bet999-game-selection .section-conclusion .btn {
  margin-top: 30px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-expert-reviews-bet999-game-selection h1 {
    font-size: 2.2em;
  }

  .page-expert-reviews-bet999-game-selection h2 {
    font-size: 1.8em;
  }

  .page-expert-reviews-bet999-game-selection h3 {
    font-size: 1.4em;
  }

  .page-expert-reviews-bet999-game-selection .hero-section .container {
    flex-direction: column;
  }

  .page-expert-reviews-bet999-game-selection .hero-actions .btn {
    margin: 10px 0;
    width: 100%;
  }

  .page-expert-reviews-bet999-game-selection .hero-actions .btn-secondary {
    margin-left: 0;
  }

  .page-expert-reviews-bet999-game-selection .category-grid {
    grid-template-columns: 1fr;
  }

  .page-expert-reviews-bet999-game-selection .provider-logos {
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .page-expert-reviews-bet999-game-selection h1 {
    font-size: 1.8em;
  }

  .page-expert-reviews-bet999-game-selection h2 {
    font-size: 1.6em;
  }

  .page-expert-reviews-bet999-game-selection .hero-section {
    padding: 60px 0;
  }

  .page-expert-reviews-bet999-game-selection .btn {
    padding: 10px 20px;
    font-size: 1em;
  }

  .page-expert-reviews-bet999-game-selection .btn-lg {
    padding: 12px 25px;
    font-size: 1.1em;
  }
}