/* style/index-review-saobet.css */
:root {
  --primary-color: #0A2463;
  --secondary-color: #E3B505;
  --text-light: #ffffff;
  --text-dark: #333333;
  --background-light: #f4f7f6;
  --background-dark: #071a47;
  --border-color: #e0e0e0;
}

.page-index-review-saobet {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--background-light);
}

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

.page-index-review-saobet-heading {
  text-align: center;
  color: var(--primary-color);
  font-size: 2.5em;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-index-review-saobet-heading::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--secondary-color);
  border-radius: 2px;
}

.page-index-review-saobet-title {
  color: var(--text-light);
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-index-review-saobet-description {
  color: var(--text-light);
  font-size: 1.2em;
  margin-bottom: 30px;
}

/* Hero Section */
.page-index-review-saobet.hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--primary-color) 0%, #1a3c80 100%); /* Darker gradient for depth */
  overflow: hidden;
}

.page-index-review-saobet .hero-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.page-index-review-saobet .hero-image {
  width: 100%;
  max-width: 900px; /* Adjust max-width for the image */
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border-radius: 12px;
  overflow: hidden;
}

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

.page-index-review-saobet .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  max-width: 800px;
}

.page-index-review-saobet-cta-button {
  display: inline-block;
  padding: 18px 45px;
  background: var(--secondary-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.3em;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.page-index-review-saobet-cta-button:hover {
  background: #ffc928; /* Slightly brighter gold */
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* General Intro Section */
.page-index-review-saobet.general-intro-section {
  padding: 60px 0;
  background-color: var(--background-light);
}

.page-index-review-saobet .general-intro-section p {
  text-align: center;
  margin-bottom: 40px;
  font-size: 1.1em;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-index-review-saobet-feature-item {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-review-saobet-feature-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-index-review-saobet-feature-item h3 {
  color: var(--primary-color);
  font-size: 1.5em;
  margin-top: 15px;
  margin-bottom: 10px;
}

.page-index-review-saobet-feature-item p {
  font-size: 1em;
  color: var(--text-dark);
  text-align: center;
}

.page-index-review-saobet-feature-icon {
  width: 100px; /* Min size 200x200px, but icon style can be smaller visually with good resolution */
  height: 100px;
  object-fit: contain;
  margin-bottom: 15px;
}

/* Quick Access Section */
.page-index-review-saobet.quick-access-section {
  padding: 60px 0;
  background-color: var(--background-dark);
  color: var(--text-light);
}

.page-index-review-saobet.quick-access-section .page-index-review-saobet-heading {
  color: var(--secondary-color);
}

.page-index-review-saobet.quick-access-section .page-index-review-saobet-heading::after {
  background-color: var(--primary-color);
}

.page-index-review-saobet.quick-access-section p {
  text-align: center;
  margin-bottom: 40px;
  font-size: 1.1em;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-light);
}

.page-index-review-saobet-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.page-index-review-saobet-quick-link {
  background: var(--primary-color);
  color: var(--text-light);
  padding: 25px;
  border-radius: 10px;
  text-decoration: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-index-review-saobet-quick-link:hover {
  transform: translateY(-5px);
  background-color: #1a3c80; /* Slightly lighter primary */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-index-review-saobet-link-icon {
  width: 80px; /* Min size 200x200px, but icon style can be smaller visually with good resolution */
  height: 80px;
  object-fit: contain;
  margin-bottom: 15px;
}

.page-index-review-saobet-link-text {
  font-size: 1.1em;
  font-weight: bold;
  color: var(--text-light);
}

/* Core Games Section */
.page-index-review-saobet.core-games-section {
  padding: 60px 0;
  background-color: var(--background-light);
}

.page-index-review-saobet .core-games-section p {
  text-align: center;
  margin-bottom: 40px;
  font-size: 1.1em;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-index-review-saobet-game-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-index-review-saobet-game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

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

.page-index-review-saobet-game-card h3 {
  padding: 20px 20px 10px;
  margin: 0;
  font-size: 1.6em;
}

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

.page-index-review-saobet-game-title-link:hover {
  color: var(--secondary-color);
}

.page-index-review-saobet-game-card p {
  padding: 0 20px 20px;
  font-size: 1em;
  color: var(--text-dark);
  flex-grow: 1;
  text-align: left;
}

.page-index-review-saobet-game-button {
  display: block;
  width: calc(100% - 40px);
  margin: 0 20px 20px;
  padding: 12px 0;
  background: var(--secondary-color);
  color: var(--primary-color);
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-index-review-saobet-game-button:hover {
  background: #ffc928;
  transform: translateY(-2px);
}

/* Promotions Section */
.page-index-review-saobet.promotions-section {
  padding: 60px 0;
  background-color: var(--background-dark);
  color: var(--text-light);
}

.page-index-review-saobet.promotions-section .page-index-review-saobet-heading {
  color: var(--secondary-color);
}

.page-index-review-saobet.promotions-section .page-index-review-saobet-heading::after {
  background-color: var(--primary-color);
}

.page-index-review-saobet.promotions-section p {
  text-align: center;
  margin-bottom: 40px;
  font-size: 1.1em;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-light);
}

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

.page-index-review-saobet-promo-card {
  background: var(--primary-color);
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-index-review-saobet-promo-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.page-index-review-saobet-promo-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.page-index-review-saobet-promo-card h3 {
  padding: 20px 20px 10px;
  margin: 0;
  font-size: 1.6em;
}

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

.page-index-review-saobet-promo-title-link:hover {
  color: #ffc928;
}

.page-index-review-saobet-promo-card p {
  padding: 0 20px 20px;
  font-size: 1em;
  color: var(--text-light);
  flex-grow: 1;
  text-align: left;
}

.page-index-review-saobet-promo-button {
  display: block;
  width: calc(100% - 40px);
  margin: 0 20px 20px;
  padding: 12px 0;
  background: var(--secondary-color);
  color: var(--primary-color);
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-index-review-saobet-promo-button:hover {
  background: #ffc928;
  transform: translateY(-2px);
}

/* Security & Customer Service Section */
.page-index-review-saobet.security-customer-service-section {
  padding: 60px 0;
  background-color: var(--background-light);
}

.page-index-review-saobet .security-customer-service-section p {
  text-align: center;
  margin-bottom: 40px;
  font-size: 1.1em;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-index-review-saobet-info-item {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-review-saobet-info-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-index-review-saobet-info-item h3 {
  color: var(--primary-color);
  font-size: 1.5em;
  margin-top: 15px;
  margin-bottom: 10px;
}

.page-index-review-saobet-info-item p {
  font-size: 1em;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 20px;
}

.page-index-review-saobet-info-icon {
  width: 100px; /* Min size 200x200px, but icon style can be smaller visually with good resolution */
  height: 100px;
  object-fit: contain;
  margin-bottom: 15px;
}

.page-index-review-saobet-contact-button {
  display: inline-block;
  padding: 10px 25px;
  background: var(--primary-color);
  color: var(--text-light);
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-index-review-saobet-contact-button:hover {
  background-color: #1a3c80;
}

/* FAQ Section */
.page-index-review-saobet.faq-section {
  padding: 60px 0;
  background-color: var(--background-dark);
  color: var(--text-light);
}

.page-index-review-saobet.faq-section .page-index-review-saobet-heading {
  color: var(--secondary-color);
}

.page-index-review-saobet.faq-section .page-index-review-saobet-heading::after {
  background-color: var(--primary-color);
}

.page-index-review-saobet.faq-section p {
  text-align: center;
  margin-bottom: 40px;
  font-size: 1.1em;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-light);
}

.page-index-review-saobet-faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-index-review-saobet .faq-item {
  margin-bottom: 15px;
}

.page-index-review-saobet .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: var(--primary-color);
  color: var(--text-light);
  border: 1px solid #1a3c80;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.page-index-review-saobet .faq-question:hover {
  background: #1a3c80;
  border-color: var(--secondary-color);
}

.page-index-review-saobet .faq-question h3 {
  margin: 0;
  font-size: 1.2em;
  font-weight: bold;
  color: var(--text-light);
}

.page-index-review-saobet .faq-toggle {
  font-size: 1.8em;
  font-weight: bold;
  transition: transform 0.3s ease;
  color: var(--secondary-color);
}

.page-index-review-saobet .faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: #ffc928;
}

.page-index-review-saobet .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  background: #071a47; /* Darker background for answer */
  color: #cccccc;
  border-radius: 0 0 8px 8px;
  border: 1px solid #1a3c80;
  border-top: none;
}

.page-index-review-saobet .faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height */
  padding: 20px 25px;
  border-color: var(--secondary-color);
}

.page-index-review-saobet .faq-answer p {
  margin: 0;
  font-size: 1em;
  text-align: left;
  color: #cccccc;
}

.page-index-review-saobet-faq-button {
  display: inline-block;
  padding: 8px 20px;
  background: var(--secondary-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  margin-top: 15px;
  transition: background-color 0.3s ease;
}

.page-index-review-saobet-faq-button:hover {
  background-color: #ffc928;
}

/* Latest Blog Section */
.page-index-review-saobet.latest-blog-section {
  padding: 60px 0 80px;
  background-color: var(--background-light);
}

.page-index-review-saobet .latest-blog-section p {
  text-align: center;
  margin-bottom: 40px;
  font-size: 1.1em;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-index-review-saobet-blog-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-index-review-saobet-blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.page-index-review-saobet-blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-index-review-saobet-blog-card h3 {
  padding: 20px 20px 10px;
  margin: 0;
  font-size: 1.6em;
}

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

.page-index-review-saobet-blog-title-link:hover {
  color: var(--secondary-color);
}

.page-index-review-saobet-blog-card p {
  padding: 0 20px 20px;
  font-size: 1em;
  color: var(--text-dark);
  flex-grow: 1;
  text-align: left;
}

.page-index-review-saobet-blog-button {
  display: block;
  width: calc(100% - 40px);
  margin: 0 20px 20px;
  padding: 12px 0;
  background: var(--primary-color);
  color: var(--text-light);
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-index-review-saobet-blog-button:hover {
  background: #1a3c80;
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-index-review-saobet-heading {
    font-size: 2em;
  }
  .page-index-review-saobet-title {
    font-size: 2.8em;
  }
  .page-index-review-saobet-description {
    font-size: 1.1em;
  }
  .page-index-review-saobet-cta-button {
    padding: 15px 35px;
    font-size: 1.2em;
  }
}

@media (max-width: 768px) {
  .page-index-review-saobet-heading {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-index-review-saobet-title {
    font-size: 2.2em;
  }
  .page-index-review-saobet-description {
    font-size: 1em;
  }
  .page-index-review-saobet.hero-section {
    padding: 60px 15px;
  }
  .page-index-review-saobet .hero-image {
    margin-bottom: 20px;
  }
  .page-index-review-saobet-cta-button {
    padding: 12px 30px;
    font-size: 1.1em;
  }
  .page-index-review-saobet-container {
    padding: 15px;
  }
  .page-index-review-saobet-features-grid, 
  .page-index-review-saobet-links-grid, 
  .page-index-review-saobet-game-categories, 
  .page-index-review-saobet-promo-grid, 
  .page-index-review-saobet-info-grid, 
  .page-index-review-saobet-blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-index-review-saobet-feature-item, 
  .page-index-review-saobet-quick-link, 
  .page-index-review-saobet-game-card, 
  .page-index-review-saobet-promo-card, 
  .page-index-review-saobet-info-item, 
  .page-index-review-saobet-blog-card {
    padding: 20px;
  }
  .page-index-review-saobet-feature-item h3, 
  .page-index-review-saobet-game-card h3, 
  .page-index-review-saobet-promo-card h3, 
  .page-index-review-saobet-info-item h3, 
  .page-index-review-saobet-blog-card h3 {
    font-size: 1.3em;
  }
  .page-index-review-saobet .faq-question {
    padding: 15px 20px;
  }
  .page-index-review-saobet .faq-question h3 {
    font-size: 1.1em;
  }
  .page-index-review-saobet .faq-toggle {
    font-size: 1.5em;
  }
  .page-index-review-saobet .faq-answer {
    padding: 0 20px;
  }
  .page-index-review-saobet .faq-item.active .faq-answer {
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-index-review-saobet-title {
    font-size: 1.8em;
  }
  .page-index-review-saobet-heading {
    font-size: 1.5em;
  }
  .page-index-review-saobet-cta-button {
    font-size: 1em;
    padding: 10px 25px;
  }
  .page-index-review-saobet-feature-icon, .page-index-review-saobet-link-icon, .page-index-review-saobet-info-icon {
    width: 80px;
    height: 80px;
  }
  .page-index-review-saobet-game-image, .page-index-review-saobet-promo-image, .page-index-review-saobet-blog-image {
    height: 150px;
  }
}