/* style/blog-how-to-bet-efficiently-on-s88-win-sports.css */

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

/* Base styles for the page content, considering shared body padding-top */
.page-blog-how-to-bet-efficiently-on-s88-win-sports {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-main-color); /* Default text color for dark background */
  background-color: var(--background-color);
}

.page-blog-how-to-bet-efficiently-on-s88-win-sports__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Hero Section */
.page-blog-how-to-bet-efficiently-on-s88-win-sports__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small decorative top padding, body handles header offset */
  text-align: center;
  overflow: hidden;
}

.page-blog-how-to-bet-efficiently-on-s88-win-sports__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  margin-bottom: 30px;
}

.page-blog-how-to-bet-efficiently-on-s88-win-sports__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-blog-how-to-bet-efficiently-on-s88-win-sports__hero-content {
  max-width: 800px;
  margin: 0 auto;
  z-index: 1;
  color: var(--text-main-color);
}

.page-blog-how-to-bet-efficiently-on-s88-win-sports__main-title {
  font-size: clamp(2em, 4vw, 3.5em); /* Responsive font size for H1 */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--gold-color);
  text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
}

.page-blog-how-to-bet-efficiently-on-s88-win-sports__intro-text {
  font-size: 1.15em;
  margin-bottom: 30px;
  color: var(--text-secondary-color);
}

/* Section Titles */
.page-blog-how-to-bet-efficiently-on-s88-win-sports__section-title {
  font-size: 2.5em;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
  color: var(--gold-color);
  position: relative;
  padding-bottom: 15px;
}

.page-blog-how-to-bet-efficiently-on-s88-win-sports__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gold-color);
  border-radius: 2px;
}

.page-blog-how-to-bet-efficiently-on-s88-win-sports__paragraph {
  font-size: 1.05em;
  margin-bottom: 25px;
  text-align: justify;
  color: var(--text-secondary-color);
}

.page-blog-how-to-bet-efficiently-on-s88-win-sports__content-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Buttons */
.page-blog-how-to-bet-efficiently-on-s88-win-sports__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-how-to-bet-efficiently-on-s88-win-sports__btn-primary {
  background: var(--button-gradient);
  color: #ffffff; /* White text for primary button */
  border: 2px solid transparent;
}

.page-blog-how-to-bet-efficiently-on-s88-win-sports__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
}

.page-blog-how-to-bet-efficiently-on-s88-win-sports__btn-secondary {
  background: var(--deep-green-color);
  color: var(--text-main-color);
  border: 2px solid var(--primary-color);
  margin-top: 15px;
}

.page-blog-how-to-bet-efficiently-on-s88-win-sports__btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  background: var(--primary-color);
  color: #ffffff;
}

/* Card styles */
.page-blog-how-to-bet-efficiently-on-s88-win-sports__card {
  background-color: var(--card-bg-color);
  color: var(--text-main-color);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-color);
}

.page-blog-how-to-bet-efficiently-on-s88-win-sports__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Feature Grid */
.page-blog-how-to-bet-efficiently-on-s88-win-sports__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-how-to-bet-efficiently-on-s88-win-sports__feature-item {
  text-align: center;
}

.page-blog-how-to-bet-efficiently-on-s88-win-sports__feature-icon {
  width: 100%;
  height: auto;
  max-width: 250px; /* Adjust based on desired icon size within card */
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-blog-how-to-bet-efficiently-on-s88-win-sports__feature-title {
  font-size: 1.5em;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--gold-color);
}

.page-blog-how-to-bet-efficiently-on-s88-win-sports__feature-description {
  font-size: 0.95em;
  color: var(--text-secondary-color);
}

/* Steps Section */
.page-blog-how-to-bet-efficiently-on-s88-win-sports__steps-section {
  padding: 80px 0;
  background-color: var(--deep-green-color);
}

.page-blog-how-to-bet-efficiently-on-s88-win-sports__step-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-how-to-bet-efficiently-on-s88-win-sports__step-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-blog-how-to-bet-efficiently-on-s88-win-sports__step-number {
  width: 60px;
  height: 60px;
  line-height: 60px;
  background: var(--gold-color);
  color: var(--background-color);
  border-radius: 50%;
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-blog-how-to-bet-efficiently-on-s88-win-sports__step-title {
  font-size: 1.6em;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--text-main-color);
}

.page-blog-how-to-bet-efficiently-on-s88-win-sports__step-description {
  font-size: 0.95em;
  color: var(--text-secondary-color);
  flex-grow: 1;
}

/* Strategy Section */
.page-blog-how-to-bet-efficiently-on-s88-win-sports__strategy-section {
  padding: 80px 0;
  background-color: var(--background-color);
}

.page-blog-how-to-bet-efficiently-on-s88-win-sports__strategy-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-how-to-bet-efficiently-on-s88-win-sports__strategy-title {
  font-size: 1.5em;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--gold-color);
}

.page-blog-how-to-bet-efficiently-on-s88-win-sports__strategy-description {
  font-size: 0.95em;
  color: var(--text-secondary-color);
}

/* Advanced Tips Section */
.page-blog-how-to-bet-efficiently-on-s88-win-sports__advanced-tips-section {
  padding: 80px 0;
  background-color: var(--deep-green-color);
}

.page-blog-how-to-bet-efficiently-on-s88-win-sports__tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-how-to-bet-efficiently-on-s88-win-sports__tip-title {
  font-size: 1.5em;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--gold-color);
}

.page-blog-how-to-bet-efficiently-on-s88-win-sports__tip-description {
  font-size: 0.95em;
  color: var(--text-secondary-color);
}

/* Sports Section */
.page-blog-how-to-bet-efficiently-on-s88-win-sports__sports-section {
  padding: 80px 0;
  background-color: var(--background-color);
}

.page-blog-how-to-bet-efficiently-on-s88-win-sports__sports-list {
  list-style: none;
  padding: 0;
  margin: 40px 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-blog-how-to-bet-efficiently-on-s88-win-sports__sports-item {
  text-align: center;
}

.page-blog-how-to-bet-efficiently-on-s88-win-sports__sports-title {
  font-size: 1.6em;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--gold-color);
}

.page-blog-how-to-bet-efficiently-on-s88-win-sports__sports-description {
  font-size: 0.95em;
  color: var(--text-secondary-color);
}

/* Support Section */
.page-blog-how-to-bet-efficiently-on-s88-win-sports__support-section {
  padding: 80px 0;
  background-color: var(--deep-green-color);
}

.page-blog-how-to-bet-efficiently-on-s88-win-sports__support-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-how-to-bet-efficiently-on-s88-win-sports__support-item {
  text-align: center;
}

.page-blog-how-to-bet-efficiently-on-s88-win-sports__support-title {
  font-size: 1.6em;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--text-main-color);
}

.page-blog-how-to-bet-efficiently-on-s88-win-sports__support-description {
  font-size: 0.95em;
  color: var(--text-secondary-color);
}

/* FAQ Section */
.page-blog-how-to-bet-efficiently-on-s88-win-sports__faq-section {
  margin-top: 60px;
  background-color: var(--background-color);
  padding: 40px;
  border-radius: 10px;
  border: 1px solid var(--border-color);
}

.page-blog-how-to-bet-efficiently-on-s88-win-sports__faq-heading {
  font-size: 2em;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
  color: var(--gold-color);
}

.page-blog-how-to-bet-efficiently-on-s88-win-sports__faq-item {
  margin-bottom: 15px;
  overflow: hidden;
  border: 1px solid var(--divider-color);
  background-color: var(--card-bg-color);
}

.page-blog-how-to-bet-efficiently-on-s88-win-sports__faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.1em;
  font-weight: bold;
  color: var(--text-main-color);
  cursor: pointer;
  background-color: var(--card-bg-color);
  border-bottom: 1px solid var(--divider-color);
}

.page-blog-how-to-bet-efficiently-on-s88-win-sports__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-blog-how-to-bet-efficiently-on-s88-win-sports__faq-qtext {
  flex-grow: 1;
  text-align: left;
}

.page-blog-how-to-bet-efficiently-on-s88-win-sports__faq-toggle {
  font-size: 1.5em;
  margin-left: 15px;
  color: var(--gold-color);
  transition: transform 0.3s ease;
}

.page-blog-how-to-bet-efficiently-on-s88-win-sports__faq-item[open] .page-blog-how-to-bet-efficiently-on-s88-win-sports__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-how-to-bet-efficiently-on-s88-win-sports__faq-answer {
  padding: 15px 20px;
  font-size: 0.95em;
  color: var(--text-secondary-color);
  text-align: justify;
}

/* Conclusion Section */
.page-blog-how-to-bet-efficiently-on-s88-win-sports__conclusion-section {
  padding: 80px 0;
  text-align: center;
  background-color: var(--background-color);
}

/* General Section Padding */
.page-blog-how-to-bet-efficiently-on-s88-win-sports__content-area,
.page-blog-how-to-bet-efficiently-on-s88-win-sports__strategy-section,
.page-blog-how-to-bet-efficiently-on-s88-win-sports__sports-section,
.page-blog-how-to-bet-efficiently-on-s88-win-sports__conclusion-section {
  padding: 80px 0;
}

/* Background color variations */
.page-blog-how-to-bet-efficiently-on-s88-win-sports__dark-bg {
  background-color: var(--background-color);
  color: var(--text-main-color);
}

.page-blog-how-to-bet-efficiently-on-s88-win-sports__light-bg {
  background-color: var(--deep-green-color);
  color: var(--text-main-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-how-to-bet-efficiently-on-s88-win-sports__main-title {
    font-size: clamp(2em, 5vw, 3em);
  }
}

@media (max-width: 768px) {
  .page-blog-how-to-bet-efficiently-on-s88-win-sports {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-how-to-bet-efficiently-on-s88-win-sports__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important;
  }

  .page-blog-how-to-bet-efficiently-on-s88-win-sports__main-title {
    font-size: clamp(1.8em, 7vw, 2.5em);
  }

  .page-blog-how-to-bet-efficiently-on-s88-win-sports__intro-text,
  .page-blog-how-to-bet-efficiently-on-s88-win-sports__paragraph {
    font-size: 1em;
  }

  .page-blog-how-to-bet-efficiently-on-s88-win-sports__section-title {
    font-size: 2em;
  }

  /* Image and Video Responsive */
  .page-blog-how-to-bet-efficiently-on-s88-win-sports img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-how-to-bet-efficiently-on-s88-win-sports__hero-image-wrapper,
  .page-blog-how-to-bet-efficiently-on-s88-win-sports__content-image,
  .page-blog-how-to-bet-efficiently-on-s88-win-sports__feature-icon {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Button Responsive */
  .page-blog-how-to-bet-efficiently-on-s88-win-sports__cta-button,
  .page-blog-how-to-bet-efficiently-on-s88-win-sports__btn-primary,
  .page-blog-how-to-bet-efficiently-on-s88-win-sports__btn-secondary,
  .page-blog-how-to-bet-efficiently-on-s88-win-sports a[class*="button"],
  .page-blog-how-to-bet-efficiently-on-s88-win-sports 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-how-to-bet-efficiently-on-s88-win-sports__cta-buttons,
  .page-blog-how-to-bet-efficiently-on-s88-win-sports__button-group,
  .page-blog-how-to-bet-efficiently-on-s88-win-sports__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-how-to-bet-efficiently-on-s88-win-sports__feature-grid,
  .page-blog-how-to-bet-efficiently-on-s88-win-sports__step-list,
  .page-blog-how-to-bet-efficiently-on-s88-win-sports__strategy-list,
  .page-blog-how-to-bet-efficiently-on-s88-win-sports__tips-grid,
  .page-blog-how-to-bet-efficiently-on-s88-win-sports__sports-list,
  .page-blog-how-to-bet-efficiently-on-s88-win-sports__support-content {
    grid-template-columns: 1fr;
  }

  .page-blog-how-to-bet-efficiently-on-s88-win-sports__card {
    padding: 20px;
  }

  .page-blog-how-to-bet-efficiently-on-s88-win-sports__faq-section {
    padding: 20px;
  }

  .page-blog-how-to-bet-efficiently-on-s88-win-sports__faq-item summary {
    padding: 15px;
    font-size: 1em;
  }

  .page-blog-how-to-bet-efficiently-on-s88-win-sports__faq-answer {
    padding: 10px 15px;
  }
}

@media (max-width: 480px) {
  .page-blog-how-to-bet-efficiently-on-s88-win-sports__main-title {
    font-size: clamp(1.5em, 8vw, 2em);
  }

  .page-blog-how-to-bet-efficiently-on-s88-win-sports__section-title {
    font-size: 1.8em;
  }

  .page-blog-how-to-bet-efficiently-on-s88-win-sports__cta-button {
    padding: 12px 20px;
    font-size: 1em;
  }
}