/* style/blog-top-betting-site-features.css */

:root {
  --page-primary-color: #FF8C1A;
  --page-secondary-color: #FFA53A;
  --page-button-gradient: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
  --page-card-bg: #17191F;
  --page-background: #0D0E12;
  --page-text-main: #FFF3E6;
  --page-border-color: #A84F0C;
  --page-glow-color: #FFB04D;
  --page-deep-orange: #D96800;
}

.page-blog-top-betting-site-features {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--page-text-main); /* Default text color for dark background */
  background-color: var(--page-background); /* Overall page background */
}

.page-blog-top-betting-site-features__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background-color: var(--page-background);
  color: var(--page-text-main);
  overflow: hidden;
}

.page-blog-top-betting-site-features__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  position: relative;
  z-index: 1;
}

.page-blog-top-betting-site-features__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 10px;
}

.page-blog-top-betting-site-features__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin-top: 40px;
  padding: 0 20px;
}

.page-blog-top-betting-site-features__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--page-primary-color);
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(255, 140, 26, 0.5);
}

.page-blog-top-betting-site-features__intro-text {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: var(--page-text-main);
}

.page-blog-top-betting-site-features__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.page-blog-top-betting-site-features__btn-primary,
.page-blog-top-betting-site-features__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  max-width: 100%; /* Ensure responsiveness */
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-top-betting-site-features__btn-primary {
  background: var(--page-button-gradient);
  color: #ffffff; /* White text for contrast on dark gradient */
  border: none;
}

.page-blog-top-betting-site-features__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 140, 26, 0.4);
}

.page-blog-top-betting-site-features__btn-secondary {
  background-color: transparent;
  color: var(--page-primary-color);
  border: 2px solid var(--page-primary-color);
}

.page-blog-top-betting-site-features__btn-secondary:hover {
  background-color: var(--page-primary-color);
  color: #ffffff;
  transform: translateY(-3px);
}

.page-blog-top-betting-site-features__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: var(--page-background); /* Ensure consistent background */
  color: var(--page-text-main);
}

.page-blog-top-betting-site-features__container {
  max-width: 900px;
  margin: 0 auto;
}

.page-blog-top-betting-site-features__section-title {
  font-size: 2.2em;
  color: var(--page-primary-color);
  margin-top: 40px;
  margin-bottom: 25px;
  text-align: center;
  text-shadow: 0 0 5px rgba(255, 140, 26, 0.3);
}

.page-blog-top-betting-site-features__text-block {
  font-size: 1.05em;
  margin-bottom: 25px;
  color: var(--page-text-main);
}

.page-blog-top-betting-site-features__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-blog-top-betting-site-features__feature-card {
  background-color: var(--page-card-bg);
  border: 1px solid var(--page-border-color);
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--page-text-main);
}

.page-blog-top-betting-site-features__feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(255, 140, 26, 0.4);
}

.page-blog-top-betting-site-features__feature-icon {
  width: 100%;
  max-width: 400px; /* Recommended size for content images */
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

.page-blog-top-betting-site-features__feature-title {
  font-size: 1.5em;
  color: var(--page-primary-color);
  margin-bottom: 15px;
}

.page-blog-top-betting-site-features__feature-description {
  font-size: 0.95em;
  color: var(--page-text-main);
}

.page-blog-top-betting-site-features__bullet-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-blog-top-betting-site-features__bullet-list li {
  background-color: var(--page-card-bg);
  border: 1px solid var(--page-border-color);
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 15px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  color: var(--page-text-main);
}

.page-blog-top-betting-site-features__list-title {
  font-size: 1.3em;
  color: var(--page-primary-color);
  margin-bottom: 10px;
}

.page-blog-top-betting-site-features__list-description {
  font-size: 0.95em;
  color: var(--page-text-main);
}

.page-blog-top-betting-site-features__faq-list {
  margin-top: 30px;
}

.page-blog-top-betting-site-features__faq-item {
  background-color: var(--page-card-bg);
  border: 1px solid var(--page-border-color);
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  color: var(--page-text-main);
}

.page-blog-top-betting-site-features__faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-weight: bold;
  cursor: pointer;
  color: var(--page-primary-color);
}

.page-blog-top-betting-site-features__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-blog-top-betting-site-features__faq-question {
  font-size: 1.15em;
}

.page-blog-top-betting-site-features__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 10px;
}

.page-blog-top-betting-site-features__faq-answer {
  padding: 0 20px 20px;
  font-size: 0.95em;
  color: var(--page-text-main);
}

.page-blog-top-betting-site-features__faq-answer p {
  margin: 0;
}

.page-blog-top-betting-site-features__inline-link {
  color: var(--page-secondary-color);
  text-decoration: underline;
  font-weight: bold;
}

.page-blog-top-betting-site-features__inline-link:hover {
  color: var(--page-primary-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-top-betting-site-features__hero-content {
    margin-top: 20px;
  }

  .page-blog-top-betting-site-features__main-title {
    font-size: 2.5em;
  }

  .page-blog-top-betting-site-features__section-title {
    font-size: 2em;
  }
}

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

  .page-blog-top-betting-site-features__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important; /* body handles header offset */
  }

  .page-blog-top-betting-site-features__main-title {
    font-size: clamp(1.8em, 7vw, 2.2em); /* Use clamp for H1 */
    margin-bottom: 15px;
  }

  .page-blog-top-betting-site-features__intro-text {
    font-size: 1em;
    margin-bottom: 20px;
  }

  .page-blog-top-betting-site-features__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-blog-top-betting-site-features__btn-primary,
  .page-blog-top-betting-site-features__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 12px 20px;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-blog-top-betting-site-features__content-area {
    padding: 30px 15px;
  }

  .page-blog-top-betting-site-features__container {
    padding-left: 15px;
    padding-right: 15px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-blog-top-betting-site-features__section-title {
    font-size: 1.8em;
    margin-top: 30px;
    margin-bottom: 20px;
  }

  .page-blog-top-betting-site-features__feature-card {
    padding: 20px;
  }

  .page-blog-top-betting-site-features__feature-icon {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-blog-top-betting-site-features__bullet-list li,
  .page-blog-top-betting-site-features__faq-item {
    padding: 15px;
  }

  .page-blog-top-betting-site-features__faq-item summary {
    padding: 15px;
  }

  .page-blog-top-betting-site-features__faq-answer {
    padding: 0 15px 15px;
  }

  /* Ensure all content area images are responsive */
  .page-blog-top-betting-site-features img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-top-betting-site-features__feature-grid {
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .page-blog-top-betting-site-features__main-title {
    font-size: clamp(1.5em, 8vw, 2em);
  }

  .page-blog-top-betting-site-features__hero-section {
    padding: 30px 10px;
    padding-top: 10px !important; /* body handles header offset */
  }

  .page-blog-top-betting-site-features__section-title {
    font-size: 1.6em;
  }
}