/* style/blog-tt3979-best-online-betting-platform-review.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-tt3979-best-online-betting-platform-review {
  font-family: 'Arial', sans-serif;
  color: var(--text-main); /* Default text color for dark background */
  background-color: var(--page-bg); /* Page background */
  line-height: 1.6;
}

.page-blog-tt3979-best-online-betting-platform-review__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 0 60px 0; /* Small top padding, more bottom padding */
  background-color: var(--page-bg);
}

.page-blog-tt3979-best-online-betting-platform-review__hero-image-wrapper {
  width: 100%;
  max-height: 600px; /* Limit height for hero image */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-blog-tt3979-best-online-betting-platform-review__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  min-height: 300px; /* Ensure hero image is not too small */
}

.page-blog-tt3979-best-online-betting-platform-review__hero-content {
  position: relative;
  z-index: 1;
  padding: 20px;
  max-width: 900px;
  margin-top: 20px;
}

.page-blog-tt3979-best-online-betting-platform-review__main-title {
  color: var(--gold-color);
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 15px;
  text-shadow: 0 0 8px rgba(242, 193, 78, 0.5);
  /* font-size handled by responsive design, not fixed */
}

.page-blog-tt3979-best-online-betting-platform-review__hero-description {
  color: var(--text-secondary);
  font-size: 1.1em;
  margin-bottom: 30px;
}

.page-blog-tt3979-best-online-betting-platform-review__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: var(--button-gradient);
  color: var(--text-main);
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-blog-tt3979-best-online-betting-platform-review__cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-blog-tt3979-best-online-betting-platform-review__content-section {
  padding: 60px 0;
  background-color: var(--page-bg);
}

.page-blog-tt3979-best-online-betting-platform-review__dark-bg {
  background-color: var(--card-bg);
}

.page-blog-tt3979-best-online-betting-platform-review__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog-tt3979-best-online-betting-platform-review__section-title {
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 20px;
  font-size: 2.5em;
  font-weight: bold;
  text-shadow: 0 0 5px rgba(17, 168, 78, 0.4);
}

.page-blog-tt3979-best-online-betting-platform-review__section-description {
  color: var(--text-secondary);
  text-align: center;
  font-size: 1.1em;
  margin-bottom: 40px;
}

.page-blog-tt3979-best-online-betting-platform-review__subsection-title {
  color: var(--secondary-color);
  font-size: 1.8em;
  margin-top: 30px;
  margin-bottom: 15px;
  border-bottom: 1px solid var(--divider-color);
  padding-bottom: 10px;
}

.page-blog-tt3979-best-online-betting-platform-review__text-block p {
  margin-bottom: 15px;
  color: var(--text-main);
}

.page-blog-tt3979-best-online-betting-platform-review__text-block strong {
  color: var(--gold-color);
}

.page-blog-tt3979-best-online-betting-platform-review__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 20px auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  min-width: 200px;
  min-height: 200px;
}

.page-blog-tt3979-best-online-betting-platform-review__product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-blog-tt3979-best-online-betting-platform-review__product-card,
.page-blog-tt3979-best-online-betting-platform-review__promo-item,
.page-blog-tt3979-best-online-betting-platform-review__card {
  background-color: var(--card-bg);
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-blog-tt3979-best-online-betting-platform-review__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
}

.page-blog-tt3979-best-online-betting-platform-review__card-image {
  width: 100%;
  height: 200px; /* Fixed height for consistent card images */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  min-width: 200px;
  min-height: 200px;
}

.page-blog-tt3979-best-online-betting-platform-review__card-title {
  color: var(--primary-color);
  font-size: 1.4em;
  margin-bottom: 10px;
}

.page-blog-tt3979-best-online-betting-platform-review__card-text {
  color: var(--text-secondary);
  font-size: 0.95em;
  flex-grow: 1;
}

.page-blog-tt3979-best-online-betting-platform-review__card-button {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  background: var(--button-gradient);
  color: var(--text-main);
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
}

.page-blog-tt3979-best-online-betting-platform-review__card-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.page-blog-tt3979-best-online-betting-platform-review__pros-cons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-blog-tt3979-best-online-betting-platform-review__list {
  list-style: none;
  padding: 0;
  text-align: left;
}

.page-blog-tt3979-best-online-betting-platform-review__list li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
  color: var(--text-main);
}

.page-blog-tt3979-best-online-betting-platform-review__list li::before {
  content: '✔';
  color: var(--primary-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-blog-tt3979-best-online-betting-platform-review__promo-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-blog-tt3979-best-online-betting-platform-review__cta-group {
  text-align: center;
  margin-top: 50px;
}

.page-blog-tt3979-best-online-betting-platform-review__guide-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 30px;
}

.page-blog-tt3979-best-online-betting-platform-review__list--ordered {
  list-style: decimal;
  padding-left: 25px;
  text-align: left;
  color: var(--text-main);
}

.page-blog-tt3979-best-online-betting-platform-review__list--ordered li {
  margin-bottom: 10px;
}

.page-blog-tt3979-best-online-betting-platform-review__payment-methods,
.page-blog-tt3979-best-online-betting-platform-review__support-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-blog-tt3979-best-online-betting-platform-review__faq-list {
  margin-top: 40px;
}

.page-blog-tt3979-best-online-betting-platform-review__faq-item {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-blog-tt3979-best-online-betting-platform-review__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: var(--primary-color);
  cursor: pointer;
  background-color: var(--card-bg);
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

.page-blog-tt3979-best-online-betting-platform-review__faq-question:hover {
  background-color: var(--deep-green);
}

.page-blog-tt3979-best-online-betting-platform-review__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-tt3979-best-online-betting-platform-review__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-blog-tt3979-best-online-betting-platform-review__faq-item[open] .page-blog-tt3979-best-online-betting-platform-review__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-tt3979-best-online-betting-platform-review__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 1.0em;
  color: var(--text-secondary);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-tt3979-best-online-betting-platform-review__section-title {
    font-size: 2em;
  }
  .page-blog-tt3979-best-online-betting-platform-review__subsection-title {
    font-size: 1.5em;
  }
  .page-blog-tt3979-best-online-betting-platform-review__hero-content {
    padding: 15px;
  }
  .page-blog-tt3979-best-online-betting-platform-review__hero-description {
    font-size: 1em;
  }
}

@media (max-width: 768px) {
  .page-blog-tt3979-best-online-betting-platform-review__hero-section {
    padding: 10px 0 40px 0;
  }
  .page-blog-tt3979-best-online-betting-platform-review__main-title {
    font-size: clamp(1.8em, 6vw, 2.5em); /* Responsive font size for H1 */
    margin-bottom: 10px;
  }
  .page-blog-tt3979-best-online-betting-platform-review__hero-description {
    font-size: 0.9em;
    margin-bottom: 20px;
  }
  .page-blog-tt3979-best-online-betting-platform-review__cta-button {
    padding: 12px 25px;
    font-size: 0.9em;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-blog-tt3979-best-online-betting-platform-review__content-section {
    padding: 40px 0;
  }
  .page-blog-tt3979-best-online-betting-platform-review__container {
    padding: 0 15px;
  }
  .page-blog-tt3979-best-online-betting-platform-review__section-title {
    font-size: 1.8em;
  }
  .page-blog-tt3979-best-online-betting-platform-review__subsection-title {
    font-size: 1.3em;
  }
  .page-blog-tt3979-best-online-betting-platform-review__product-grid,
  .page-blog-tt3979-best-online-betting-platform-review__promo-list,
  .page-blog-tt3979-best-online-betting-platform-review__pros-cons,
  .page-blog-tt3979-best-online-betting-platform-review__payment-methods,
  .page-blog-tt3979-best-online-betting-platform-review__support-info {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-blog-tt3979-best-online-betting-platform-review__guide-steps {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-blog-tt3979-best-online-betting-platform-review__card-image {
    height: auto;
  }
  .page-blog-tt3979-best-online-betting-platform-review__card-button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-blog-tt3979-best-online-betting-platform-review img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-blog-tt3979-best-online-betting-platform-review__section,
  .page-blog-tt3979-best-online-betting-platform-review__card,
  .page-blog-tt3979-best-online-betting-platform-review__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-blog-tt3979-best-online-betting-platform-review__hero-section {
    padding-top: 10px !important; /* body already handles --header-offset */
  }
  .page-blog-tt3979-best-online-betting-platform-review__cta-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0 15px;
  }
  .page-blog-tt3979-best-online-betting-platform-review__cta-group .page-blog-tt3979-best-online-betting-platform-review__cta-button {
    padding-left: 0;
    padding-right: 0;
  }
}