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

/* Custom Colors */
:root {
  --background: #08160F;
  --card-bg: #11271B;
  --text-main: #F2FFF6;
  --text-secondary: #A7D9B8;
  --border: #2E7A4E;
  --glow: #57E38D;
  --gold: #F2C14E;
  --divider: #1E3A2A;
  --deep-green: #0A4B2C;
}

/* Base styles for the page */
.page-blog-safe-online-betting {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-main); /* Default text color from custom palette */
  background-color: var(--background); /* Default background from custom palette */
}

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

.page-blog-safe-online-betting__hero-image-wrapper {
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  position: relative;
  overflow: hidden;
}

.page-blog-safe-online-betting__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-width: 200px;
  min-height: 200px;
}

.page-blog-safe-online-betting__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  width: 100%;
  text-align: center;
  padding: 40px 20px;
  box-sizing: border-box;
  background-color: var(--card-bg); /* Use Card BG for content overlay */
  border-radius: 8px;
  margin-top: -80px; /* Overlap with hero image slightly for visual effect */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-safe-online-betting__main-title {
  font-size: clamp(2em, 3.5vw, 2.8em);
  font-weight: bold;
  color: var(--text-main);
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-blog-safe-online-betting__description {
  font-size: 1.1em;
  color: var(--text-secondary);
  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__cta-buttons--center {
  margin-top: 30px;
}

.page-blog-safe-online-betting__btn-primary,
.page-blog-safe-online-betting__btn-secondary {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-safe-online-betting__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  border: none;
}

.page-blog-safe-online-betting__btn-primary:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.page-blog-safe-online-betting__btn-secondary {
  background: var(--card-bg);
  color: var(--text-main);
  border: 2px solid var(--border);
}

.page-blog-safe-online-betting__btn-secondary:hover {
  transform: translateY(-2px);
  background-color: rgba(255, 255, 255, 0.1);
}

/* Content Sections */
.page-blog-safe-online-betting__content-section {
  padding: 60px 20px;
  box-sizing: border-box;
}

.page-blog-safe-online-betting__dark-bg {
  background-color: var(--background);
  color: var(--text-main);
}

.page-blog-safe-online-betting__light-bg {
  background-color: var(--card-bg);
  color: var(--text-main);
}

.page-blog-safe-online-betting__container {
  max-width: 1000px;
  margin: 0 auto;
}

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

.page-blog-safe-online-betting__sub-title {
  font-size: 1.6em;
  color: var(--text-main);
  margin-top: 40px;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-blog-safe-online-betting p {
  margin-bottom: 20px;
  color: var(--text-secondary);
  font-size: 1.05em;
}

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

.page-blog-safe-online-betting a {
  color: var(--glow);
  text-decoration: underline;
}

.page-blog-safe-online-betting a:hover {
  color: var(--gold);
}

.page-blog-safe-online-betting__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: var(--text-secondary);
}

.page-blog-safe-online-betting__list-item {
  margin-bottom: 10px;
  color: var(--text-secondary);
}

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

.page-blog-safe-online-betting__image-wrapper {
  text-align: center;
  margin: 30px 0;
}

.page-blog-safe-online-betting__content-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  display: block;
  margin: 0 auto;
  min-width: 200px;
  min-height: 200px;
}

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

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

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

.page-blog-safe-online-betting__faq-question:hover {
  background-color: rgba(0, 0, 0, 0.2);
}

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

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

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

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-safe-online-betting__hero-content {
    margin-top: -60px;
    padding: 30px 15px;
  }

  .page-blog-safe-online-betting__main-title {
    font-size: clamp(1.8em, 4vw, 2.5em);
  }

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

  .page-blog-safe-online-betting__sub-title {
    font-size: 1.4em;
  }
}

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

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

  .page-blog-safe-online-betting__hero-content {
    margin-top: -40px;
    padding: 25px 15px;
  }

  .page-blog-safe-online-betting__main-title {
    font-size: clamp(1.5em, 5vw, 2em);
    margin-bottom: 15px;
  }

  .page-blog-safe-online-betting__description {
    font-size: 1em;
    margin-bottom: 25px;
  }

  .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;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  
  .page-blog-safe-online-betting__content-section {
    padding: 40px 15px;
  }

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

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

  .page-blog-safe-online-betting p,
  .page-blog-safe-online-betting__list-item {
    font-size: 0.95em;
  }

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

  .page-blog-safe-online-betting__image-wrapper,
  .page-blog-safe-online-betting__container {
    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 {
    padding: 15px 20px;
    font-size: 1em;
  }

  .page-blog-safe-online-betting__faq-answer {
    padding: 0 20px 15px;
    font-size: 0.95em;
  }
  
  .page-blog-safe-online-betting__video-section {
    padding-top: 10px !important;
  }
}