/* style/game-guides-red88-sicbo-gameplay.css */
.page-game-guides-red88-sicbo-gameplay {
  font-family: 'Arial', sans-serif;
  color: #36454F; /* Charcoal Gray for main text */
  line-height: 1.6;
}

.page-game-guides-red88-sicbo-gameplay__hero {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background-color: #36454F; /* Fallback for image */
}

.page-game-guides-red88-sicbo-gameplay__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-game-guides-red88-sicbo-gameplay__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(54, 69, 79, 0.7), rgba(220, 20, 60, 0.7)); /* Dark overlay with brand colors */
  z-index: 2;
}

.page-game-guides-red88-sicbo-gameplay__hero-content {
  position: relative;
  z-index: 3;
  color: #FFFFFF;
  max-width: 800px;
  padding: 20px;
}

.page-game-guides-red88-sicbo-gameplay__main-title {
  font-size: 3.5em;
  margin-bottom: 15px;
  color: #FFFFFF;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-game-guides-red88-sicbo-gameplay__subtitle {
  font-size: 1.5em;
  margin-bottom: 30px;
  color: #F0F0F0;
}

.page-game-guides-red88-sicbo-gameplay__btn {
  display: inline-block;
  padding: 15px 30px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin: 10px;
}

.page-game-guides-red88-sicbo-gameplay__btn--primary {
  background-color: #DC143C; /* Crimson */
  color: #FFFFFF;
  border: 2px solid #DC143C;
}

.page-game-guides-red88-sicbo-gameplay__btn--primary:hover {
  background-color: #A00F2F;
  transform: translateY(-3px);
}

.page-game-guides-red88-sicbo-gameplay__btn--secondary {
  background-color: #36454F; /* Charcoal Gray */
  color: #FFFFFF;
  border: 2px solid #36454F;
}

.page-game-guides-red88-sicbo-gameplay__btn--secondary:hover {
  background-color: #2A363E;
  transform: translateY(-3px);
}

.page-game-guides-red88-sicbo-gameplay__btn--download {
  background-color: #DC143C;
  color: #FFFFFF;
  border: 2px solid #DC143C;
}

.page-game-guides-red88-sicbo-gameplay__btn--download:hover {
  background-color: #A00F2F;
  transform: translateY(-3px);
}

.page-game-guides-red88-sicbo-gameplay__section {
  padding: 60px 0;
  background-color: #F8F8F8;
  border-bottom: 1px solid #EEEEEE;
}

.page-game-guides-red88-sicbo-gameplay__section:nth-of-type(odd) {
  background-color: #FFFFFF;
}

.page-game-guides-red88-sicbo-gameplay__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-game-guides-red88-sicbo-gameplay__section-title {
  font-size: 2.5em;
  color: #DC143C; /* Crimson */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-game-guides-red88-sicbo-gameplay__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #36454F;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-game-guides-red88-sicbo-gameplay__sub-title {
  font-size: 1.6em;
  color: #36454F;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-game-guides-red88-sicbo-gameplay__introduction p,
.page-game-guides-red88-sicbo-gameplay__rules p,
.page-game-guides-red88-sicbo-gameplay__strategies p {
  font-size: 1.1em;
  margin-bottom: 15px;
  color: #36454F;
}

.page-game-guides-red88-sicbo-gameplay__introduction strong,
.page-game-guides-red88-sicbo-gameplay__rules strong,
.page-game-guides-red88-sicbo-gameplay__strategies strong {
  color: #DC143C;
}

.page-game-guides-red88-sicbo-gameplay__content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 768px) {
  .page-game-guides-red88-sicbo-gameplay__content-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.page-game-guides-red88-sicbo-gameplay__image-wrapper {
  text-align: center;
}

.page-game-guides-red88-sicbo-gameplay__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.page-game-guides-red88-sicbo-gameplay__rules ol {
  list-style-type: decimal;
  padding-left: 25px;
  margin-bottom: 20px;
}

.page-game-guides-red88-sicbo-gameplay__rules ol li {
  margin-bottom: 10px;
  font-size: 1.1em;
  color: #36454F;
}

.page-game-guides-red88-sicbo-gameplay__bet-type-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-game-guides-red88-sicbo-gameplay__bet-card {
  background-color: #FDFDFD;
  border: 1px solid #E0E0E0;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-guides-red88-sicbo-gameplay__bet-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.page-game-guides-red88-sicbo-gameplay__bet-card-title {
  font-size: 1.4em;
  color: #DC143C;
  margin-bottom: 15px;
  text-align: center;
}

.page-game-guides-red88-sicbo-gameplay__bet-card p {
  font-size: 1em;
  color: #36454F;
  text-align: center;
}

.page-game-guides-red88-sicbo-gameplay__strategy-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-game-guides-red88-sicbo-gameplay__strategy-list li {
  background-color: #FDFDFD;
  border-left: 5px solid #DC143C;
  padding: 20px 25px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-game-guides-red88-sicbo-gameplay__strategy-list li p {
  margin-bottom: 0;
}

.page-game-guides-red88-sicbo-gameplay__why-red88 {
  background-color: #F0F0F0;
}

.page-game-guides-red88-sicbo-gameplay__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-game-guides-red88-sicbo-gameplay__feature-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-guides-red88-sicbo-gameplay__feature-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-game-guides-red88-sicbo-gameplay__feature-title {
  font-size: 1.5em;
  color: #36454F;
  margin-bottom: 15px;
}

.page-game-guides-red88-sicbo-gameplay__feature-card p {
  font-size: 1em;
  color: #555555;
}

.page-game-guides-red88-sicbo-gameplay__cta-section {
  background: linear-gradient(135deg, #DC143C, #36454F);
  padding: 80px 0;
  text-align: center;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.page-game-guides-red88-sicbo-gameplay__cta-section .page-game-guides-red88-sicbo-gameplay__section-title {
  color: #FFFFFF;
}

.page-game-guides-red88-sicbo-gameplay__cta-section .page-game-guides-red88-sicbo-gameplay__section-title::after {
  background-color: #FFFFFF;
}

.page-game-guides-red88-sicbo-gameplay__cta-section p {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #F0F0F0;
}

.page-game-guides-red88-sicbo-gameplay__cta-subtext {
  margin-top: 20px;
  font-size: 1.1em;
  color: #F0F0F0;
}

.page-game-guides-red88-sicbo-gameplay__cta-image {
  position: absolute;
  bottom: 0;
  right: 0;
  opacity: 0.2;
  height: 100%;
  object-fit: contain;
  z-index: 0;
}

@media (max-width: 1024px) {
  .page-game-guides-red88-sicbo-gameplay__main-title {
    font-size: 3em;
  }
  .page-game-guides-red88-sicbo-gameplay__subtitle {
    font-size: 1.3em;
  }
  .page-game-guides-red88-sicbo-gameplay__section-title {
    font-size: 2em;
  }
  .page-game-guides-red88-sicbo-gameplay__feature-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-game-guides-red88-sicbo-gameplay__hero {
    height: 400px;
  }
  .page-game-guides-red88-sicbo-gameplay__main-title {
    font-size: 2.5em;
  }
  .page-game-guides-red88-sicbo-gameplay__subtitle {
    font-size: 1.1em;
  }
  .page-game-guides-red88-sicbo-gameplay__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-game-guides-red88-sicbo-gameplay__section {
    padding: 40px 0;
  }
  .page-game-guides-red88-sicbo-gameplay__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-game-guides-red88-sicbo-gameplay__sub-title {
    font-size: 1.4em;
  }
  .page-game-guides-red88-sicbo-gameplay__bet-type-grid,
  .page-game-guides-red88-sicbo-gameplay__feature-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .page-game-guides-red88-sicbo-gameplay__hero {
    height: 350px;
  }
  .page-game-guides-red88-sicbo-gameplay__main-title {
    font-size: 2em;
  }
  .page-game-guides-red88-sicbo-gameplay__subtitle {
    font-size: 1em;
  }
  .page-game-guides-red88-sicbo-gameplay__btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-game-guides-red88-sicbo-gameplay__section-title {
    font-size: 1.5em;
  }
  .page-game-guides-red88-sicbo-gameplay__sub-title {
    font-size: 1.2em;
  }
  .page-game-guides-red88-sicbo-gameplay__bet-card-title {
    font-size: 1.2em;
  }
  .page-game-guides-red88-sicbo-gameplay__feature-title {
    font-size: 1.3em;
  }
}