.page-gambling-reviews__hero {
  background: linear-gradient(135deg, #007BFF, #4da3ff); /* Sử dụng biến thể màu chính */
  padding: 100px 0;
  text-align: center;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.page-gambling-reviews__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract_geometric_pattern]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-gambling-reviews__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
  position: relative;
  z-index: 1;
}

.page-gambling-reviews__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.page-gambling-reviews__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-gambling-reviews__content-section {
  padding: 60px 0;
  background-color: #f8f9fa; /* Màu nền nhẹ để dễ đọc */
}

.page-gambling-reviews__section-title {
  font-size: 2.5em;
  color: #0056b3; /* Màu đậm hơn của primary để tương phản */
  margin-top: 40px;
  margin-bottom: 25px;
  text-align: center;
  position: relative;
  padding-bottom: 10px;
}

.page-gambling-reviews__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFC107; /* Màu phụ để nhấn nhá */
  border-radius: 2px;
}

.page-gambling-reviews__sub-section-title {
  font-size: 1.8em;
  color: #007BFF;
  margin-top: 30px;
  margin-bottom: 15px;
  border-left: 5px solid #FFC107;
  padding-left: 15px;
}

.page-gambling-reviews__text-block {
  font-size: 1.1em;
  line-height: 1.7;
  color: #333;
  margin-bottom: 20px;
}

.page-gambling-reviews__list,
.page-gambling-reviews__numbered-list {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.page-gambling-reviews__list li,
.page-gambling-reviews__numbered-list li {
  font-size: 1.1em;
  line-height: 1.8;
  color: #333;
  margin-bottom: 10px;
  position: relative;
  padding-left: 30px;
}

.page-gambling-reviews__list li::before {
  content: '✓';
  color: #FFC107;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

.page-gambling-reviews__numbered-list li::before {
  content: counter(list-item) '.';
  counter-increment: list-item;
  color: #007BFF;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

.page-gambling-reviews__btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 1.1em;
  text-align: center;
}

.page-gambling-reviews__btn--primary {
  background-color: #FFC107; /* Màu phụ */
  color: #0056b3; /* Màu đậm hơn của primary để tương phản */
  border: 2px solid #FFC107;
}

.page-gambling-reviews__btn--primary:hover {
  background-color: #e0a800;
  border-color: #e0a800;
  color: #003f8a;
}

.page-gambling-reviews__btn--secondary {
  background-color: #007BFF; /* Màu chính */
  color: #ffffff;
  border: 2px solid #007BFF;
  margin-top: 20px;
}

.page-gambling-reviews__btn--secondary:hover {
  background-color: #0056b3;
  border-color: #0056b3;
}

.page-gambling-reviews__btn--tertiary {
  background-color: transparent;
  color: #007BFF;
  border: 2px solid #007BFF;
  margin-top: 20px;
}

.page-gambling-reviews__btn--tertiary:hover {
  background-color: #007BFF;
  color: #ffffff;
}

.page-gambling-reviews__btn--link {
  background-color: transparent;
  color: #007BFF;
  border: none;
  padding: 8px 0;
  text-decoration: underline;
  font-size: 1em;
}

.page-gambling-reviews__btn--link:hover {
  color: #0056b3;
}

.page-gambling-reviews__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 30px auto;
  display: block;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.page-gambling-reviews__card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-gambling-reviews__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-gambling-reviews__card-title {
  font-size: 1.5em;
  color: #007BFF;
  margin-bottom: 15px;
}

.page-gambling-reviews__card-title a {
  color: inherit;
  text-decoration: none;
}

.page-gambling-reviews__card-title a:hover {
  text-decoration: underline;
}

.page-gambling-reviews__card-description {
  font-size: 1em;
  color: #555;
  line-height: 1.6;
  margin-bottom: 25px;
}

.page-gambling-reviews__floating-promo {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #FFC107; /* Màu phụ */
  color: #0056b3; /* Màu đậm hơn của primary */
  padding: 15px 25px;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 15px;
  max-width: 350px;
}

.page-gambling-reviews__floating-promo p {
  margin: 0;
  font-weight: 500;
  font-size: 1.05em;
  line-height: 1.4;
}

.page-gambling-reviews__btn--floating {
  background-color: #007BFF; /* Màu chính */
  color: #ffffff;
  padding: 8px 18px;
  font-size: 0.95em;
  white-space: nowrap;
  border: none;
}

.page-gambling-reviews__btn--floating:hover {
  background-color: #0056b3;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-gambling-reviews__hero-title {
    font-size: 2.8em;
  }
  .page-gambling-reviews__section-title {
    font-size: 2em;
  }
  .page-gambling-reviews__sub-section-title {
    font-size: 1.6em;
  }
  .page-gambling-reviews__text-block, .page-gambling-reviews__list li, .page-gambling-reviews__numbered-list li {
    font-size: 1em;
  }
}

@media (max-width: 768px) {
  .page-gambling-reviews__hero {
    padding: 80px 0 60px;
  }
  .page-gambling-reviews__hero-title {
    font-size: 2.2em;
  }
  .page-gambling-reviews__hero-description {
    font-size: 1em;
  }
  .page-gambling-reviews__btn {
    padding: 10px 20px;
    font-size: 1em;
  }
  .page-gambling-reviews__section-title {
    font-size: 1.8em;
  }
  .page-gambling-reviews__sub-section-title {
    font-size: 1.4em;
  }
  .page-gambling-reviews__detail-cards {
    grid-template-columns: 1fr;
  }
  .page-gambling-reviews__floating-promo {
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    gap: 10px;
    max-width: 250px;
    padding: 12px 18px;
    bottom: 15px;
    right: 15px;
  }
  .page-gambling-reviews__floating-promo p {
    font-size: 0.9em;
  }
  .page-gambling-reviews__btn--floating {
    padding: 6px 15px;
    font-size: 0.85em;
  }
}

@media (max-width: 480px) {
  .page-gambling-reviews__hero-title {
    font-size: 1.8em;
  }
  .page-gambling-reviews__section-title {
    font-size: 1.5em;
  }
  .page-gambling-reviews__floating-promo {
    max-width: 90%;
    left: 5%;
    right: 5%;
    bottom: 10px;
  }
}