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

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

/* Base styles for the page content, considering dark body background */
.page-blog-safe-online-betting {
  background-color: var(--page-bg);
  color: var(--text-main); /* Light text for dark background */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  padding-bottom: 40px;
}

/* Hero Section */
.page-blog-safe-online-betting__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0; /* Small top padding, larger bottom padding */
  overflow: hidden;
}

.page-blog-safe-online-betting__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 600px; /* Limit hero image height */
}

.page-blog-safe-online-betting__hero-content {
  max-width: 900px;
  text-align: center;
  padding: 40px 20px;
  z-index: 1;
  margin-top: -100px; /* Pull content up slightly over the bottom of the image for visual flow */
  background-color: var(--card-bg);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-color);
}

.page-blog-safe-online-betting__hero-title {
  color: var(--gold-color);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  max-width: 100%; /* Ensure H1 doesn't overflow */
}

.page-blog-safe-online-betting__hero-description {
  color: var(--text-secondary);
  font-size: 1.1em;
  margin-bottom: 30px;
}

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

.page-blog-safe-online-betting__btn-primary,
.page-blog-safe-online-betting__btn-secondary {
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  display: inline-block;
  max-width: 100%; /* Button responsiveness */
  box-sizing: border-box;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word;
  text-align: center;
}

.page-blog-safe-online-betting__btn-primary {
  background: var(--btn-gradient);
  color: #ffffff; /* White text for contrast */
  border: none;
  box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-blog-safe-online-betting__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
}

.page-blog-safe-online-betting__btn-secondary {
  background-color: transparent;
  color: var(--text-main); /* Light text for dark background */
  border: 2px solid var(--primary-color);
}

.page-blog-safe-online-betting__btn-secondary:hover {
  background-color: var(--primary-color);
  color: #ffffff;
  transform: translateY(-2px);
}

.page-blog-safe-online-betting__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  color: var(--text-main); /* Ensure content text is light */
}

.page-blog-safe-online-betting__section-title {
  color: var(--gold-color);
  font-size: 2.2em;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
  padding-top: 20px;
}

.page-blog-safe-online-betting__sub-title {
  color: var(--primary-color);
  font-size: 1.8em;
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-blog-safe-online-betting__small-title {
  color: var(--text-main);
  font-size: 1.3em;
  font-weight: 500;
  margin-top: 20px;
  margin-bottom: 10px;
}

.page-blog-safe-online-betting__paragraph {
  margin-bottom: 15px;
  color: var(--text-secondary);
}

.page-blog-safe-online-betting__paragraph strong {
  color: var(--text-main);
}

.page-blog-safe-online-betting__feature-block {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 60px;
  background-color: var(--card-bg);
  padding: 30px;
  border-radius: 15px;
  border: 1px solid var(--border-color);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.page-blog-safe-online-betting__feature-block--reverse {
  flex-direction: row-reverse;
}

.page-blog-safe-online-betting__feature-image {
  flex: 1;
  min-width: 200px; /* Enforce minimum size */
  max-width: 50%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  display: block;
}

.page-blog-safe-online-betting__feature-text {
  flex: 1;
}

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

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

.page-blog-safe-online-betting__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  color: var(--text-main);
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
  list-style: none; /* For <details> summary */
}

.page-blog-safe-online-betting__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-safe-online-betting__faq-question:hover {
  background-color: var(--deep-green);
}

.page-blog-safe-online-betting__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: var(--primary-color);
}

.page-blog-safe-online-betting__faq-answer {
  padding: 0 20px 20px 20px;
  color: var(--text-secondary);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out;
}

.page-blog-safe-online-betting__faq-item[open] .page-blog-safe-online-betting__faq-answer {
  max-height: 1000px; /* Sufficiently large value */
}

.page-blog-safe-online-betting__faq-item[open] .page-blog-safe-online-betting__faq-question {
  background-color: var(--deep-green);
}

.page-blog-safe-online-betting__cta-wrapper {
  text-align: center;
  margin-top: 50px;
  padding: 20px;
}

.page-blog-safe-online-betting__btn-primary--large {
  font-size: 1.25em;
  padding: 18px 40px;
}

/* Ensure all images and containers are responsive and don't overflow */
.page-blog-safe-online-betting img {
  max-width: 100%;
  height: auto;
  display: block;
}

.page-blog-safe-online-betting__section,
.page-blog-safe-online-betting__container,
.page-blog-safe-online-betting__hero-section,
.page-blog-safe-online-betting__hero-content,
.page-blog-safe-online-betting__feature-block,
.page-blog-safe-online-betting__faq-list,
.page-blog-safe-online-betting__faq-item {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

/* Media Queries for Responsiveness */
@media (max-width: 992px) {
  .page-blog-safe-online-betting__hero-content {
    margin-top: -80px;
    padding: 30px 15px;
  }

  .page-blog-safe-online-betting__hero-title {
    font-size: 2.5em;
  }

  .page-blog-safe-online-betting__feature-block {
    flex-direction: column;
    gap: 30px;
    padding: 20px;
  }

  .page-blog-safe-online-betting__feature-block--reverse {
    flex-direction: column;
  }

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

@media (max-width: 768px) {
  .page-blog-safe-online-betting {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-safe-online-betting__hero-section {
    padding: 10px 0 40px 0;
  }

  .page-blog-safe-online-betting__hero-content {
    margin-top: -60px;
    padding: 25px 15px;
    border-radius: 10px;
  }

  .page-blog-safe-online-betting__hero-title {
    font-size: 2em;
    margin-bottom: 15px;
  }

  .page-blog-safe-online-betting__hero-description {
    font-size: 1em;
    margin-bottom: 20px;
  }

  .page-blog-safe-online-betting__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-blog-safe-online-betting__btn-primary,
  .page-blog-safe-online-betting__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
  }

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

  .page-blog-safe-online-betting__sub-title {
    font-size: 1.5em;
    margin-top: 25px;
  }

  .page-blog-safe-online-betting__small-title {
    font-size: 1.1em;
    margin-top: 15px;
  }

  .page-blog-safe-online-betting__feature-block {
    gap: 20px;
    padding: 15px;
  }

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

  .page-blog-safe-online-betting img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-blog-safe-online-betting__section,
  .page-blog-safe-online-betting__card,
  .page-blog-safe-online-betting__container,
  .page-blog-safe-online-betting__hero-section,
  .page-blog-safe-online-betting__hero-content,
  .page-blog-safe-online-betting__feature-block,
  .page-blog-safe-online-betting__faq-list,
  .page-blog-safe-online-betting__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-blog-safe-online-betting__faq-question {
    font-size: 1em;
    padding: 15px;
  }

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

  .page-blog-safe-online-betting__cta-wrapper {
    padding: 15px;
  }

  .page-blog-safe-online-betting__btn-primary--large {
    font-size: 1.1em;
    padding: 15px 30px;
  }
}