/* style/blog-tabet-betting-guide.css */

/* Base styles for the page content, ensuring light text on dark background */
.page-blog-tabet-betting-guide {
  background-color: #08160F; /* Background */
  color: #F2FFF6; /* Text Main */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  font-size: 16px;
}

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

/* Hero Section */
.page-blog-tabet-betting-guide__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column; /* Image on top, text below */
  align-items: center;
  justify-content: center;
  padding: 10px 0 60px 0; /* Small top padding, more bottom padding */
  text-align: center;
  background-color: #08160F;
}

.page-blog-tabet-betting-guide__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  margin-bottom: 30px;
}

.page-blog-tabet-betting-guide__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
}

.page-blog-tabet-betting-guide__hero-content {
  max-width: 900px;
  padding: 0 20px;
}

.page-blog-tabet-betting-guide__main-title {
  font-size: clamp(2.5rem, 4vw, 3.2rem); /* Use clamp for H1 font-size */
  font-weight: 700;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.page-blog-tabet-betting-guide__description {
  font-size: 1.1rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
}

/* General Section Styles */
.page-blog-tabet-betting-guide__section {
  padding: 60px 0;
  background-color: #08160F;
  color: #F2FFF6;
}

.page-blog-tabet-betting-guide__section:nth-of-type(even) {
  background-color: #11271B; /* Card BG for alternating sections */
}

.page-blog-tabet-betting-guide__heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: #F2FFF6; /* Text Main */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-blog-tabet-betting-guide__heading::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #11A84E; /* Main Color */
  border-radius: 2px;
}

.page-blog-tabet-betting-guide__sub-heading {
  font-size: 1.8rem;
  font-weight: 600;
  color: #F2FFF6; /* Text Main */
  margin-top: 25px;
  margin-bottom: 15px;
}

.page-blog-tabet-betting-guide__text-block {
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
}

.page-blog-tabet-betting-guide__image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  margin: 30px auto;
  max-width: 800px;
}

/* Buttons */
.page-blog-tabet-betting-guide__btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-tabet-betting-guide__btn--primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button color */
  color: #F2FFF6; /* Text Main */
  border: none;
  box-shadow: 0 5px 15px rgba(17, 168, 78, 0.4);
}

.page-blog-tabet-betting-guide__btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(17, 168, 78, 0.6);
}

.page-blog-tabet-betting-guide__btn--secondary {
  background-color: transparent;
  color: #11A84E; /* Main Color */
  border: 2px solid #11A84E; /* Main Color */
  margin-left: 20px;
}

.page-blog-tabet-betting-guide__btn--secondary:hover {
  background-color: #11A84E;
  color: #F2FFF6;
  transform: translateY(-3px);
}

.page-blog-tabet-betting-guide__btn--small {
  padding: 10px 20px;
  font-size: 0.95rem;
  border-radius: 30px;
  margin-top: 10px;
  margin-right: 10px; /* For multiple small buttons */
}

.page-blog-tabet-betting-guide__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

/* List Styles */
.page-blog-tabet-betting-guide__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-blog-tabet-betting-guide__list-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-blog-tabet-betting-guide__list-item p {
  margin-bottom: 0;
}

/* Feature Grid */
.page-blog-tabet-betting-guide__feature-grid,
.page-blog-tabet-betting-guide__sports-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-tabet-betting-guide__feature-card,
.page-blog-tabet-betting-guide__sport-card {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease;
}

.page-blog-tabet-betting-guide__feature-card:hover,
.page-blog-tabet-betting-guide__sport-card:hover {
  transform: translateY(-8px);
}

.page-blog-tabet-betting-guide__feature-icon,
.page-blog-tabet-betting-guide__sport-image {
  width: 100%;
  height: auto;
  max-width: 400px; /* Ensure images are not too wide */
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* Step List */
.page-blog-tabet-betting-guide__step-list {
  counter-reset: step-counter;
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-blog-tabet-betting-guide__step-item {
  position: relative;
  padding-left: 70px;
  margin-bottom: 30px;
  min-height: 50px;
}

.page-blog-tabet-betting-guide__step-item::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 50px;
  height: 50px;
  background: #11A84E; /* Main Color */
  color: #F2FFF6; /* Text Main */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  box-shadow: 0 2px 10px rgba(17, 168, 78, 0.4);
}

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

.page-blog-tabet-betting-guide__faq-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-tabet-betting-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.15rem;
  font-weight: 600;
  color: #F2FFF6; /* Text Main */
  cursor: pointer;
  background-color: #11271B;
  transition: background-color 0.3s ease;
}

.page-blog-tabet-betting-guide__faq-question:hover {
  background-color: #0A4B2C; /* Deep Green */
}

.page-blog-tabet-betting-guide__faq-toggle {
  font-size: 1.8rem;
  line-height: 1;
  margin-left: 15px;
  color: #57E38D; /* Glow */
}

.page-blog-tabet-betting-guide__faq-item[open] > .page-blog-tabet-betting-guide__faq-question .page-blog-tabet-betting-guide__faq-toggle {
  content: '−'; /* Changed by JS */
}

.page-blog-tabet-betting-guide__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
}

.page-blog-tabet-betting-guide__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-blog-tabet-betting-guide__faq-item summary {
  list-style: none;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .page-blog-tabet-betting-guide__container {
    padding: 0 15px;
  }

  .page-blog-tabet-betting-guide__hero-section {
    padding: 10px 0 40px 0;
  }

  .page-blog-tabet-betting-guide__main-title {
    font-size: clamp(2rem, 7vw, 2.5rem);
  }

  .page-blog-tabet-betting-guide__description {
    font-size: 1rem;
  }

  .page-blog-tabet-betting-guide__btn {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    margin-bottom: 15px; /* For stacked buttons */
  }

  .page-blog-tabet-betting-guide__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }

  .page-blog-tabet-betting-guide__section {
    padding: 40px 0;
  }

  .page-blog-tabet-betting-guide__heading {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .page-blog-tabet-betting-guide__sub-heading {
    font-size: 1.5rem;
  }

  /* Images, Videos, Buttons must be responsive */
  .page-blog-tabet-betting-guide img,
  .page-blog-tabet-betting-guide video,
  .page-blog-tabet-betting-guide__feature-icon,
  .page-blog-tabet-betting-guide__sport-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  /* All containers with images/videos/buttons */
  .page-blog-tabet-betting-guide__section,
  .page-blog-tabet-betting-guide__card,
  .page-blog-tabet-betting-guide__container,
  .page-blog-tabet-betting-guide__hero-image-wrapper,
  .page-blog-tabet-betting-guide__video-section,
  .page-blog-tabet-betting-guide__video-container,
  .page-blog-tabet-betting-guide__video-wrapper,
  .page-blog-tabet-betting-guide__feature-grid,
  .page-blog-tabet-betting-guide__sports-grid {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-blog-tabet-betting-guide__step-item {
    padding-left: 60px;
  }

  .page-blog-tabet-betting-guide__step-item::before {
    width: 45px;
    height: 45px;
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .page-blog-tabet-betting-guide__heading {
    font-size: 1.8rem;
  }

  .page-blog-tabet-betting-guide__sub-heading {
    font-size: 1.3rem;
  }
}