.page-blog-f13-bet-guide {
  font-family: 'Arial', sans-serif;
  color: var(--text-main, #FFF5E1); /* Default text color for dark sections */
  background-color: var(--background-color); /* From shared.css */
}

.page-blog-f13-bet-guide__dark-bg {
  background-color: var(--background, #B71C1C);
  color: var(--text-main, #FFF5E1);
}

.page-blog-f13-bet-guide__light-bg {
  background-color: #ffffff;
  color: #333333;
}

.page-blog-f13-bet-guide__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding for the first section */
  padding-bottom: 60px;
  overflow: hidden;
}

.page-blog-f13-bet-guide__hero-image-wrapper {
  width: 100%;
  max-height: 500px; /* Limit height to prevent excessive size on desktop */
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-blog-f13-bet-guide__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-blog-f13-bet-guide__hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 900px;
  padding: 20px;
  margin-top: -150px; /* Pull content up over the image for visual hierarchy */
  background: rgba(0, 0, 0, 0.6); /* Semi-transparent background for readability */
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  color: var(--text-main, #FFF5E1);
}

.page-blog-f13-bet-guide__main-title {
  font-size: clamp(2em, 5vw, 3.2em);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
  color: var(--gold, #F4D34D);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-blog-f13-bet-guide__hero-description {
  font-size: clamp(1em, 2vw, 1.2em);
  line-height: 1.6;
  margin-bottom: 30px;
  color: var(--text-main, #FFF5E1);
}

.page-blog-f13-bet-guide__section {
  padding: 60px 0;
}

.page-blog-f13-bet-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog-f13-bet-guide__section-title {
  font-size: clamp(1.8em, 4vw, 2.8em);
  font-weight: 700;
  margin-bottom: 40px;
  text-align: center;
  color: var(--gold, #F4D34D);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-blog-f13-bet-guide__introduction p,
.page-blog-f13-bet-guide__registration p,
.page-blog-f13-bet-guide__deposit p,
.page-blog-f13-bet-guide__withdrawal p,
.page-blog-f13-bet-guide__security p,
.page-blog-f13-bet-guide__tips p,
.page-blog-f13-bet-guide__conclusion p {
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 20px;
}

.page-blog-f13-bet-guide__content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.page-blog-f13-bet-guide__content-grid--reverse {
  grid-template-areas: "image text";
}

.page-blog-f13-bet-guide__content-grid--reverse .page-blog-f13-bet-guide__text-block {
  grid-area: text;
}

.page-blog-f13-bet-guide__content-grid--reverse .page-blog-f13-bet-guide__image-block {
  grid-area: image;
}

.page-blog-f13-bet-guide__text-block {
  text-align: left;
}

.page-blog-f13-bet-guide__image-block {
  text-align: center;
}

.page-blog-f13-bet-guide__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  min-width: 200px;
  min-height: 200px;
}

.page-blog-f13-bet-guide__subsection-title {
  font-size: clamp(1.4em, 3vw, 2em);
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 20px;
  color: var(--gold, #F4D34D);
}

.page-blog-f13-bet-guide__list {
  list-style-type: decimal;
  margin-left: 25px;
  margin-bottom: 20px;
}

.page-blog-f13-bet-guide__list--bullets {
  list-style-type: disc;
}

.page-blog-f13-bet-guide__list li {
  margin-bottom: 10px;
  line-height: 1.6;
  font-size: 1.05em;
}

.page-blog-f13-bet-guide__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1em;
  transition: all 0.3s ease;
  text-align: center;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-f13-bet-guide__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%);
  color: #7A0E0E;
  border: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-blog-f13-bet-guide__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  background: linear-gradient(180deg, #E6B800 0%, #FFD86A 100%);
}

.page-blog-f13-bet-guide__btn-secondary {
  background: #ffffff;
  color: #C91F17;
  border: 2px solid #C91F17;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.page-blog-f13-bet-guide__btn-secondary:hover {
  background: #f0f0f0;
  color: #E53935;
  border-color: #E53935;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* FAQ Section */
.page-blog-f13-bet-guide__faq-list {
  margin-top: 40px;
}

.page-blog-f13-bet-guide__faq-item {
  background-color: var(--card-bg, #D32F2F);
  border: 1px solid var(--border, #F2B544);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--text-main, #FFF5E1);
}

.page-blog-f13-bet-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.15em;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
  list-style: none; /* For details tag */
}

.page-blog-f13-bet-guide__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-f13-bet-guide__faq-question:hover {
  background-color: var(--deep-red, #7A0E0E);
}

.page-blog-f13-bet-guide__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: var(--gold, #F4D34D);
}

.page-blog-f13-bet-guide__faq-answer {
  padding: 0 20px 20px 20px;
  font-size: 1em;
  line-height: 1.6;
  color: var(--text-main, #FFF5E1);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.page-blog-f13-bet-guide__faq-item[open] .page-blog-f13-bet-guide__faq-answer {
  max-height: 1000px; /* Sufficiently large value */
  transition: max-height 0.5s ease-in;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-blog-f13-bet-guide__content-grid {
    grid-template-columns: 1fr;
  }
  .page-blog-f13-bet-guide__content-grid--reverse {
    grid-template-areas: unset;
  }
  .page-blog-f13-bet-guide__text-block, .page-blog-f13-bet-guide__image-block {
    grid-area: unset;
  }
  .page-blog-f13-bet-guide__hero-content {
    margin-top: -100px;
    padding: 15px;
  }
  .page-blog-f13-bet-guide__main-title {
    font-size: clamp(1.8em, 5vw, 2.5em);
  }
  .page-blog-f13-bet-guide__hero-description {
    font-size: clamp(0.9em, 2vw, 1.1em);
  }
}

@media (max-width: 768px) {
  .page-blog-f13-bet-guide {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-blog-f13-bet-guide__section {
    padding: 40px 0;
  }
  .page-blog-f13-bet-guide__container {
    padding: 0 15px;
  }
  .page-blog-f13-bet-guide__hero-section {
    padding-bottom: 40px;
  }
  .page-blog-f13-bet-guide__hero-image-wrapper {
    max-height: 300px;
  }
  .page-blog-f13-bet-guide__hero-content {
    margin-top: -80px;
    padding: 10px;
  }
  .page-blog-f13-bet-guide__section-title {
    font-size: clamp(1.5em, 5vw, 2.2em);
    margin-bottom: 30px;
  }
  .page-blog-f13-bet-guide__subsection-title {
    font-size: clamp(1.2em, 4vw, 1.7em);
  }
  .page-blog-f13-bet-guide__image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    box-sizing: border-box !important;
  }
  .page-blog-f13-bet-guide__section,
  .page-blog-f13-bet-guide__card,
  .page-blog-f13-bet-guide__container,
  .page-blog-f13-bet-guide__hero-section,
  .page-blog-f13-bet-guide__image-block,
  .page-blog-f13-bet-guide__text-block {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important; /* Ensure no overflow */
  }
  .page-blog-f13-bet-guide__hero-section {
    padding-top: 10px !important; /* body already handles --header-offset */
  }
  .page-blog-f13-bet-guide__cta-button,
  .page-blog-f13-bet-guide__btn-primary,
  .page-blog-f13-bet-guide__btn-secondary,
  .page-blog-f13-bet-guide a[class*="button"],
  .page-blog-f13-bet-guide 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-f13-bet-guide__cta-buttons,
  .page-blog-f13-bet-guide__button-group,
  .page-blog-f13-bet-guide__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-f13-bet-guide__cta-buttons {
    display: flex;
    flex-direction: column;
  }
  .page-blog-f13-bet-guide__faq-question {
    font-size: 1em;
    padding: 15px;
  }
  .page-blog-f13-bet-guide__faq-answer {
    padding: 0 15px 15px 15px;
  }
}

@media (max-width: 480px) {
  .page-blog-f13-bet-guide__hero-content {
    margin-top: -60px;
  }
  .page-blog-f13-bet-guide__main-title {
    font-size: clamp(1.5em, 6vw, 2em);
  }
  .page-blog-f13-bet-guide__hero-description {
    font-size: clamp(0.8em, 2.5vw, 1em);
  }
  .page-blog-f13-bet-guide__cta-button {
    font-size: 1em;
    padding: 12px 20px;
  }
}