/* style/blog-tv88-casino-games-deep-dive.css */

/* Base styles for the page */
.page-blog-tv88-casino-games-deep-dive {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
  padding-bottom: 50px; /* Ensure space above footer */
}

.page-blog-tv88-casino-games-deep-dive a {
  color: #2AD16F;
  text-decoration: none;
}

.page-blog-tv88-casino-games-deep-dive a:hover {
  text-decoration: underline;
}

.page-blog-tv88-casino-games-deep-dive__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Hero Section */
.page-blog-tv88-casino-games-deep-dive__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 10px; /* Small top padding, body handles header-offset */
  padding-bottom: 60px;
  overflow: hidden;
}

.page-blog-tv88-casino-games-deep-dive__hero-image-wrapper {
  width: 100%;
  max-height: 700px; /* Limit height for aesthetic */
  overflow: hidden;
  position: relative;
}

.page-blog-tv88-casino-games-deep-dive__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.6); /* Darken image for text readability */
}

.page-blog-tv88-casino-games-deep-dive__hero-content {
  position: absolute;
  z-index: 10;
  max-width: 900px;
  padding: 20px;
  background-color: rgba(8, 22, 15, 0.7); /* Deep Green background with transparency */
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.page-blog-tv88-casino-games-deep-dive__main-title {
  font-size: clamp(2em, 4vw, 3.5em);
  color: #F2C14E; /* Gold */
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
}

.page-blog-tv88-casino-games-deep-dive__hero-description {
  font-size: 1.1em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 30px;
}

.page-blog-tv88-casino-games-deep-dive__hero-cta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Section Titles */
.page-blog-tv88-casino-games-deep-dive__section-title {
  font-size: clamp(1.8em, 3vw, 2.8em);
  color: #F2C14E; /* Gold */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-blog-tv88-casino-games-deep-dive__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #2AD16F; /* Button primary color */
  border-radius: 2px;
}

/* Text Blocks */
.page-blog-tv88-casino-games-deep-dive__text-block {
  font-size: 1em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
  text-align: justify;
}

/* Buttons */
.page-blog-tv88-casino-games-deep-dive__btn-primary,
.page-blog-tv88-casino-games-deep-dive__btn-secondary,
.page-blog-tv88-casino-games-deep-dive__btn-small,
.page-blog-tv88-casino-games-deep-dive__btn-link {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-transform: uppercase;
  font-weight: bold;
  transition: all 0.3s ease;
  box-sizing: border-box;
  text-align: center;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-tv88-casino-games-deep-dive__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button primary gradient */
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-blog-tv88-casino-games-deep-dive__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
}

.page-blog-tv88-casino-games-deep-dive__btn-secondary {
  background-color: transparent;
  color: #2AD16F;
  border: 2px solid #2AD16F;
}

.page-blog-tv88-casino-games-deep-dive__btn-secondary:hover {
  background-color: #2AD16F;
  color: #ffffff;
  transform: translateY(-2px);
}

.page-blog-tv88-casino-games-deep-dive__btn-small {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  border: none;
  padding: 8px 15px;
  font-size: 0.9em;
  border-radius: 5px;
  margin-top: 15px;
}

.page-blog-tv88-casino-games-deep-dive__btn-small:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
}

.page-blog-tv88-casino-games-deep-dive__btn-link {
  background-color: transparent;
  color: #57E38D; /* Glow */
  border: none;
  padding: 0;
  text-decoration: underline;
  font-weight: normal;
}

.page-blog-tv88-casino-games-deep-dive__btn-link:hover {
  color: #F2C14E; /* Gold */
  text-decoration: none;
}

/* Content Images */
.page-blog-tv88-casino-games-deep-dive__content-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

/* Game Grid */
.page-blog-tv88-casino-games-deep-dive__game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-tv88-casino-games-deep-dive__game-card {
  background-color: #11271B; /* Card BG */
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #2E7A4E; /* Border */
}

.page-blog-tv88-casino-games-deep-dive__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

.page-blog-tv88-casino-games-deep-dive__card-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
  width: 100%; /* Ensure image fills card width */
  min-height: 200px; /* Minimum height for card images */
  object-fit: cover;
}

.page-blog-tv88-casino-games-deep-dive__card-title {
  font-size: 1.4em;
  color: #F2C14E; /* Gold */
  margin-bottom: 10px;
}

.page-blog-tv88-casino-games-deep-dive__card-title a {
  color: #F2C14E;
}

.page-blog-tv88-casino-games-deep-dive__card-title a:hover {
  color: #2AD16F;
}

.page-blog-tv88-casino-games-deep-dive__card-description {
  color: #A7D9B8; /* Text Secondary */
  font-size: 0.95em;
  margin-bottom: 20px;
}

/* Step List */
.page-blog-tv88-casino-games-deep-dive__step-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
  justify-content: center;
}

.page-blog-tv88-casino-games-deep-dive__step-item {
  background-color: #11271B; /* Card BG */
  border-radius: 10px;
  padding: 25px;
  flex: 1 1 calc(33% - 20px);
  min-width: 280px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  border: 1px solid #2E7A4E; /* Border */
}

.page-blog-tv88-casino-games-deep-dive__step-title {
  font-size: 1.3em;
  color: #2AD16F;
  margin-bottom: 15px;
}

.page-blog-tv88-casino-games-deep-dive__step-description {
  color: #A7D9B8; /* Text Secondary */
  font-size: 0.95em;
}

/* Promotion List */
.page-blog-tv88-casino-games-deep-dive__promo-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-blog-tv88-casino-games-deep-dive__promo-item {
  background-color: #11271B; /* Card BG */\  color: #F2FFF6; /* Text Main */
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  border-left: 5px solid #F2C14E; /* Gold accent */
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  font-size: 1.05em;
}

.page-blog-tv88-casino-games-deep-dive__promo-item strong {
  color: #2AD16F;
}

/* FAQ Section */
.page-blog-tv88-casino-games-deep-dive__faq-list {
  margin-top: 40px;
}

.page-blog-tv88-casino-games-deep-dive__faq-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.page-blog-tv88-casino-games-deep-dive__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  background-color: #0A4B2C; /* Deep Green */
  color: #F2FFF6; /* Text Main */
  font-weight: bold;
  font-size: 1.15em;
  border-bottom: 1px solid #1E3A2A; /* Divider */
}

.page-blog-tv88-casino-games-deep-dive__faq-item[open] > .page-blog-tv88-casino-games-deep-dive__faq-question {
  border-bottom: 1px solid #2E7A4E;
}

.page-blog-tv88-casino-games-deep-dive__faq-qtext {
  flex-grow: 1;
}

.page-blog-tv88-casino-games-deep-dive__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: #F2C14E; /* Gold */
}

.page-blog-tv88-casino-games-deep-dive__faq-answer {
  padding: 20px 25px;
  color: #A7D9B8; /* Text Secondary */
  font-size: 1em;
}

/* Hide default details arrow */
.page-blog-tv88-casino-games-deep-dive__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-blog-tv88-casino-games-deep-dive__faq-item summary {
  list-style: none;
}

/* Final CTA */
.page-blog-tv88-casino-games-deep-dive__cta-final {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 50px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-tv88-casino-games-deep-dive__hero-content {
    max-width: 700px;
  }
  .page-blog-tv88-casino-games-deep-dive__game-card {
    flex: 1 1 calc(50% - 15px);
  }
  .page-blog-tv88-casino-games-deep-dive__step-item {
    flex: 1 1 calc(50% - 15px);
  }
}

@media (max-width: 768px) {
  .page-blog-tv88-casino-games-deep-dive__hero-content {
    position: static;
    background-color: rgba(8, 22, 15, 0.9); /* More opaque on mobile */
    border-radius: 0;
    box-shadow: none;
    padding: 30px 20px;
    margin-top: -100px; /* Pull content up slightly over image */
  }
  .page-blog-tv88-casino-games-deep-dive__hero-image-wrapper {
    max-height: 400px;
  }
  .page-blog-tv88-casino-games-deep-dive__main-title {
    font-size: 2.2em;
  }
  .page-blog-tv88-casino-games-deep-dive__section-title {
    font-size: 1.8em;
  }
  .page-blog-tv88-casino-games-deep-dive__game-grid,
  .page-blog-tv88-casino-games-deep-dive__step-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-blog-tv88-casino-games-deep-dive__step-item {
    flex: 1 1 100%;
  }
  .page-blog-tv88-casino-games-deep-dive__hero-cta,
  .page-blog-tv88-casino-games-deep-dive__cta-final {
    flex-direction: column;
    gap: 15px;
  }
  .page-blog-tv88-casino-games-deep-dive__btn-primary,
  .page-blog-tv88-casino-games-deep-dive__btn-secondary,
  .page-blog-tv88-casino-games-deep-dive a[class*="button"],
  .page-blog-tv88-casino-games-deep-dive a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-blog-tv88-casino-games-deep-dive__cta-buttons,
  .page-blog-tv88-casino-games-deep-dive__button-group,
  .page-blog-tv88-casino-games-deep-dive__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }
  .page-blog-tv88-casino-games-deep-dive__hero-section {
    padding-bottom: 30px;
  }
  .page-blog-tv88-casino-games-deep-dive img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-blog-tv88-casino-games-deep-dive__section,
  .page-blog-tv88-casino-games-deep-dive__card,
  .page-blog-tv88-casino-games-deep-dive__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-blog-tv88-casino-games-deep-dive__video-section {
    padding-top: 10px !important;
  }
}

@media (max-width: 480px) {
  .page-blog-tv88-casino-games-deep-dive__main-title {
    font-size: 1.8em;
  }
  .page-blog-tv88-casino-games-deep-dive__hero-description {
    font-size: 1em;
  }
  .page-blog-tv88-casino-games-deep-dive__btn-primary,
  .page-blog-tv88-casino-games-deep-dive__btn-secondary {
    padding: 10px 20px;
    font-size: 0.9em;
  }
}