/* style/blog-okbet-betting-strategy.css */

/* Variables for colors */
:root {
  --okbet-primary-color: #F2C14E;
  --okbet-secondary-color: #FFD36B;
  --okbet-button-gradient: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  --okbet-card-bg: #111111;
  --okbet-background: #0A0A0A;
  --okbet-text-main: #FFF6D6;
  --okbet-border-color: #3A2A12;
  --okbet-glow-color: #FFD36B;
}

/* Base styles for the page content, assuming a dark body background from shared.css */
.page-blog-okbet-betting-strategy {
  font-family: Arial, sans-serif;
  color: var(--okbet-text-main); /* Light text for dark background */
  background-color: var(--okbet-background);
  line-height: 1.6;
  padding-bottom: 50px; /* Ensure space above footer */
}

.page-blog-okbet-betting-strategy__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog-okbet-betting-strategy__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Decorative top padding, body handles --header-offset */
  padding-bottom: 60px;
  background-color: var(--okbet-background);
}

.page-blog-okbet-betting-strategy__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.page-blog-okbet-betting-strategy__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-blog-okbet-betting-strategy__hero-content {
  position: relative;
  text-align: center;
  padding: 40px 20px;
  max-width: 900px;
  margin-top: -80px; /* Overlap slightly for visual effect */
  background: var(--okbet-card-bg);
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
  z-index: 10;
  border: 1px solid var(--okbet-border-color);
}

.page-blog-okbet-betting-strategy__hero-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--okbet-secondary-color);
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.5px;
}

.page-blog-okbet-betting-strategy__hero-description {
  font-size: 1.1rem;
  color: var(--okbet-text-main);
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-okbet-betting-strategy__hero-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-blog-okbet-betting-strategy__btn-primary,
.page-blog-okbet-betting-strategy__btn-secondary {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-okbet-betting-strategy__btn-primary {
  background: var(--okbet-button-gradient);
  color: #ffffff;
  border: 2px solid transparent;
  box-shadow: 0 4px 10px rgba(255, 211, 107, 0.3);
}

.page-blog-okbet-betting-strategy__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(255, 211, 107, 0.5);
}

.page-blog-okbet-betting-strategy__btn-secondary {
  background: transparent;
  color: var(--okbet-secondary-color);
  border: 2px solid var(--okbet-secondary-color);
}

.page-blog-okbet-betting-strategy__btn-secondary:hover {
  background: rgba(255, 211, 107, 0.1);
  transform: translateY(-3px);
}

.page-blog-okbet-betting-strategy__introduction-section,
.page-blog-okbet-betting-strategy__strategies-section,
.page-blog-okbet-betting-strategy__advanced-techniques-section,
.page-blog-okbet-betting-strategy__pitfalls-section,
.page-blog-okbet-betting-strategy__responsible-gaming-section,
.page-blog-okbet-betting-strategy__maximize-experience-section,
.page-blog-okbet-betting-strategy__faq-section,
.page-blog-okbet-betting-strategy__conclusion-section {
  padding: 60px 0;
  background-color: var(--okbet-background);
}

.page-blog-okbet-betting-strategy__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--okbet-primary-color);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  position: relative;
  padding-bottom: 15px;
}

.page-blog-okbet-betting-strategy__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--okbet-secondary-color);
  border-radius: 2px;
}

.page-blog-okbet-betting-strategy__sub-title {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--okbet-secondary-color);
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-blog-okbet-betting-strategy__text-block {
  font-size: 1.05rem;
  color: var(--okbet-text-main);
  margin-bottom: 20px;
  line-height: 1.7;
}

.page-blog-okbet-betting-strategy__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: var(--okbet-text-main);
}

.page-blog-okbet-betting-strategy__list li {
  margin-bottom: 10px;
  font-size: 1.05rem;
  line-height: 1.7;
}

.page-blog-okbet-betting-strategy__list li strong {
  color: var(--okbet-primary-color);
}

.page-blog-okbet-betting-strategy__content-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  max-width: 800px; /* Recommended size for content images */
}

.page-blog-okbet-betting-strategy__responsible-gaming-cta,
.page-blog-okbet-betting-strategy__promo-cta,
.page-blog-okbet-betting-strategy__download-cta,
.page-blog-okbet-betting-strategy__support-cta {
  margin-top: 30px;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-okbet-betting-strategy__login-register-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

/* FAQ Section */
.page-blog-okbet-betting-strategy__faq-section {
  background-color: var(--okbet-card-bg);
  padding: 80px 0;
}

.page-blog-okbet-betting-strategy__faq-item {
  background-color: #1a1a1a;
  border: 1px solid var(--okbet-border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-blog-okbet-betting-strategy__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.15rem;
  font-weight: bold;
  color: var(--okbet-primary-color);
  background-color: #1a1a1a;
  transition: background-color 0.3s ease;
}

.page-blog-okbet-betting-strategy__faq-question:hover {
  background-color: #222222;
}

.page-blog-okbet-betting-strategy__faq-toggle {
  font-size: 1.8rem;
  line-height: 1;
  transition: transform 0.3s ease;
  color: var(--okbet-secondary-color);
}

.page-blog-okbet-betting-strategy__faq-item.active .page-blog-okbet-betting-strategy__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-okbet-betting-strategy__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: var(--okbet-text-main);
  font-size: 1rem;
  line-height: 1.7;
}

.page-blog-okbet-betting-strategy__faq-item.active .page-blog-okbet-betting-strategy__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 15px 25px 25px;
}

.page-blog-okbet-betting-strategy__faq-answer p {
  margin-bottom: 0;
}

.page-blog-okbet-betting-strategy__conclusion-section {
  text-align: center;
}

.page-blog-okbet-betting-strategy__conclusion-cta {
  margin-top: 40px;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
  .page-blog-okbet-betting-strategy {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-okbet-betting-strategy__hero-content {
    margin-top: -50px;
    padding: 30px 15px;
  }

  .page-blog-okbet-betting-strategy__hero-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  .page-blog-okbet-betting-strategy__hero-description {
    font-size: 1rem;
  }

  .page-blog-okbet-betting-strategy__hero-cta-buttons,
  .page-blog-okbet-betting-strategy__login-register-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-blog-okbet-betting-strategy__btn-primary,
  .page-blog-okbet-betting-strategy__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 15px;
    font-size: 0.95rem;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-blog-okbet-betting-strategy__section-title {
    font-size: clamp(1.5rem, 5vw, 2.2rem);
    margin-bottom: 30px;
  }

  .page-blog-okbet-betting-strategy__sub-title {
    font-size: clamp(1.2rem, 4vw, 1.6rem);
    margin-top: 30px;
    margin-bottom: 15px;
  }

  .page-blog-okbet-betting-strategy__introduction-section,
  .page-blog-okbet-betting-strategy__strategies-section,
  .page-blog-okbet-betting-strategy__advanced-techniques-section,
  .page-blog-okbet-betting-strategy__pitfalls-section,
  .page-blog-okbet-betting-strategy__responsible-gaming-section,
  .page-blog-okbet-betting-strategy__maximize-experience-section,
  .page-blog-okbet-betting-strategy__faq-section,
  .page-blog-okbet-betting-strategy__conclusion-section {
    padding: 40px 0;
  }

  /* Mobile image adaptation */
  .page-blog-okbet-betting-strategy img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block;
  }

  .page-blog-okbet-betting-strategy__hero-image-wrapper,
  .page-blog-okbet-betting-strategy__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Ensure FAQ items and content blocks fit */
  .page-blog-okbet-betting-strategy__faq-item {
    margin-left: 0;
    margin-right: 0;
  }

  .page-blog-okbet-betting-strategy__faq-question,
  .page-blog-okbet-betting-strategy__faq-answer {
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-okbet-betting-strategy__faq-item.active .page-blog-okbet-betting-strategy__faq-answer {
    padding: 15px 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-blog-okbet-betting-strategy__hero-content {
    margin-top: -30px;
  }
  .page-blog-okbet-betting-strategy__hero-title {
    font-size: clamp(1.6rem, 8vw, 2.2rem);
  }
}