/* style/index-review-go88.css */

/* Base Styles */
.page-index-review-go88 {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #f0f0f0; /* Default light text for dark body background */
  background-color: var(--dark-bg-1); /* Inherit from shared.css, assumed dark */
}

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

.page-index-review-go88__section-title {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: #FFD700; /* Gold for titles */
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.page-index-review-go88__main-title {
  font-size: 42px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
  color: #FFD700; /* Gold for main title */
  text-transform: uppercase;
  letter-spacing: 2px;
}

.page-index-review-go88__description,
.page-index-review-go88__note {
  font-size: 18px;
  margin-bottom: 20px;
  text-align: center;
  color: #ffffff;
}

.page-index-review-go88__description strong {
  color: #FFD700;
}

.page-index-review-go88__call-to-action {
  text-align: center;
  margin-top: 30px;
  font-size: 20px;
  color: #ffffff;
}

.page-index-review-go88__call-to-action a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-index-review-go88__call-to-action a:hover {
  color: #8B0000;
}

.page-index-review-go88__btn-primary,
.page-index-review-go88__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  margin-top: 20px;
}

.page-index-review-go88__btn-primary {
  background: #FFD700;
  color: #000000; /* Black text for gold button for contrast */
}

.page-index-review-go88__btn-primary:hover {
  background: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-index-review-go88__btn-secondary {
  background: #8B0000;
  color: #ffffff;
}

.page-index-review-go88__btn-secondary:hover {
  background: #a30000;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Section Specific Styles */
.page-index-review-go88__dark-section {
  background-color: rgba(0, 0, 0, 0.4); /* Slightly darker overlay for text sections */
  padding: 60px 0;
}

.page-index-review-go88__dark-bg {
  background-color: rgba(0, 0, 0, 0.6); /* Even darker background for specific sections */
  padding: 60px 0;
}

/* HERO Section */
.page-index-review-go88__hero-section {
  position: relative;
  width: 100%;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}

.page-index-review-go88__hero-container {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

.page-index-review-go88__hero-image {
  width: 100%;
  margin: 0;
}

.page-index-review-go88__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: cover;
}

/* LOGO Carousel Section */
.page-index-review-go88__logo-carousel-section {
  width: 100%;
  padding: 40px 20px;
  background: rgba(0, 0, 0, 0.2);
}

.page-index-review-go88__logo-carousel-container {
  max-width: 1400px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.page-index-review-go88__logo-carousel {
  display: flex;
  gap: 20px;
  overflow: hidden;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
  padding: 10px 0;
  user-select: none;
  -webkit-user-select: none;
  pointer-events: none; /* Disable user interaction for carousel movement */
}

.page-index-review-go88__logo-carousel::-webkit-scrollbar {
  display: none;
}

.page-index-review-go88__logo-item {
  flex-shrink: 0;
  width: 200px;
  height: 200px;
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  pointer-events: auto; /* Allow interaction for individual logo links */
}

.page-index-review-go88__logo-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.page-index-review-go88__logo-item a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 15px;
  box-sizing: border-box;
  pointer-events: auto;
}

.page-index-review-go88__logo-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Games Section */
.page-index-review-go88__games-section {
  width: 100%;
  padding: 60px 20px;
  background: rgba(0, 0, 0, 0.3);
}

.page-index-review-go88__games-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 30px;
  align-items: start;
}

.page-index-review-go88__featured-game-area {
  width: 100%;
}

.page-index-review-go88__featured-game-title {
  font-size: 24px;
  font-weight: bold;
  margin: 0 0 20px 0;
  color: #ffd700; /* Yellow text */
  text-align: left;
}

.page-index-review-go88__featured-game {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-review-go88__featured-game:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.page-index-review-go88__featured-game-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.page-index-review-go88__featured-game-image {
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.page-index-review-go88__featured-game-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-index-review-go88__games-grid-area {
  width: 100%;
}

.page-index-review-go88__games-tabs {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  align-items: center;
}

.page-index-review-go88__games-tab {
  background: none;
  border: none;
  padding: 0;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  color: #999999;
  transition: color 0.3s ease;
  text-decoration: none;
  position: relative;
}

.page-index-review-go88__games-tab:hover {
  color: #ffffff;
}

.page-index-review-go88__games-tab.active {
  color: #ff0000; /* Red text */
  text-decoration: underline;
}

.page-index-review-go88__games-tab.active + .page-index-review-go88__games-tab {
  color: #ffffff; /* White text */
}

.page-index-review-go88__games-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  display: none;
}