/* style/blog-okbet-casino-games-guide.css */
/* body already handles padding-top: var(--header-offset); page must not use this variable again for top spacing */
.page-blog-okbet-casino-games-guide {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #FFF6D6; /* Text Main on dark background */
  background-color: var(--background-color, #0A0A0A); /* Ensure dark background */
  padding-top: 0; /* Body padding-top handles header offset */
}

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

/* Hero Section */
.page-blog-okbet-casino-games-guide__hero-section {
  position: relative;
  display: flex;
  flex-direction: column; /* Image on top, content below */
  align-items: center;
  justify-content: center;
  padding: 10px 0 60px 0; /* Small top padding, larger bottom for separation */
  background-color: #0A0A0A; /* Ensure consistent dark background */
}

.page-blog-okbet-casino-games-guide__hero-image-wrapper {
  width: 100%;
  max-width: 1200px; /* Constrain image width */
  margin-bottom: 30px; /* Space between image and content */
}

.page-blog-okbet-casino-games-guide__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.page-blog-okbet-casino-games-guide__hero-content {
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
}

.page-blog-okbet-casino-games-guide__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive H1 font size */
  font-weight: 700;
  color: #FFD36B; /* Glow color for main title */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-blog-okbet-casino-games-guide__intro-text {
  font-size: 1.2rem;
  color: #FFF6D6; /* Text Main */
  margin-bottom: 30px;
}

/* General Section Styling */
.page-blog-okbet-casino-games-guide__section {
  padding: 60px 0;
  background-color: #0A0A0A; /* Consistent dark background */
}

.page-blog-okbet-casino-games-guide__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 600;
  color: #F2C14E; /* Main color for section titles */
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.3;
}

.page-blog-okbet-casino-games-guide__sub-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 500;
  color: #FFD36B; /* Auxiliary color for sub-titles */
  margin-top: 30px;
  margin-bottom: 20px;
  line-height: 1.4;
}

.page-blog-okbet-casino-games-guide__paragraph {
  font-size: 1rem;
  color: #FFF6D6; /* Text Main */
  margin-bottom: 15px;
}

.page-blog-okbet-casino-games-guide__image {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  min-width: 200px; /* Minimum image size for content images on desktop */
  min-height: 200px; /* Minimum image size for content images on desktop */
}

.page-blog-okbet-casino-games-guide__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #FFF6D6; /* Text Main */
}

.page-blog-okbet-casino-games-guide__list-item {
  margin-bottom: 10px;
  font-size: 1rem;
}

/* Call to Action Buttons */
.page-blog-okbet-casino-games-guide__cta-buttons {
  display: flex;
  flex-wrap: wrap; /* Allow wrapping on small screens */
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.page-blog-okbet-casino-games-guide__btn-primary,
.page-blog-okbet-casino-games-guide__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
  text-align: center;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%; /* Ensure responsiveness */
  width: auto; /* Default width, will be overridden by mobile if needed */
}

.page-blog-okbet-casino-games-guide__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #ffffff; /* White text on gold gradient, as per prompt */
  border: 2px solid transparent;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-blog-okbet-casino-games-guide__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.5);
  filter: brightness(1.1);
}

.page-blog-okbet-casino-games-guide__btn-secondary {
  background: #111111; /* Card BG color */
  color: #F2C14E; /* Main color */
  border: 2px solid #3A2A12; /* Border color */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-blog-okbet-casino-games-guide__btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.5);
  background: #F2C14E;
  color: #111111;
}

/* FAQ Section */
.page-blog-okbet-casino-games-guide__faq {
  padding-bottom: 80px;
}

.page-blog-okbet-casino-games-guide__faq-item {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.page-blog-okbet-casino-games-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background-color: #111111; /* Card BG */
  color: #FFF6D6; /* Text Main */
  font-weight: 600;
  font-size: 1.1rem;
  transition: background-color 0.3s ease;
}

.page-blog-okbet-casino-games-guide__faq-question:hover {
  background-color: #1a1a1a;
}

.page-blog-okbet-casino-games-guide__faq-title {
  margin: 0;
  font-size: 1.1rem;
  color: #FFF6D6; /* Text Main */
}

.page-blog-okbet-casino-games-guide__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #F2C14E; /* Main color */
}

.page-blog-okbet-casino-games-guide__faq-item.active .page-blog-okbet-casino-games-guide__faq-toggle {
  transform: rotate(45deg); /* Plus sign rotates to form an X */
  color: #FFD36B; /* Auxiliary color when active */
}

.page-blog-okbet-casino-games-guide__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #FFF6D6; /* Text Main */
}

.page-blog-okbet-casino-games-guide__faq-item.active .page-blog-okbet-casino-games-guide__faq-answer {
  max-height: 1000px !important; /* Important for overriding */
  padding: 15px 25px;
}

.page-blog-okbet-casino-games-guide__faq-answer .page-blog-okbet-casino-games-guide__paragraph {
  margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-blog-okbet-casino-games-guide__main-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }

  .page-blog-okbet-casino-games-guide__section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  }

  .page-blog-okbet-casino-games-guide__sub-title {
    font-size: clamp(1.3rem, 2.5vw, 2rem);
  }

  .page-blog-okbet-casino-games-guide__intro-text {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .page-blog-okbet-casino-games-guide__hero-section {
    padding-top: 10px !important; /* Small top padding for mobile, to avoid double header offset */
    padding-bottom: 40px;
  }

  .page-blog-okbet-casino-games-guide__section {
    padding: 40px 0;
  }

  .page-blog-okbet-casino-games-guide__container {
    padding: 0 15px; /* Smaller padding on mobile */
  }

  /* Images responsive */
  .page-blog-okbet-casino-games-guide img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    min-width: unset; /* Allow images to scale down */
    min-height: unset;
  }
  
  /* All containers with images or content */
  .page-blog-okbet-casino-games-guide__section,
  .page-blog-okbet-casino-games-guide__card,
  .page-blog-okbet-casino-games-guide__container,
  .page-blog-okbet-casino-games-guide__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Buttons responsive */
  .page-blog-okbet-casino-games-guide__cta-buttons {
    flex-direction: column; /* Stack buttons vertically */
    gap: 15px;
  }

  .page-blog-okbet-casino-games-guide__btn-primary,
  .page-blog-okbet-casino-games-guide__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    padding: 12px 20px;
    font-size: 1rem;
  }

  .page-blog-okbet-casino-games-guide__faq-question {
    padding: 15px 20px;
    font-size: 1rem;
  }

  .page-blog-okbet-casino-games-guide__faq-title {
    font-size: 1rem;
  }

  .page-blog-okbet-casino-games-guide__faq-answer {
    padding: 0 20px;
  }

  .page-blog-okbet-casino-games-guide__faq-item.active .page-blog-okbet-casino-games-guide__faq-answer {
    padding: 10px 20px;
  }
  
  .page-blog-okbet-casino-games-guide p,
  .page-blog-okbet-casino-games-guide li {
    font-size: 0.95rem;
  }
}