/* style/blog-latest-game-strategies.css */

/* Custom Colors */
:root {
  --sb88-primary-color: #11A84E;
  --sb88-secondary-color: #22C768;
  --sb88-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --sb88-card-bg: #11271B;
  --sb88-background: #08160F;
  --sb88-text-main: #F2FFF6;
  --sb88-text-secondary: #A7D9B8;
  --sb88-border: #2E7A4E;
  --sb88-glow: #57E38D;
  --sb88-gold: #F2C14E;
  --sb88-divider: #1E3A2A;
  --sb88-deep-green: #0A4B2C;
}

.page-blog-latest-game-strategies {
  background-color: var(--sb88-background);
  color: var(--sb88-text-main); /* Light text for dark background */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

.page-blog-latest-game-strategies__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.page-blog-latest-game-strategies__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background-color: var(--sb88-deep-green);
  overflow: hidden;
}

.page-blog-latest-game-strategies__hero-image-wrapper {
  width: 100%;
  max-height: 675px; /* Adjust based on 16:9 aspect ratio for 1200px width */
  overflow: hidden;
}

.page-blog-latest-game-strategies__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-blog-latest-game-strategies__hero-content {
  text-align: center;
  padding: 40px 20px 60px;
  max-width: 900px;
  z-index: 1; /* Ensure content is above image if needed, though here it's below */
}

.page-blog-latest-game-strategies__main-title {
  font-size: clamp(2.2rem, 4vw, 3rem); /* H1 font size with clamp */
  color: var(--sb88-gold);
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-blog-latest-game-strategies__hero-description {
  font-size: 1.15rem;
  color: var(--sb88-text-main);
  margin-bottom: 30px;
}

.page-blog-latest-game-strategies__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.page-blog-latest-game-strategies__btn-primary,
.page-blog-latest-game-strategies__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  text-align: center;
}

.page-blog-latest-game-strategies__btn-primary {
  background: var(--sb88-button-gradient);
  color: #ffffff; /* White text for primary button */
  border: 2px solid transparent;
}

.page-blog-latest-game-strategies__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-blog-latest-game-strategies__btn-secondary {
  background: transparent;
  color: var(--sb88-gold);
  border: 2px solid var(--sb88-gold);
}

.page-blog-latest-game-strategies__btn-secondary:hover {
  background: var(--sb88-gold);
  color: var(--sb88-background);
  transform: translateY(-2px);
}

/* General Sections */
.page-blog-latest-game-strategies__intro-section,
.page-blog-latest-game-strategies__strategies-section,
.page-blog-latest-game-strategies__casino-strategies,
.page-blog-latest-game-strategies__game-guide-section,
.page-blog-latest-game-strategies__promotions-section,
.page-blog-latest-game-strategies__download-app-section,
.page-blog-latest-game-strategies__faq-section {
  padding: 60px 0;
  border-bottom: 1px solid var(--sb88-divider);
}

.page-blog-latest-game-strategies__section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--sb88-gold);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-blog-latest-game-strategies__text-block {
  font-size: 1rem;
  color: var(--sb88-text-secondary);
  margin-bottom: 20px;
  text-align: justify;
}

.page-blog-latest-game-strategies__cta-center {
  text-align: center;
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

/* Strategy Grid */
.page-blog-latest-game-strategies__strategy-grid,
.page-blog-latest-game-strategies__game-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-latest-game-strategies__strategy-card,
.page-blog-latest-game-strategies__game-card {
  background-color: var(--sb88-card-bg);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  color: var(--sb88-text-main);
}

.page-blog-latest-game-strategies__strategy-card:hover,
.page-blog-latest-game-strategies__game-card:hover {
  transform: translateY(-5px);
}

.page-blog-latest-game-strategies__card-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}

.page-blog-latest-game-strategies__card-title {
  font-size: 1.4rem;
  color: var(--sb88-gold);
  padding: 20px 20px 10px;
  font-weight: bold;
}

.page-blog-latest-game-strategies__card-description {
  font-size: 0.95rem;
  color: var(--sb88-text-secondary);
  padding: 0 20px 20px;
  flex-grow: 1;
}

.page-blog-latest-game-strategies__card-link {
  display: inline-block;
  color: var(--sb88-secondary-color);
  text-decoration: none;
  font-weight: bold;
  padding: 15px 20px;
  border-top: 1px solid var(--sb88-divider);
  transition: color 0.3s ease, background-color 0.3s ease;
}

.page-blog-latest-game-strategies__card-link:hover {
  color: var(--sb88-gold);
  background-color: rgba(255, 255, 255, 0.05);
}

/* Strategy List */
.page-blog-latest-game-strategies__strategy-list {
  margin-top: 40px;
}

.page-blog-latest-game-strategies__list-item {
  background-color: var(--sb88-card-bg);
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.page-blog-latest-game-strategies__list-title {
  font-size: 1.3rem;
  color: var(--sb88-gold);
  margin-bottom: 10px;
  font-weight: bold;
}

.page-blog-latest-game-strategies__list-description {
  font-size: 1rem;
  color: var(--sb88-text-secondary);
}

/* Download App Section */
.page-blog-latest-game-strategies__download-app-section {
  background-color: var(--sb88-deep-green);
}

.page-blog-latest-game-strategies__app-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.page-blog-latest-game-strategies__app-text {
  flex: 1;
  min-width: 300px;
}

.page-blog-latest-game-strategies__app-image-wrapper {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.page-blog-latest-game-strategies__app-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  display: block;
  margin: 0 auto;
}

/* FAQ Section */
.page-blog-latest-game-strategies__faq-list {
  margin-top: 40px;
}

.page-blog-latest-game-strategies__faq-item {
  background-color: var(--sb88-card-bg);
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.page-blog-latest-game-strategies__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.15rem;
  color: var(--sb88-text-main);
  font-weight: bold;
  cursor: pointer;
  background-color: var(--sb88-card-bg);
  border-bottom: 1px solid var(--sb88-divider);
  list-style: none; /* For details/summary */
}

.page-blog-latest-game-strategies__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-latest-game-strategies__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

.page-blog-latest-game-strategies__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.3s ease;
  color: var(--sb88-gold);
}

.page-blog-latest-game-strategies__faq-item[open] .page-blog-latest-game-strategies__faq-toggle {
  transform: rotate(45deg); /* Change to 'X' or '-' */
}

.page-blog-latest-game-strategies__faq-answer {
  padding: 0 25px 20px;
  font-size: 1rem;
  color: var(--sb88-text-secondary);
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-blog-latest-game-strategies__hero-content {
    padding: 30px 15px 40px;
  }

  .page-blog-latest-game-strategies__main-title {
    font-size: clamp(2rem, 5vw, 2.8rem);
  }

  .page-blog-latest-game-strategies__section-title {
    font-size: clamp(1.6rem, 4vw, 2.2rem);
  }

  .page-blog-latest-game-strategies__intro-section,
  .page-blog-latest-game-strategies__strategies-section,
  .page-blog-latest-game-strategies__casino-strategies,
  .page-blog-latest-game-strategies__game-guide-section,
  .page-blog-latest-game-strategies__promotions-section,
  .page-blog-latest-game-strategies__download-app-section,
  .page-blog-latest-game-strategies__faq-section {
    padding: 40px 0;
  }
}

@media (max-width: 768px) {
  .page-blog-latest-game-strategies__hero-content {
    padding: 20px 10px 30px;
  }

  .page-blog-latest-game-strategies__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  .page-blog-latest-game-strategies__hero-description {
    font-size: 1rem;
  }

  .page-blog-latest-game-strategies__cta-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .page-blog-latest-game-strategies__btn-primary,
  .page-blog-latest-game-strategies__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 12px 20px;
    font-size: 0.9rem;
  }

  .page-blog-latest-game-strategies__container {
    padding: 0 15px;
  }

  .page-blog-latest-game-strategies__strategy-grid,
  .page-blog-latest-game-strategies__game-card-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-blog-latest-game-strategies__card-image {
    height: 200px;
  }

  .page-blog-latest-game-strategies__app-content {
    flex-direction: column;
    gap: 20px;
  }

  .page-blog-latest-game-strategies__app-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  /* General image and video responsiveness */
  .page-blog-latest-game-strategies img,
  .page-blog-latest-game-strategies video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-blog-latest-game-strategies__hero-image-wrapper,
  .page-blog-latest-game-strategies__app-image-wrapper,
  .page-blog-latest-game-strategies__strategy-card,
  .page-blog-latest-game-strategies__game-card,
  .page-blog-latest-game-strategies__list-item,
  .page-blog-latest-game-strategies__faq-item,
  .page-blog-latest-game-strategies__video-container,
  .page-blog-latest-game-strategies__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
    overflow: hidden !important;
  }
  
  .page-blog-latest-game-strategies__video-section {
    padding-top: 10px !important;
  }
}

@media (max-width: 480px) {
  .page-blog-latest-game-strategies__main-title {
    font-size: clamp(1.5rem, 7vw, 2.2rem);
  }

  .page-blog-latest-game-strategies__section-title {
    font-size: clamp(1.4rem, 5vw, 1.8rem);
  }

  .page-blog-latest-game-strategies__hero-description,
  .page-blog-latest-game-strategies__text-block,
  .page-blog-latest-game-strategies__list-description,
  .page-blog-latest-game-strategies__faq-answer p {
    font-size: 0.9rem;
  }

  .page-blog-latest-game-strategies__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }
}