/* style/blog-top-online-betting-trends-2024.css */
:root {
  --primary-color: #11A84E;
  --secondary-color: #22C768;
  --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --card-bg: #11271B;
  --page-bg: #08160F;
  --text-main: #F2FFF6;
  --text-secondary: #A7D9B8;
  --border-color: #2E7A4E;
  --glow-color: #57E38D;
  --gold-color: #F2C14E;
  --divider-color: #1E3A2A;
  --deep-green: #0A4B2C;
}

.page-blog-top-online-betting-trends-2024 {
  color: var(--text-main); /* Default text color for the page content, contrasting with --page-bg */
  background-color: var(--page-bg);
}

.page-blog-top-online-betting-trends-2024__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  background-color: var(--card-bg); /* Use a darker background for hero for contrast */
  overflow: hidden;
}

.page-blog-top-online-betting-trends-2024__hero-image-wrapper {
  width: 100%;
  max-width: 1920px;
  margin-bottom: 30px;
}

.page-blog-top-online-betting-trends-2024__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-top-online-betting-trends-2024__hero-content {
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
}

.page-blog-top-online-betting-trends-2024__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-main);
  margin-bottom: 20px;
  font-size: clamp(2.5rem, 5vw, 3.5rem); /* Using clamp for responsive font size */
}

.page-blog-top-online-betting-trends-2024__hero-description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 30px;
}

.page-blog-top-online-betting-trends-2024__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-blog-top-online-betting-trends-2024__btn-primary,
.page-blog-top-online-betting-trends-2024__btn-secondary {
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
  width: auto;
  text-align: center;
}

.page-blog-top-online-betting-trends-2024__btn-primary {
  background: var(--button-gradient);
  color: var(--text-main);
  border: none;
  box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-blog-top-online-betting-trends-2024__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
}

.page-blog-top-online-betting-trends-2024__btn-secondary {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.page-blog-top-online-betting-trends-2024__btn-secondary:hover {
  background: var(--primary-color);
  color: var(--text-main);
  transform: translateY(-3px);
}

.page-blog-top-online-betting-trends-2024__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  color: var(--text-main); /* Ensure text is visible on --page-bg */
}

.page-blog-top-online-betting-trends-2024__container {
  width: 100%;
  box-sizing: border-box;
}

.page-blog-top-online-betting-trends-2024__section-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--gold-color);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-blog-top-online-betting-trends-2024__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--primary-color);
  border-radius: 2px;
}

.page-blog-top-online-betting-trends-2024__text-block {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 25px;
  color: var(--text-secondary);
  text-align: justify;
}

.page-blog-top-online-betting-trends-2024__highlight {
  color: var(--text-main);
  font-weight: bold;
}

.page-blog-top-online-betting-trends-2024__trend-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 60px;
}

.page-blog-top-online-betting-trends-2024__card {
  background-color: var(--card-bg);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-color);
  color: var(--text-main);
}

.page-blog-top-online-betting-trends-2024__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-blog-top-online-betting-trends-2024__card-image {
  width: 100%;
  height: 220px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}

.page-blog-top-online-betting-trends-2024__card-title {
  font-size: 1.4rem;
  color: var(--primary-color);
  padding: 20px 25px 10px;
  margin: 0;
}

.page-blog-top-online-betting-trends-2024__card-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-secondary);
  padding: 0 25px 25px;
  text-align: justify;
}

.page-blog-top-online-betting-trends-2024__benefit-list {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.page-blog-top-online-betting-trends-2024__benefit-item {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 8px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-secondary);
  display: flex;
  align-items: flex-start;
}

.page-blog-top-online-betting-trends-2024__benefit-item::before {
  content: '✅';
  margin-right: 10px;
  font-size: 1.2rem;
  line-height: 1;
  color: var(--gold-color);
}

.page-blog-top-online-betting-trends-2024__registration-steps {
  list-style: decimal;
  padding-left: 25px;
  margin-bottom: 40px;
}

.page-blog-top-online-betting-trends-2024__step-item {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 10px;
  color: var(--text-secondary);
}

.page-blog-top-online-betting-trends-2024__cta-center {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 50px;
}

.page-blog-top-online-betting-trends-2024__faq-section {
  background-color: var(--card-bg);
  padding: 60px 20px;
  color: var(--text-main);
}

.page-blog-top-online-betting-trends-2024__faq-list {
  margin-top: 40px;
}

.page-blog-top-online-betting-trends-2024__faq-item {
  background-color: var(--page-bg);
  border: 1px solid var(--border-color);
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
}

.page-blog-top-online-betting-trends-2024__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15rem;
  font-weight: bold;
  color: var(--primary-color);
  cursor: pointer;
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

.page-blog-top-online-betting-trends-2024__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-blog-top-online-betting-trends-2024__faq-question:hover {
  background-color: var(--deep-green);
}

.page-blog-top-online-betting-trends-2024__faq-qtext {
  flex-grow: 1;
}

.page-blog-top-online-betting-trends-2024__faq-toggle {
  font-size: 1.8rem;
  line-height: 1;
  margin-left: 15px;
  color: var(--gold-color);
}

.page-blog-top-online-betting-trends-2024__faq-answer {
  padding: 0 25px 20px;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

.page-blog-top-online-betting-trends-2024__faq-answer p {
  margin-top: 0;
  margin-bottom: 0;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-blog-top-online-betting-trends-2024__hero-section {
    padding: 40px 15px;
  }

  .page-blog-top-online-betting-trends-2024__main-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }

  .page-blog-top-online-betting-trends-2024__hero-description {
    font-size: 1rem;
  }

  .page-blog-top-online-betting-trends-2024__content-area {
    padding: 40px 15px;
  }

  .page-blog-top-online-betting-trends-2024__section-title {
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  }

  .page-blog-top-online-betting-trends-2024__card-title {
    font-size: 1.3rem;
  }
}

@media (max-width: 768px) {
  .page-blog-top-online-betting-trends-2024__hero-section {
    padding: 30px 15px;
    padding-top: 10px !important;
  }

  .page-blog-top-online-betting-trends-2024__hero-image-wrapper {
    margin-bottom: 20px;
  }

  .page-blog-top-online-betting-trends-2024__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    margin-bottom: 15px;
  }

  .page-blog-top-online-betting-trends-2024__hero-description {
    font-size: 0.95rem;
    margin-bottom: 25px;
  }

  .page-blog-top-online-betting-trends-2024__cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 300px; /* Constrain button group width */
  }

  .page-blog-top-online-betting-trends-2024__btn-primary,
  .page-blog-top-online-betting-trends-2024__btn-secondary,
  .page-blog-top-online-betting-trends-2024 a[class*="button"],
  .page-blog-top-online-betting-trends-2024 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-top-online-betting-trends-2024__content-area,
  .page-blog-top-online-betting-trends-2024__faq-section {
    padding: 30px 15px;
  }

  .page-blog-top-online-betting-trends-2024__section-title {
    font-size: clamp(1.5rem, 5vw, 2rem);
    margin-bottom: 30px;
  }

  .page-blog-top-online-betting-trends-2024__text-block {
    font-size: 1rem;
  }

  .page-blog-top-online-betting-trends-2024__trend-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-blog-top-online-betting-trends-2024__card-image {
    height: 180px; /* Adjust height for smaller screens */
  }

  .page-blog-top-online-betting-trends-2024__card-title {
    font-size: 1.2rem;
    padding: 15px 20px 8px;
  }

  .page-blog-top-online-betting-trends-2024__card-text {
    font-size: 0.9rem;
    padding: 0 20px 20px;
  }

  .page-blog-top-online-betting-trends-2024__benefit-item,
  .page-blog-top-online-betting-trends-2024__step-item {
    font-size: 0.95rem;
  }

  .page-blog-top-online-betting-trends-2024__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }

  .page-blog-top-online-betting-trends-2024__faq-toggle {
    font-size: 1.5rem;
  }

  .page-blog-top-online-betting-trends-2024__faq-answer {
    font-size: 0.9rem;
    padding: 0 20px 15px;
  }

  /* Mobile responsive for all images */
  .page-blog-top-online-betting-trends-2024 img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  /* Mobile responsive for all containers */
  .page-blog-top-online-betting-trends-2024__section,
  .page-blog-top-online-betting-trends-2024__card,
  .page-blog-top-online-betting-trends-2024__container,
  .page-blog-top-online-betting-trends-2024__faq-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden;
  }
}