/* style/index-best-casino-platforms.css */
:root {
  --primary-color: #0A2463;
  --secondary-color: #FFD700;
  --text-light: #ffffff;
  --text-dark: #333333;
  --background-light: #f1f3f5;
  --background-white: #ffffff;
  --border-light: #e4e4e4;
}

.page-index-best-casino-platforms {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-dark); /* Default text color for light backgrounds */
  background-color: var(--background-light);
}

/* Ensure content is not hidden by fixed header */
.page-index-best-casino-platforms__hero-section {
  padding-top: 180px; /* Adjust for fixed header */
}

@media (max-width: 768px) {
  .page-index-best-casino-platforms__hero-section {
    padding-top: 140px; /* Adjust for fixed header on mobile */
  }
}

/* Hero Section */
.page-index-best-casino-platforms__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-bottom: 60px;
  color: var(--text-light); /* Light text on dark background */
}

.page-index-best-casino-platforms__hero-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-index-best-casino-platforms__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-index-best-casino-platforms__hero-img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.page-index-best-casino-platforms__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-index-best-casino-platforms__hero-title {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--text-light);
  line-height: 1.2;
}

.page-index-best-casino-platforms__hero-description {
  font-size: 20px;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-light);
}

.page-index-best-casino-platforms__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--secondary-color);
  color: var(--text-dark);
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-index-best-casino-platforms__cta-button:hover {
  background: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

/* Game Leaderboard Section */
.page-index-best-casino-platforms__game-leaderboard-section {
  padding: 60px 20px;
  background-color: var(--background-light);
}

.page-index-best-casino-platforms__page-title {
  font-size: 36px;
  font-weight: bold;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 40px;
}

.page-index-best-casino-platforms__game-leaderboard {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-index-best-casino-platforms__game-card {
  background: var(--background-white);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  display: flex;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-best-casino-platforms__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.page-index-best-casino-platforms__game-card-segment {
  padding: 0 20px;
  border-left: 1px solid var(--border-light);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.page-index-best-casino-platforms__segment-1 {
  border-left: none; /* No left border for the first segment */
  padding-left: 0;
  min-width: 120px;
  max-width: 150px;
  flex-shrink: 0;
  position: relative;
}

.page-index-best-casino-platforms__segment-2 {
  flex: 1;
  text-align: center;
  min-width: 200px; /* Ensure minimum width for content */
}

.page-index-best-casino-platforms__segment-3 {
  min-width: 150px;
  max-width: 200px;
  flex-shrink: 0;
}

.page-index-best-casino-platforms__segment-4 {
  min-width: 180px;
  max-width: 220px;
  flex-shrink: 0;
  padding-right: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.page-index-best-casino-platforms__rank-badge {
  position: absolute;
  top: 0px;
  left: 0px;
  background: linear-gradient(135deg, #ff6b35, #ff8c42);
  color: var(--text-light);
  font-weight: bold;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-index-best-casino-platforms__rank-1 {
  background: linear-gradient(135deg, #FFD700, #FFA500);
}

.page-index-best-casino-platforms__rank-2 {
  background: linear-gradient(135deg, #C0C0C0, #A0A0A0);
}

.page-index-best-casino-platforms__rank-3 {
  background: linear-gradient(135deg, #CD7F32, #B87333);
}

.page-index-best-casino-platforms__game-icon {
  max-width: 100px;
  height: auto;
  display: block;
  margin-top: 15px;
  border-radius: 4px;
}

.page-index-best-casino-platforms__game-name {
  font-size: 24px;
  font-weight: bold;
  color: var(--text-dark);
  margin-bottom: 5px;
  text-transform: uppercase;
  text-align: center;
}

.page-index-best-casino-platforms__game-name-link {
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.3s ease, text-decoration 0.3s ease;
}

.page-index-best-casino-platforms__game-name-link:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

.page-index-best-casino-platforms__game-description {
  font-size: 14px;
  color: var(--text-dark);
  font-weight: bold;
  text-align: center;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.page-index-best-casino-platforms__game-description a {
  color: #0066cc;
  font-weight: bold;
  text-decoration: none;
}

.page-index-best-casino-platforms__game-description a:hover {
  color: #004499;
  text-decoration: underline;
}

.page-index-best-casino-platforms__game-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.page-index-best-casino-platforms__stars {
  color: var(--secondary-color);
  font-size: 18px;
  margin-right: 5px;
  font-weight: bold;
}

.page-index-best-casino-platforms__rating-number {
  font-size: 16px;
  color: var(--text-dark);
  font-weight: bold;
}

.page-index-best-casino-platforms__promotion-text {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #0066cc;
  font-weight: bold;
}

.page-index-best-casino-platforms__promotion-link {
  color: #0066cc;
  text-decoration: none;
  margin-right: 5px;
}

.page-index-best-casino-platforms__promotion-link:hover {
  color: #004499;
  text-decoration: underline;
}

.page-index-best-casino-platforms__hot-badge {
  background: #ff4d4d;
  color: var(--text-light);
  padding: 2px 6px;
  border-radius: 3px;
  font-size: 12px;
  font-weight: bold;
}

.page-index-best-casino-platforms__btn-download,
.page-index-best-casino-platforms__btn-review {
  display: block;
  width: 100%;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.page-index-best-casino-platforms__btn-download {
  background: var(--primary-color);
  color: var(--text-light);
}

.page-index-best-casino-platforms__btn-download:hover {
  background: #071a47;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.page-index-best-casino-platforms__btn-review {
  background: var(--secondary-color);
  color: var(--text-dark);
}

.page-index-best-casino-platforms__btn-review:hover {
  background: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* Brand Review Content Section */
.page-index-best-casino-platforms__review-content-section {
  padding: 40px 20px;
  background: var(--background-light);
}

.page-index-best-casino-platforms__review-content-container {
  max-width: 1400px;
  margin: 0 auto;
}

.page-index-best-casino-platforms__review-content-card {
  background: var(--background-white);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 40px;
  color: var(--text-dark);
}

.page-index-best-casino-platforms__review-title {
  font-size: 28px;
  font-weight: bold;
  color: var(--text-dark);
  margin-bottom: 24px;
  text-align: center;
}

.page-index-best-casino-platforms__review-content-card h3 {
  font-size: 20px;
  font-weight: bold;
  color: var(--text-dark);
  margin-top: 24px;
  margin-bottom: 12px;
}

.page-index-best-casino-platforms__review-body {
  color: var(--text-dark);
  line-height: 1.7;
}

.page-index-best-casino-platforms__review-body p {
  margin-bottom: 16px;
  font-size: 16px;
}

/* Homepage Introduction Section */
.page-index-best-casino-platforms__intro-section {
  padding: 60px 20px;
  color: var(--text-light);
}

.page-index-best-casino-platforms__container {
  max-width: 1200px;
  margin: 0 auto;
}

.page-index-best-casino-platforms__section-title {
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: inherit; /* Inherit color from parent section */
}

.page-index-best-casino-platforms__intro-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-index-best-casino-platforms__intro-item {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-best-casino-platforms__intro-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.page-index-best-casino-platforms__intro-icon {
  width: 80px;
  height: auto;
  margin-bottom: 20px;
  filter: brightness(1.2); /* Slightly brighten icons for visibility on dark background, not changing hue */
}

.page-index-best-casino-platforms__intro-heading {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--secondary-color);
}

.page-index-best-casino-platforms__intro-item p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
}

/* Core Games/Services Section */
.page-index-best-casino-platforms__games-section {
  padding: 60px 20px;
  background-color: var(--background-light);
}

.page-index-best-casino-platforms__game-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-index-best-casino-platforms__game-card-category {
  background: var(--background-white);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--text-dark);
}

.page-index-best-casino-platforms__game-card-category:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.page-index-best-casino-platforms__game-category-img {
  width: 100%;
  max-width: 300px; /* Ensure images are not too wide */
  height: auto;
  border-radius: 6px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-index-best-casino-platforms__game-category-title {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-index-best-casino-platforms__game-card-category p {
  font-size: 15px;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.page-index-best-casino-platforms__btn-learn-more {
  display: inline-block;
  padding: 10px 25px;
  background: var(--primary-color);
  color: var(--text-light);
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-index-best-casino-platforms__btn-learn-more:hover {
  background: #071a47;
}

/* Promotions Section */
.page-index-best-casino-platforms__promotions-section {
  padding: 60px 20px;
  color: var(--text-light);
}

.page-index-best-casino-platforms__promotions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-index-best-casino-platforms__promo-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-best-casino-platforms__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.page-index-best-casino-platforms__promo-img {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 6px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-index-best-casino-platforms__promo-title {
  font-size: 22px;
  font-weight: bold;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.page-index-best-casino-platforms__promo-card p {
  font-size: 15px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.8);
}

.page-index-best-casino-platforms__btn-promo {
  display: inline-block;
  padding: 10px 25px;
  background: var(--secondary-color);
  color: var(--text-dark);
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-index-best-casino-platforms__btn-promo:hover {
  background: #e6c200;
}

/* Blog Section */
.page-index-best-casino-platforms__blog-section {
  padding: 60px 20px;
  background-color: var(--background-light);
}

.page-index-best-casino-platforms__blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-index-best-casino-platforms__blog-post-card {
  background: var(--background-white);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--text-dark);
}

.page-index-best-casino-platforms__blog-post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.page-index-best-casino-platforms__blog-img {
  width: 100%;
  height: 200px; /* Fixed height for blog images */
  object-fit: cover;
}

.page-index-best-casino-platforms__blog-content {
  padding: 25px;
}

.page-index-best-casino-platforms__blog-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}

.page-index-best-casino-platforms__blog-title a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-index-best-casino-platforms__blog-title a:hover {
  color: #071a47;
  text-decoration: underline;
}

.page-index-best-casino-platforms__blog-summary {
  font-size: 15px;
  color: #555555;
  margin-bottom: 15px;
}

.page-index-best-casino-platforms__blog-link {
  display: inline-block;
  color: #0066cc;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-index-best-casino-platforms__blog-link:hover {
  color: #004499;
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-index-best-casino-platforms__game-card-segment {
    padding: 0 15px;
  }

  .page-index-best-casino-platforms__segment-1 {
    min-width: 100px;
    max-width: 120px;
  }

  .page-index-best-casino-platforms__game-icon {
    max-width: 80px;
  }

  .page-index-best-casino-platforms__segment-3 {
    min-width: 120px;
    max-width: 160px;
  }

  .page-index-best-casino-platforms__segment-4 {
    min-width: 150px;
    max-width: 180px;
  }
}

@media (max-width: 768px) {
  .page-index-best-casino-platforms__hero-title {
    font-size: 36px;
  }

  .page-index-best-casino-platforms__hero-description {
    font-size: 18px;
  }

  .page-index-best-casino-platforms__cta-button {
    padding: 12px 30px;
    font-size: 16px;
  }

  .page-index-best-casino-platforms__page-title {
    font-size: 28px;
  }

  .page-index-best-casino-platforms__game-card {
    flex-wrap: wrap;
    padding: 15px;
  }

  .page-index-best-casino-platforms__game-card-segment {
    border-left: none;
    padding: 10px 0;
    width: 100%;
    text-align: center;
  }

  .page-index-best-casino-platforms__segment-1 {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: none;
    min-width: auto;
    padding-left: 0;
  }

  .page-index-best-casino-platforms__rank-badge {
    position: static;
    margin-right: 10px;
  }

  .page-index-best-casino-platforms__game-icon {
    margin-top: 0;
  }

  .page-index-best-casino-platforms__segment-2 {
    order: 3;
    width: 100%;
    min-width: auto;
    padding: 10px 0;
  }

  .page-index-best-casino-platforms__game-name {
    font-size: 20px;
  }

  .page-index-best-casino-platforms__game-description {
    font-size: 13px;
  }

  .page-index-best-casino-platforms__segment-3 {
    order: 2;
    width: 100%;
    min-width: auto;
    padding: 10px 0;
    flex-direction: row;
    justify-content: space-around;
  }

  .page-index-best-casino-platforms__segment-4 {
    order: 4;
    width: 100%;
    min-width: auto;
    max-width: 100%;
    padding: 10px 0;
    flex-direction: column;
    gap: 8px;
  }

  .page-index-best-casino-platforms__btn-download,
  .page-index-best-casino-platforms__btn-review {
    font-size: 14px;
    padding: 10px 15px;
    white-space: normal;
    word-wrap: break-word;
    min-width: auto;
  }

  .page-index-best-casino-platforms__review-content-section {
    padding: 20px 15px;
  }
  
  .page-index-best-casino-platforms__review-content-card {
    padding: 24px 20px;
  }
  
  .page-index-best-casino-platforms__review-title {
    font-size: 24px;
  }
  
  .page-index-best-casino-platforms__review-content-card h3 {
    font-size: 18px;
  }
  
  .page-index-best-casino-platforms__review-body p {
    font-size: 15px;
  }

  .page-index-best-casino-platforms__section-title {
    font-size: 26px;
  }

  .page-index-best-casino-platforms__intro-grid,
  .page-index-best-casino-platforms__game-categories,
  .page-index-best-casino-platforms__promotions-grid,
  .page-index-best-casino-platforms__blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-index-best-casino-platforms__intro-icon {
    width: 60px;
  }

  .page-index-best-casino-platforms__intro-heading {
    font-size: 18px;
  }

  .page-index-best-casino-platforms__game-category-title {
    font-size: 20px;
  }

  .page-index-best-casino-platforms__promo-title {
    font-size: 18px;
  }

  .page-index-best-casino-platforms__blog-img {
    height: 150px;
  }

  .page-index-best-casino-platforms__blog-title {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .page-index-best-casino-platforms__hero-title {
    font-size: 30px;
  }

  .page-index-best-casino-platforms__hero-description {
    font-size: 16px;
  }

  .page-index-best-casino-platforms__page-title {
    font-size: 24px;
  }

  .page-index-best-casino-platforms__game-name {
    font-size: 18px;
  }

  .page-index-best-casino-platforms__segment-3 {
    flex-direction: column;
    gap: 5px;
  }
}