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

/* Variables (from shared.css, for local use if needed) */
:root {
  --primary-color: #007BFF; /* Deep Blue */
  --secondary-color: #FFC107; /* Gold */
  --text-dark: #333333;
  --text-light: #ffffff;
  --bg-light: #f1f3f5;
  --bg-white: #ffffff;
  --border-light: #e0e0e0;
}

/* Base styles for the page content, scoped to .page-index-review-go88 */
.page-index-review-go88 {
  background-color: var(--bg-light); /* Light grey background for the main content area */
  color: var(--text-dark); /* Default dark text color for content on this light background */
  padding-top: 120px; /* Desktop padding to avoid header overlap */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

/* Responsive padding for mobile */
@media (max-width: 768px) {
  .page-index-review-go88 {
    padding-top: 100px !important; /* Mobile padding, important to override desktop */
  }
}

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

/* Hero Review Section */
.page-index-review-go88__hero-review {
  text-align: center;
  padding: 60px 0;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--text-light);
  margin-bottom: 40px;
  border-radius: 8px; /* Added for visual appeal */
}

.page-index-review-go88__main-title {
  font-size: 3.2em;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-index-review-go88__intro-text {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-review-go88__hero-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 40px auto 0;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* General Section Styles */
.page-index-review-go88__section {
  background-color: var(--bg-white);
  padding: 40px 20px;
  margin-bottom: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-index-review-go88__section-title {
  font-size: 2.2em;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 30px;
  text-align: center;
}

.page-index-review-go88__section p {
  font-size: 1.05em;
  margin-bottom: 15px;
  color: var(--text-dark);
}

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

.page-index-review-go88__section a:hover {
  text-decoration: underline;
  color: var(--secondary-color);
}

/* Highlighted keywords */
.page-index-review-go88 .highlight {
  color: var(--primary-color);
  font-weight: bold;
}
.page-index-review-go88__hero-review .highlight {
  color: var(--text-light); /* Keep white on dark hero background */
}

/* CTA Buttons */
.page-index-review-go88__cta-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap; /* Allow wrapping on small screens */
}

.page-index-review-go88__cta-button {
  display: inline-block;
  padding: 15px 35px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
}

.page-index-review-go88__cta-button--primary {
  background: var(--primary-color);
  color: var(--text-light);
}

.page-index-review-go88__cta-button--primary:hover {
  background: #0056b3; /* Darker primary color */
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.page-index-review-go88__cta-button--secondary {
  background: var(--bg-white);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.page-index-review-go88__cta-button--secondary:hover {
  background: var(--primary-color);
  color: var(--text-light);
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

/* Image styles */
.page-index-review-go88__image-full {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-index-review-go88__image-medium {
  max-width: 80%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-index-review-go88__image-small {
  max-width: 60%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-index-review-go88__game-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.page-index-review-go88__game-thumbnail {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
}

.page-index-review-go88__game-thumbnail:hover {
  transform: translateY(-5px);
}

/* Lists */
.page-index-review-go88__promo-list,
.page-index-review-go88__download-steps,
.page-index-review-go88__strategy-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}