/* style/blog-safe-online-betting.css */

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

/* General Page Styles */
.page-blog-safe-online-betting {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--baowin-text-main);
  background-color: var(--baowin-background);
  padding-top: 10px; /* Small top padding for the first section, body handles header offset */
}

.page-blog-safe-online-betting__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog-safe-online-betting__section-title {
  font-size: 2.5em;
  color: var(--baowin-text-main);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  line-height: 1.2;
}

.page-blog-safe-online-betting__sub-title {
  font-size: 1.8em;
  color: var(--baowin-text-main);
  margin-bottom: 20px;
  font-weight: 600;
}

.page-blog-safe-online-betting__paragraph,
.page-blog-safe-online-betting__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: var(--baowin-text-secondary);
}

.page-blog-safe-online-betting__text-center {
  text-align: center;
}

.page-blog-safe-online-betting__margin-top {
  margin-top: 20px;
}

.page-blog-safe-online-betting__margin-top-large {
  margin-top: 40px;
}

/* Card Styles */
.page-blog-safe-online-betting__card {
  background-color: var(--baowin-card-bg);
  border: 1px solid var(--baowin-border);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  color: var(--baowin-text-main);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-blog-safe-online-betting__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-safe-online-betting__card-title {
  font-size: 1.5em;
  color: var(--baowin-text-main);
  margin-top: 20px;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-blog-safe-online-betting__card-description {
  font-size: 1em;
  color: var(--baowin-text-secondary);
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Button Styles */
.page-blog-safe-online-betting__btn-primary,
.page-blog-safe-online-betting__btn-secondary,
.page-blog-safe-online-betting__btn-link {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-safe-online-betting__btn-primary {
  background: var(--baowin-button-gradient);
  color: #ffffff;
  border: none;
  box-shadow: 0 5px 15px rgba(34, 199, 104, 0.4);
}

.page-blog-safe-online-betting__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 7px 20px rgba(34, 199, 104, 0.6);
}

.page-blog-safe-online-betting__btn-secondary {
  background-color: transparent;
  color: var(--baowin-secondary-color);
  border: 2px solid var(--baowin-secondary-color);
}

.page-blog-safe-online-betting__btn-secondary:hover {
  background-color: var(--baowin-secondary-color);
  color: #ffffff;
}

.page-blog-safe-online-betting__btn-link {
  background-color: transparent;
  color: var(--baowin-secondary-color);
  border: 1px solid var(--baowin-secondary-color);
  padding: 8px 15px;
  font-size: 0.9em;
  border-radius: 5px;
}

.page-blog-safe-online-betting__btn-link:hover {
  background-color: var(--baowin-secondary-color);
  color: #ffffff;
}

.page-blog-safe-online-betting__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

/* Image Styles */
.page-blog-safe-online-betting img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.page-blog-safe-online-betting__feature-image {
  width: 100%;
  max-width: 300px;
  height: 200px;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-blog-safe-online-betting__step-image {
  width: 100%;
  max-width: 300px;
  height: 200px;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-blog-safe-online-betting__image-full-width {
  width: 100%;
  height: auto;
  margin-top: 20px;
}

/* Video Styles */
.page-blog-safe-online-betting__video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 30px;
}

.page-blog-safe-online-betting__video-link {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.page-blog-safe-online-betting__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

/* Hero Section */
.page-blog-safe-online-betting__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background-color: var(--baowin-background);
  text-align: center;
}

.page-blog-safe-online-betting__hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.page-blog-safe-online-betting__main-title {
  font-size: 3.2em;
  color: var(--baowin-text-main);
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
  max-width: 100%; /* Ensure H1 does not overflow on desktop */
}

.page-blog-safe-online-betting__description {
  font-size: 1.3em;
  color: var(--baowin-text-secondary);
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Features Section */
.page-blog-safe-online-betting__features-section {
  padding: 80px 0;
  background-color: var(--baowin-background);
}

.page-blog-safe-online-betting__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

/* How-To Section */
.page-blog-safe-online-betting__how-to-section {
  padding: 80px 0;
  background-color: var(--baowin-card-bg);
}

.page-blog-safe-online-betting__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

/* Security & Responsible Gaming Section */
.page-blog-safe-online-betting__security-responsible-gaming {
  padding: 80px 0;
  background-color: var(--baowin-background);
}

.page-blog-safe-online-betting__grid-two-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}

.page-blog-safe-online-betting__content-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Tips Section */
.page-blog-safe-online-betting__tips-section {
  padding: 80px 0;
  background-color: var(--baowin-card-bg);
}

.page-blog-safe-online-betting__tips-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-blog-safe-online-betting__list-item {
  background-color: var(--baowin-card-bg);
  border: 1px solid var(--baowin-border);
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-blog-safe-online-betting__list-title {
  font-size: 1.4em;
  color: var(--baowin-text-main);
  margin-bottom: 10px;
  font-weight: 600;
}

/* FAQ Section */
.page-blog-safe-online-betting__faq-section {
  padding: 80px 0;
  background-color: var(--baowin-background);
}

.page-blog-safe-online-betting__faq-list {
  margin-top: 40px;
}

.page-blog-safe-online-betting__faq-item {
  background-color: var(--baowin-card-bg);
  border: 1px solid var(--baowin-border);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--baowin-text-main);
}

.page-blog-safe-online-betting__faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: 600;
  color: var(--baowin-text-main);
  list-style: none; /* Remove default marker */
}

.page-blog-safe-online-betting__faq-item summary::-webkit-details-marker {
  display: none; /* Remove default marker for Webkit browsers */
}

.page-blog-safe-online-betting__faq-toggle {
  font-size: 1.5em;
  font-weight: bold;
  color: var(--baowin-secondary-color);
  transition: transform 0.3s ease;
}

.page-blog-safe-online-betting__faq-item[open] .page-blog-safe-online-betting__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-safe-online-betting__faq-answer {
  padding: 0 25px 20px;
  font-size: 1.05em;
  color: var(--baowin-text-secondary);
}

/* Final CTA Section */
.page-blog-safe-online-betting__cta-final {
  padding: 80px 0;
  background-color: var(--baowin-background);
}

/* Color Contrast Fixes (Intelligent Selection) */
.page-blog-safe-online-betting__dark-bg {
  background-color: var(--baowin-background);
  color: var(--baowin-text-main);
}

.page-blog-safe-online-betting__light-bg {
  background-color: #f8f9fa; /* Slightly lighter for contrast in certain sections */
  color: #333333; /* Dark text for light background */
}

.page-blog-safe-online-betting__light-bg .page-blog-safe-online-betting__section-title,
.page-blog-safe-online-betting__light-bg .page-blog-safe-online-betting__sub-title,
.page-blog-safe-online-betting__light-bg .page-blog-safe-online-betting__card-title,
.page-blog-safe-online-betting__light-bg .page-blog-safe-online-betting__list-title {
  color: #000000; /* Ensure black for titles on light bg */
}

.page-blog-safe-online-betting__light-bg .page-blog-safe-online-betting__paragraph,
.page-blog-safe-online-betting__light-bg .page-blog-safe-online-betting__text-block,
.page-blog-safe-online-betting__light-bg .page-blog-safe-online-betting__card-description,
.page-blog-safe-online-betting__light-bg .page-blog-safe-online-betting__faq-answer {
  color: #333333; /* Ensure dark grey for body text on light bg */
}

.page-blog-safe-online-betting__light-bg .page-blog-safe-online-betting__card {
  background-color: #ffffff;
  border-color: #e0e0e0;
}

.page-blog-safe-online-betting__light-bg .page-blog-safe-online-betting__btn-secondary {
  color: var(--baowin-primary-color);
  border-color: var(--baowin-primary-color);
}

.page-blog-safe-online-betting__light-bg .page-blog-safe-online-betting__btn-secondary:hover {
  background-color: var(--baowin-primary-color);
  color: #ffffff;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-safe-online-betting__main-title {
    font-size: 2.8em;
  }
  .page-blog-safe-online-betting__section-title {
    font-size: 2em;
  }
  .page-blog-safe-online-betting__grid-two-columns {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  /* All images */
  .page-blog-safe-online-betting img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  /* All image containers */
  .page-blog-safe-online-betting__feature-card,
  .page-blog-safe-online-betting__step-card,
  .page-blog-safe-online-betting__content-block {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* All videos */
  .page-blog-safe-online-betting video,
  .page-blog-safe-online-betting__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  /* All video containers */
  .page-blog-safe-online-betting__video-wrapper,
  .page-blog-safe-online-betting__video-link {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-blog-safe-online-betting__hero-section {
    padding-top: 10px !important;
  }

  /* All buttons */
  .page-blog-safe-online-betting__cta-button,
  .page-blog-safe-online-betting__btn-primary,
  .page-blog-safe-online-betting__btn-secondary,
  .page-blog-safe-online-betting a[class*="button"],
  .page-blog-safe-online-betting 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;
  }

  /* Button containers */
  .page-blog-safe-online-betting__cta-buttons,
  .page-blog-safe-online-betting__button-group,
  .page-blog-safe-online-betting__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-direction: column !important;
    gap: 15px;
  }

  .page-blog-safe-online-betting {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-safe-online-betting__main-title {
    font-size: 2.2em;
  }

  .page-blog-safe-online-betting__section-title {
    font-size: 1.8em;
  }

  .page-blog-safe-online-betting__hero-section,
  .page-blog-safe-online-betting__features-section,
  .page-blog-safe-online-betting__how-to-section,
  .page-blog-safe-online-betting__security-responsible-gaming,
  .page-blog-safe-online-betting__tips-section,
  .page-blog-safe-online-betting__faq-section,
  .page-blog-safe-online-betting__cta-final {
    padding: 40px 0;
  }

  .page-blog-safe-online-betting__container {
    padding: 0 15px;
  }

  .page-blog-safe-online-betting__feature-grid,
  .page-blog-safe-online-betting__steps-grid {
    grid-template-columns: 1fr;
  }

  .page-blog-safe-online-betting__feature-image,
  .page-blog-safe-online-betting__step-image {
    max-width: 100%;
    width: 100%;
    height: auto;
  }

  .page-blog-safe-online-betting__faq-item summary {
    font-size: 1.1em;
    padding: 15px 20px;
  }

  .page-blog-safe-online-betting__faq-answer {
    padding: 0 20px 15px;
  }
}