/* style/index-review-lucky88.css */
:root {
  --primary-color: #007BFF;
  --secondary-color: #FFD700;
  --text-dark: #333333;
  --text-light: #ffffff;
  --bg-light: #f1f3f5;
  --card-bg: #ffffff;
  --border-light: #e4e4e4;
}

.page-index-review-lucky88 {
  font-family: 'Arial', sans-serif;
  color: var(--text-light); /* Default text color for the page body, assuming dark shared background */
  background-color: var(--dark-bg-1); /* Inherited from shared.css */
}

/* --- HERO Section --- */
.page-index-review-lucky88__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(--dark-bg-1);
}

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

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

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

.page-index-review-lucky88__hero-title {
  font-size: 42px;
  font-weight: bold;
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-index-review-lucky88__hero-description {
  font-size: 18px;
  color: #f0f0f0;
  margin-bottom: 30px;
  line-height: 1.6;
}

.page-index-review-lucky88__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(135deg, var(--secondary-color), #FFC107);
  color: var(--text-dark);
  text-decoration: none;
  border-radius: 50px;
  font-size: 20px;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
}

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

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

/* --- General Section Styling --- */
.page-index-review-lucky88__section-title {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: var(--secondary-color);
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.page-index-review-lucky88__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-index-review-lucky88__description-text {
  font-size: 17px;
  line-height: 1.7;
  text-align: center;
  margin-bottom: 50px;
  color: #f0f0f0;
}

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

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

.page-index-review-lucky88__game-leaderboard {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 1400px; /* Slightly wider for cards */
  margin: 0 auto;
}

.page-index-review-lucky88__game-card {
  background: var(--card-bg);
  border-radius: 12px;
  box-shadow: 0 4px 15px 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-lucky88__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-index-review-lucky88__game-card-segment {
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100%;
}

.page-index-review-lucky88__segment-1 {
  position: relative;
  width: 120px;
  flex-shrink: 0;
  padding-left: 0;
  border-left: none;
  padding-right: 15px;
}
.page-index-review-lucky88__segment-1::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background-color: var(--border-light);
}

.page-index-review-lucky88__segment-2 {
  flex: 1;
  position: relative;
  padding-left: 30px;
  padding-right: 30px;
}
.page-index-review-lucky88__segment-2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background-color: var(--border-light);
}
.page-index-review-lucky88__segment-2::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background-color: var(--border-light);
}

.page-index-review-lucky88__segment-3 {
  width: 180px;
  flex-shrink: 0;
  position: relative;
  padding-left: 30px;
  padding-right: 30px;
}
.page-index-review-lucky88__segment-3::before {
  content: '';
  position: absolute;
  left: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background-color: var(--border-light);
}
.page-index-review-lucky88__segment-3::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background-color: var(--border-light);
}

.page-index-review-lucky88__segment-4 {
  width: 250px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-right: 0;
  padding-left: 30px;
}
.page-index-review-lucky88__segment-4::before {
  content: '';
  position: absolute;
  left: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background-color: var(--border-light);
}

.page-index-review-lucky88__rank-badge {
  position: absolute;
  top: -10px;
  left: 0px;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff6b35, #ff8c42); /* Default for 4+ */
  color: #ffffff;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  z-index: 1;
}

.page-index-review-lucky88__rank-1 {
  background: linear-gradient(135deg, #FFD700, #FFA500); /* Gold */
}
.page-index-review-lucky88__rank-2 {
  background: linear-gradient(135deg, #C0C0C0, #A0A0A0); /* Silver */
}
.page-index-review-lucky88__rank-3 {
  background: linear-gradient(135deg, #CD7F32, #B87333); /* Bronze */
}

.page-index-review-lucky88__game-icon {
  max-width: 100px;
  height: auto;
  border-radius: 8px;
  margin-top: 10px;
  display: block;
  object-fit: contain;
}

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

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

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

.page-index-review-lucky88__game-description {
  font-size: 14px;
  color: var(--text-dark);
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.page-index-review-lucky88__game-description a:hover {
  text-decoration: underline;
  color: #004499;
}

.page-index-review-lucky88__game-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  font-size: 16px;
}

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

.page-index-review-lucky88__rating-number {
  font-weight: bold;
  color: var(--text-dark);
}

.page-index-review-lucky88__promotion-text {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.page-index-review-lucky88__promotion-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: bold;
  margin-right: 5px;
}

.page-index-review-lucky88__promotion-link:hover {
  text-decoration: underline;
  color: #004499;
}

.page-index-review-lucky88__hot-badge {
  background: #dc3545;
  color: #ffffff;
  padding: 3px 8px;
  border-radius: 5px;
  font-size: 12px;
  font-weight: bold;
}

.page-index-review-lucky88__btn-download,
.page-index-review-lucky88__btn-review {
  display: block;
  width: 100%;
  padding: 12px 15px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-index-review-lucky88__btn-download {
  background: linear-gradient(135deg, var(--primary-color), #0056b3);
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
}

.page-index-review-lucky88__btn-download:hover {
  background: linear-gradient(135deg, #0056b3, var(--primary-color));
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 123, 255, 0.4);
}

.page-index-review-lucky88__btn-review {
  background: var(--secondary-color);
  color: var(--text-dark);
  box-shadow: 0 4px 10px rgba(255, 215, 0, 0.3);
}

.page-index-review-lucky88__btn-review:hover {
  background: #FFC107;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(255, 215, 0, 0.4);
}

/* --- Brand Review Content Section (Module 1.5) --- */
.page-index-review-lucky88__review-content-section {
  padding: 40px 20px;
  background: var(--bg-light);
  color: var(--text-dark);
}

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

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

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

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

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

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

.page-index-review-lucky88__review-body a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: bold;
}
.page-index-review-lucky88__review-body a:hover {
  text-decoration: underline;
}

/* --- Intro Section (Module 2) --- */
.page-index-review-lucky88__intro-section {
  padding: 60px 20px;
  background-color: var(--dark-bg-1);
}

.page-index-review-lucky88__intro-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

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

.page-index-review-lucky88__feature-item:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.1);
}

.page-index-review-lucky88__feature-icon {
  max-width: 80px;
  height: auto;
  margin-bottom: 20px;
  object-fit: contain;
}

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

.page-index-review-lucky88__feature-item p {
  font-size: 16px;
  line-height: 1.6;
  color: #e0e0e0;
}

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

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

.page-index-review-lucky88__game-category-card {
  background: var(--card-bg);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding-bottom: 20px;
}

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

.page-index-review-lucky88__game-category-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 20px;
}

.page-index-review-lucky88__game-category-title {
  font-size: 24px;
  font-weight: bold;
  color: var(--text-dark);
  margin-bottom: 10px;
}

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

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

.page-index-review-lucky88__game-category-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #555555;
  padding: 0 20px;
  margin-bottom: 20px;
}

.page-index-review-lucky88__btn-play {
  display: inline-block;
  padding: 10px 25px;
  background: linear-gradient(135deg, var(--primary-color), #0056b3);
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0, 123, 255, 0.2);
}

.page-index-review-lucky88__btn-play:hover {
  background: linear-gradient(135deg, #0056b3, var(--primary-color));
  transform: translateY(-2px);
  box-shadow: 0 5px 12px rgba(0, 123, 255, 0.3);
}

/* --- Promotions Section (Module 4) --- */
.page-index-review-lucky88__promotions-section {
  padding: 60px 20px;
  background-color: var(--dark-bg-1);
}

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

.page-index-review-lucky88__promotion-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
  transition: transform 0.3s ease, background-color 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-index-review-lucky88__promotion-item:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.1);
}

.page-index-review-lucky88__promotion-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 20px;
}

.page-index-review-lucky88__promotion-title {
  font-size: 22px;
  font-weight: bold;
  color: var(--secondary-color);
  margin-bottom: 10px;
  padding: 0 20px;
}

.page-index-review-lucky88__promotion-item p {
  font-size: 15px;
  line-height: 1.6;
  color: #e0e0e0;
  padding: 0 20px;
  margin-bottom: 20px;
}

.page-index-review-lucky88__promotion-item a {
  color: var(--primary-color);
  font-weight: bold;
  text-decoration: none;
}

.page-index-review-lucky88__promotion-item a:hover {
  text-decoration: underline;
}

.page-index-review-lucky88__btn-view-promo {
  display: inline-block;
  padding: 10px 25px;
  background: linear-gradient(135deg, var(--secondary-color), #FFC107);
  color: var(--text-dark);
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(255, 215, 0, 0.2);
}

.page-index-review-lucky88__btn-view-promo:hover {
  background: linear-gradient(135deg, #FFC107, var(--secondary-color));
  transform: translateY(-2px);
  box-shadow: 0 5px 12px rgba(255, 215, 0, 0.3);
}

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

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

.page-index-review-lucky88__blog-card {
  background: var(--card-bg);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding-bottom: 20px;
}

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

.page-index-review-lucky88__blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 20px;
}

.page-index-review-lucky88__blog-title {
  font-size: 22px;
  font-weight: bold;
  color: var(--text-dark);
  margin-bottom: 10px;
  padding: 0 20px;
}

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

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

.page-index-review-lucky88__blog-excerpt {
  font-size: 15px;
  line-height: 1.6;
  color: #555555;
  padding: 0 20px;
  margin-bottom: 20px;
}

.page-index-review-lucky88__btn-read-more {
  display: inline-block;
  padding: 10px 25px;
  background: linear-gradient(135deg, var(--primary-color), #0056b3);
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0, 123, 255, 0.2);
}

.page-index-review-lucky88__btn-read-more:hover {
  background: linear-gradient(135deg, #0056b3, var(--primary-color));
  transform: translateY(-2px);
  box-shadow: 0 5px 12px rgba(0, 123, 255, 0.3);
}

/* --- Responsive Design --- */
@media (max-width: 1024px) {
  .page-index-review-lucky88__hero-title {
    font-size: 36px;
  }
  .page-index-review-lucky88__section-title {
    font-size: 30px;
  }
  .page-index-review-lucky88__page-title {
    font-size: 30px;
  }
  .page-index-review-lucky88__game-card {
    flex-wrap: wrap;
    padding: 15px;
  }
  .page-index-review-lucky88__segment-1, .page-index-review-lucky88__segment-3, .page-index-review-lucky88__segment-4 {
    width: 100%;
    flex-direction: row;
    justify-content: space-around;
    padding: 10px 0;
    border-left: none;
    border-right: none;
  }
  .page-index-review-lucky88__segment-1::after, .page-index-review-lucky88__segment-2::before, .page-index-review-lucky88__segment-2::after, .page-index-review-lucky88__segment-3::before, .page-index-review-lucky88__segment-3::after, .page-index-review-lucky88__segment-4::before {
    display: none;
  }
  .page-index-review-lucky88__segment-2 {
    width: 100%;
    padding: 10px 0;
    order: -1; /* Move game name/desc to top */
  }
  .page-index-review-lucky88__game-icon {
    max-width: 80px;
  }
  .page-index-review-lucky88__rank-badge {
    position: static;
    margin-right: 10px;
  }
  .page-index-review-lucky88__game-name {
    font-size: 20px;
  }
  .page-index-review-lucky88__game-description {
    font-size: 13px;
  }
  .page-index-review-lucky88__btn-download, .page-index-review-lucky88__btn-review {
    padding: 10px 10px;
    font-size: 14px;
  }
  .page-index-review-lucky88__review-content-card {
    padding: 30px;
  }
  .page-index-review-lucky88__review-title {
    font-size: 24px;
  }
  .page-index-review-lucky88__review-content-card h3 {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .page-index-review-lucky88__hero-section {
    padding-top: 140px !important; /* Mobile: Adjust based on fixed header height */
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-index-review-lucky88__hero-title {
    font-size: 28px;
  }
  .page-index-review-lucky88__hero-description {
    font-size: 16px;
  }
  .page-index-review-lucky88__cta-button {
    padding: 12px 30px;
    font-size: 16px;
  }
  .page-index-review-lucky88__section-title {
    font-size: 26px;
    margin-bottom: 30px;
  }
  .page-index-review-lucky88__page-title {
    font-size: 26px;
    margin-bottom: 30px;
  }
  .page-index-review-lucky88__description-text {
    font-size: 15px;
    margin-bottom: 40px;
  }
  .page-index-review-lucky88__container {
    padding: 0 15px;
  }
  
  /* Game Leaderboard Mobile */
  .page-index-review-lucky88__game-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px;
  }
  .page-index-review-lucky88__game-card-segment {
    width: 100%;
    padding: 10px 0;
    align-items: center;
    text-align: center;
  }
  .page-index-review-lucky88__segment-1 {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 0;
  }
  .page-index-review-lucky88__rank-badge {
    position: static;
    margin-right: 10px;
    width: 28px;
    height: 28px;
    font-size: 14px;
  }
  .page-index-review-lucky88__game-icon {
    max-width: 80px;
    margin-top: 0;
  }
  .page-index-review-lucky88__segment-2 {
    order: -1;
    padding-left: 0;
    padding-right: 0;
  }
  .page-index-review-lucky88__game-name {
    font-size: 20px;
    margin-bottom: 5px;
  }
  .page-index-review-lucky88__game-description {
    font-size: 13px;
    margin-bottom: 15px;
  }
  .page-index-review-lucky88__segment-3 {
    width: 100%;
    padding: 10px 0;
  }
  .page-index-review-lucky88__promotion-text {
    flex-wrap: wrap;
    justify-content: center;
  }
  .page-index-review-lucky88__hot-badge {
    margin-top: 5px;
  }
  .page-index-review-lucky88__segment-4 {
    width: 100%;
    padding: 10px 0;
    flex-direction: column;
    gap: 10px;
  }
  .page-index-review-lucky88__btn-download, .page-index-review-lucky88__btn-review {
    font-size: 14px;
    padding: 10px 15px;
    max-width: 100% !important;
    width: 100% !important;
    white-space: normal;
    word-wrap: break-word;
    min-width: auto;
  }

  .page-index-review-lucky88__review-content-section {
    padding: 20px 15px;
  }
  .page-index-review-lucky88__review-content-card {
    padding: 24px 20px;
  }
  .page-index-review-lucky88__review-title {
    font-size: 22px;
  }
  .page-index-review-lucky88__review-content-card h3 {
    font-size: 17px;
  }
  .page-index-review-lucky88__review-body p {
    font-size: 15px;
  }
  .page-index-review-lucky88__feature-item {
    padding: 25px;
  }
  .page-index-review-lucky88__feature-icon {
    max-width: 60px;
  }
  .page-index-review-lucky88__feature-title {
    font-size: 20px;
  }
  .page-index-review-lucky88__feature-item p {
    font-size: 14px;
  }
  .page-index-review-lucky88__game-category-image, .page-index-review-lucky88__promotion-image, .page-index-review-lucky88__blog-image {
    height: 160px;
  }
  .page-index-review-lucky88__game-category-title, .page-index-review-lucky88__promotion-title, .page-index-review-lucky88__blog-title {
    font-size: 20px;
  }
  .page-index-review-lucky88__game-category-card p, .page-index-review-lucky88__promotion-item p, .page-index-review-lucky88__blog-excerpt {
    font-size: 14px;
  }
  
  /* Ensure all images and their containers are responsive */
  .page-index-review-lucky88 img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-index-review-lucky88__section,
  .page-index-review-lucky88__card,
  .page-index-review-lucky88__container,
  .page-index-review-lucky88__game-leaderboard-section,
  .page-index-review-lucky88__review-content-section,
  .page-index-review-lucky88__intro-section,
  .page-index-review-lucky88__games-section,
  .page-index-review-lucky88__promotions-section,
  .page-index-review-lucky88__blog-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}