/* style/index-review-fabet.css */
:root {
  --primary-color: #003366;
  --secondary-color: #FFD700;
  --text-dark: #333333;
  --text-light: #ffffff;
  --bg-dark: #0f172a;
  --bg-light-card: #ffffff;
  --bg-light-section: #f1f3f5;
  --link-color: #0066cc;
  --link-hover-color: #004499;
  --border-light: #e0e0e0;
  --hot-badge-bg: #ff4d4f;
}

.page-index-review-fabet {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-light); /* Default text color for dark body background */
  background-color: var(--bg-dark); /* Inherited from body, but explicitly set for clarity */
}

.page-index-review-fabet__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-index-review-fabet__heading {
  font-size: 36px;
  font-weight: bold;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 40px;
  padding-top: 20px;
}

.page-index-review-fabet__text-block {
  font-size: 18px;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-review-fabet .highlight {
  color: var(--secondary-color);
  font-weight: bold;
}

/* HERO Section */
.page-index-review-fabet__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 180px; /* Desktop: Adjust based on fixed header height */
  background-color: var(--bg-dark); /* Ensure consistent background */
}

.page-index-review-fabet__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-review-fabet__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

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

.page-index-review-fabet__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-index-review-fabet__hero-content h1 {
  font-size: 48px;
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-index-review-fabet__hero-content p {
  font-size: 20px;
  color: var(--text-light);
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-review-fabet__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(135deg, var(--secondary-color), #FFA500); /* Golden gradient */
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-index-review-fabet__cta-button:hover {
  background: linear-gradient(135deg, #FFA500, var(--secondary-color));
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Game Leaderboard Section */
.page-index-review-fabet__game-leaderboard-section {
  padding: 60px 20px;
  background-color: var(--bg-light-section);
  color: var(--text-dark);
}

.page-index-review-fabet__game-leaderboard-section .page-index-review-fabet__page-title {
  color: var(--text-dark);
  margin-bottom: 50px;
}

.page-index-review-fabet__game-leaderboard {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-index-review-fabet__game-card {
  background: var(--bg-light-card);
  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-review-fabet__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-index-review-fabet__game-card-segment {
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

.page-index-review-fabet__game-card-segment:not(:first-child)::before {
  content: '';
  position: absolute;
  left: 0;
  top: 15%;
  bottom: 15%;
  width: 1px;
  background-color: var(--border-light);
}

.page-index-review-fabet__segment-1 {
  flex-shrink: 0;
  width: 120px;
  padding-left: 0;
}

.page-index-review-fabet__segment-1::before {
  display: none; /* No border on the very first segment */
}

.page-index-review-fabet__segment-2 {
  flex-grow: 1;
  flex-basis: 0;
  text-align: center;
}

.page-index-review-fabet__segment-3 {
  flex-shrink: 0;
  width: 150px;
}

.page-index-review-fabet__segment-4 {
  flex-shrink: 0;
  width: 200px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-right: 0;
}

.page-index-review-fabet__rank-badge {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: bold;
  font-size: 16px;
  position: absolute;
  top: -10px;
  left: 0px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-index-review-fabet__rank-1 {
  background: linear-gradient(135deg, #FFD700, #FFA500);
}
.page-index-review-fabet__rank-2 {
  background: linear-gradient(135deg, #C0C0C0, #A0A0A0);
}
.page-index-review-fabet__rank-3 {
  background: linear-gradient(135deg, #CD7F32, #B87333);
}
.page-index-review-fabet__rank-badge:not(.page-index-review-fabet__rank-1):not(.page-index-review-fabet__rank-2):not(.page-index-review-fabet__rank-3) {
  background: linear-gradient(135deg, #ff6b35, #ff8c42);
}

.page-index-review-fabet__game-icon {
  max-width: 100px;
  height: auto;
  display: block;
  margin-top: 15px; /* Adjust if badge overlaps too much */
  border-radius: 4px;
}

.page-index-review-fabet__game-name {
  font-size: 24px;
  font-weight: bold;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 8px;
  text-transform: uppercase;
}

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

.page-index-review-fabet__game-name-link:hover {
  color: var(--link-hover-color);
  text-decoration: underline;
}

.page-index-review-fabet__game-description {
  font-size: 14px;
  color: var(--text-dark);
  font-weight: bold;
  text-align: center;
  margin-bottom: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.page-index-review-fabet__game-description a {
  color: var(--link-color);
  font-weight: bold;
  text-decoration: none;
}

.page-index-review-fabet__game-description a:hover {
  color: var(--link-hover-color);
  text-decoration: underline;
}

.page-index-review-fabet__game-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  color: var(--text-dark);
}

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

.page-index-review-fabet__rating-number {
  font-size: 16px;
  font-weight: bold;
}

.page-index-review-fabet__promotion-text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.page-index-review-fabet__promotion-link {
  color: var(--link-color);
  font-size: 14px;
  text-decoration: none;
  font-weight: bold;
}

.page-index-review-fabet__promotion-link:hover {
  text-decoration: underline;
  color: var(--link-hover-color);
}

.page-index-review-fabet__hot-badge {
  background-color: var(--hot-badge-bg);
  color: #ffffff;
  font-size: 12px;
  padding: 2px 6px;
  border-radius: 3px;
  font-weight: bold;
}

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

.page-index-review-fabet__btn-download {
  background: linear-gradient(135deg, var(--primary-color), #004d99);
}

.page-index-review-fabet__btn-download:hover {
  background: linear-gradient(135deg, #004d99, var(--primary-color));
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.page-index-review-fabet__btn-review {
  background: linear-gradient(135deg, var(--secondary-color), #FFA500);
}

.page-index-review-fabet__btn-review:hover {
  background: linear-gradient(135deg, #FFA500, var(--secondary-color));
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

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

.page-index-review-fabet__review-content-container {
  max-width: 1400px; /* Wider for better readability */
  margin: 0 auto;
}

.page-index-review-fabet__review-content-card {
  background: var(--bg-light-card);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 40px;
  color: var(--text-dark);
}

.page-index-review-fabet__review-content-card h2 {
  font-size: 28px;
  font-weight: bold;
  color: var(--text-dark);
  margin-bottom: 24px;
  text-align: center;
}

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

.page-index-review-fabet__review-body {
  color: var(--text-dark);
  line-height: 1.7;
}

.page-index-review-fabet__review-body p {
  margin-bottom: 16px;
  font-size: 16px;
}

/* Homepage Introduction Section */
.page-index-review-fabet__intro-section {
  padding: 60px 20px;
  background-color: var(--primary-color);
  color: var(--text-light);
}

.page-index-review-fabet__intro-section .page-index-review-fabet__heading,
.page-index-review-fabet__intro-section .page-index-review-fabet__text-block {
  color: var(--text-light);
}

.page-index-review-fabet__intro-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-review-fabet__intro-item {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-index-review-fabet__intro-item:hover {
  transform: translateY(-8px);
  background-color: rgba(255, 255, 255, 0.15);
}

.page-index-review-fabet__intro-icon {
  width: 80px;
  height: auto;
  margin-bottom: 20px;
  filter: brightness(1.2);
  min-width: 200px; /* Enforce min image size */
  min-height: 200px;
  max-width: 100%;
}

.page-index-review-fabet__intro-item h3 {
  font-size: 22px;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.page-index-review-fabet__intro-item p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.6;
}

/* Core Games/Service Section */
.page-index-review-fabet__games-section {
  padding: 60px 20px;
  background-color: var(--bg-light-section);
  color: var(--text-dark);
}

.page-index-review-fabet__games-section .page-index-review-fabet__heading,
.page-index-review-fabet__games-section .page-index-review-fabet__text-block {
  color: var(--text-dark);
}

.page-index-review-fabet__game-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-review-fabet__game-category-card {
  background: var(--bg-light-card);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-index-review-fabet__game-category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-index-review-fabet__category-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 20px;
  min-width: 200px; /* Enforce min image size */
  min-height: 200px;
  max-width: 100%;
}

.page-index-review-fabet__game-category-card h3 {
  font-size: 22px;
  color: var(--primary-color);
  margin-bottom: 15px;
  padding: 0 20px;
}

.page-index-review-fabet__game-category-card p {
  font-size: 15px;
  color: var(--text-dark);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
  padding: 0 20px;
}

.page-index-review-fabet__category-button {
  display: inline-block;
  padding: 10px 25px;
  background: var(--secondary-color);
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 20px;
  transition: background-color 0.3s ease;
}

.page-index-review-fabet__category-button:hover {
  background-color: #FFA500;
}

/* Promotions Section */
.page-index-review-fabet__promotions-section {
  padding: 60px 20px;
  background-color: var(--primary-color);
  color: var(--text-light);
}

.page-index-review-fabet__promotions-section .page-index-review-fabet__heading,
.page-index-review-fabet__promotions-section .page-index-review-fabet__text-block {
  color: var(--text-light);
}

.page-index-review-fabet__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-review-fabet__promo-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background-color 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-index-review-fabet__promo-card:hover {
  transform: translateY(-8px);
  background-color: rgba(255, 255, 255, 0.15);
}

.page-index-review-fabet__promo-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  margin-bottom: 20px;
  min-width: 200px; /* Enforce min image size */
  min-height: 200px;
  max-width: 100%;
}

.page-index-review-fabet__promo-card h3 {
  font-size: 22px;
  color: var(--secondary-color);
  margin-bottom: 15px;
  padding: 0 20px;
}

.page-index-review-fabet__promo-card p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
  padding: 0 20px;
}

.page-index-review-fabet__promo-button {
  display: inline-block;
  padding: 10px 25px;
  background: var(--secondary-color);
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 20px;
  transition: background-color 0.3s ease;
}

.page-index-review-fabet__promo-button:hover {
  background-color: #FFA500;
}

/* Latest Blog Content Section */
.page-index-review-fabet__blog-section {
  padding: 60px 20px;
  background-color: var(--bg-light-section);
  color: var(--text-dark);
}

.page-index-review-fabet__blog-section .page-index-review-fabet__heading,
.page-index-review-fabet__blog-section .page-index-review-fabet__text-block {
  color: var(--text-dark);
}

.page-index-review-fabet__blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-review-fabet__blog-card {
  background: var(--bg-light-card);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-review-fabet__blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-index-review-fabet__blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  min-width: 200px; /* Enforce min image size */
  min-height: 200px;
  max-width: 100%;
}

.page-index-review-fabet__blog-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-index-review-fabet__blog-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
  line-height: 1.4;
  color: var(--primary-color);
}

.page-index-review-fabet__blog-title-link {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-index-review-fabet__blog-title-link:hover {
  color: var(--link-hover-color);
  text-decoration: underline;
}

.page-index-review-fabet__blog-excerpt {
  font-size: 15px;
  color: var(--text-dark);
  margin-bottom: 15px;
  line-height: 1.6;
}

.page-index-review-fabet__blog-date {
  font-size: 13px;
  color: #777777;
  text-align: right;
  display: block;
}

.page-index-review-fabet__view-all-button-wrapper {
  text-align: center;
  margin-top: 50px;
}

.page-index-review-fabet__view-all-button {
  display: inline-block;
  padding: 12px 30px;
  background: var(--primary-color);
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 17px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.page-index-review-fabet__view-all-button:hover {
  background: #004d99;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* Common dark background sections */
.page-index-review-fabet__dark-section .page-index-review-fabet__heading,
.page-index-review-fabet__dark-section .page-index-review-fabet__text-block,
.page-index-review-fabet__dark-section h3,
.page-index-review-fabet__dark-section p {
  color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-index-review-fabet__hero-content h1 {
    font-size: 40px;
  }

  .page-index-review-fabet__hero-content p {
    font-size: 18px;
  }

  .page-index-review-fabet__game-card {
    flex-wrap: wrap;
    padding: 15px;
  }

  .page-index-review-fabet__game-card-segment {
    padding: 10px 15px;
  }

  .page-index-review-fabet__game-card-segment:not(:first-child)::before {
    top: 10%;
    bottom: 10%;
  }

  .page-index-review-fabet__segment-1 {
    width: 100%;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 15px;
    padding-bottom: 10px;
  }

  .page-index-review-fabet__segment-1::before {
    display: block; /* Re-enable for vertical separation */
    left: 0;
    right: 0;
    height: 1px;
    width: auto;
    top: auto;
    bottom: 0;
  }

  .page-index-review-fabet__rank-badge {
    position: static;
    margin-right: 10px;
  }
  
  .page-index-review-fabet__game-icon {
    margin-top: 0;
  }

  .page-index-review-fabet__segment-2 {
    width: 100%;
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .page-index-review-fabet__segment-3 {
    width: 100%;
    flex-direction: row;
    justify-content: center;
    gap: 20px;
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .page-index-review-fabet__segment-4 {
    width: 100%;
    flex-direction: row;
    justify-content: center;
    gap: 15px;
    padding-top: 15px;
  }

  .page-index-review-fabet__segment-2::before,
  .page-index-review-fabet__segment-3::before {
    display: block; /* Re-enable for vertical separation */
    left: 0;
    right: 0;
    height: 1px;
    width: auto;
    top: auto;
    bottom: 0;
  }

  .page-index-review-fabet__game-name {
    font-size: 20px;
  }

  .page-index-review-fabet__btn-download,
  .page-index-review-fabet__btn-review {
    width: auto;
    flex-grow: 1;
    max-width: 48%;
    padding: 10px 15px;
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .page-index-review-fabet__hero-section {
    padding-top: 160px !important; /* Mobile: Adjust based on mobile fixed header height */
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-index-review-fabet__hero-image img {
    border-radius: 4px;
  }

  .page-index-review-fabet__hero-content h1 {
    font-size: 32px;
  }

  .page-index-review-fabet__hero-content p {
    font-size: 16px;
  }

  .page-index-review-fabet__cta-button {
    padding: 12px 30px;
    font-size: 16px;
  }

  .page-index-review-fabet__heading {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .page-index-review-fabet__text-block {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .page-index-review-fabet__game-leaderboard-section {
    padding: 40px 15px;
  }

  .page-index-review-fabet__game-card {
    padding: 10px;
  }

  .page-index-review-fabet__game-card-segment {
    padding: 8px 10px;
  }

  .page-index-review-fabet__rank-badge {
    width: 24px;
    height: 24px;
    font-size: 14px;
  }

  .page-index-review-fabet__game-icon {
    max-width: 80px;
  }

  .page-index-review-fabet__game-name {
    font-size: 18px;
  }

  .page-index-review-fabet__game-description {
    font-size: 13px;
  }

  .page-index-review-fabet__promotion-link,
  .page-index-review-fabet__hot-badge {
    font-size: 11px;
  }

  .page-index-review-fabet__btn-download,
  .page-index-review-fabet__btn-review {
    font-size: 12px;
    padding: 8px 10px;
    white-space: normal;
    word-wrap: break-word;
    min-width: auto;
    max-width: 100% !important;
    width: 100% !important;
  }

  .page-index-review-fabet__segment-4 {
    flex-direction: column;
    gap: 8px;
    padding-left: 10px;
    padding-right: 10px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-index-review-fabet__review-content-section,
  .page-index-review-fabet__intro-section,
  .page-index-review-fabet__games-section,
  .page-index-review-fabet__promotions-section,
  .page-index-review-fabet__blog-section {
    padding: 30px 15px;
  }
  
  .page-index-review-fabet__review-content-card {
    padding: 24px 20px;
  }
  
  .page-index-review-fabet__review-content-card h2 {
    font-size: 24px;
  }
  
  .page-index-review-fabet__review-content-card h3 {
    font-size: 18px;
  }
  
  .page-index-review-fabet__review-body p {
    font-size: 15px;
  }

  .page-index-review-fabet__intro-grid,
  .page-index-review-fabet__game-categories,
  .page-index-review-fabet__promo-grid,
  .page-index-review-fabet__blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-index-review-fabet__intro-icon,
  .page-index-review-fabet__category-image,
  .page-index-review-fabet__promo-image,
  .page-index-review-fabet__blog-image {
    min-width: 200px !important;
    min-height: 200px !important;
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-index-review-fabet__intro-item,
  .page-index-review-fabet__game-category-card,
  .page-index-review-fabet__promo-card,
  .page-index-review-fabet__blog-card,
  .page-index-review-fabet__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* Ensure all images are responsive and do not overflow */
.page-index-review-fabet img {
  max-width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .page-index-review-fabet img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-index-review-fabet__section,
  .page-index-review-fabet__card,
  .page-index-review-fabet__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-index-review-fabet__hero-section {
    padding-top: 160px !important; /* Mobile: Adjust based on mobile navigation bar height */
  }
}