/* style/top-8-betting-platforms-ranking.css */

:root {
  --page-primary-color: #FF8C1A;
  --page-secondary-color: #FFA53A;
  --page-background-color: #0D0E12;
  --page-card-bg-color: #17191F;
  --page-text-main-color: #FFF3E6;
  --page-border-color: #A84F0C;
  --page-glow-color: #FFB04D;
  --page-deep-orange-color: #D96800;
}

.page-top-8-betting-platforms-ranking {
  font-family: 'Arial', sans-serif;
  color: var(--page-text-main-color); /* Default text color for the page */
  background-color: var(--page-background-color); /* Default background for the main content area */
}

.page-top-8-betting-platforms-ranking__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-top-8-betting-platforms-ranking__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 500px; /* Adjust as needed */
  padding-top: 10px; /* Small top padding, body handles header offset */
  background-color: var(--page-background-color);
}

.page-top-8-betting-platforms-ranking__hero-image-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.page-top-8-betting-platforms-ranking__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-top-8-betting-platforms-ranking__hero-content {
  text-align: center;
  padding: 40px 20px;
  background: linear-gradient(180deg, rgba(13,14,18,0.8) 0%, rgba(13,14,18,1) 100%);
  width: 100%;
  box-sizing: border-box;
}

.page-top-8-betting-platforms-ranking__hero-title {
  color: var(--page-text-main-color);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 15px;
  text-shadow: 0 0 10px rgba(255,175,58,0.5);
  font-size: clamp(2.2rem, 4vw, 3.5rem); /* Responsive H1 font size */
}

.page-top-8-betting-platforms-ranking__hero-description {
  color: var(--page-text-main-color);
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

.page-top-8-betting-platforms-ranking__section-title {
  font-size: 2.5rem;
  color: var(--page-primary-color);
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  text-shadow: 0 0 5px rgba(255,175,58,0.3);
}

.page-top-8-betting-platforms-ranking__text-block {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: var(--page-text-main-color);
  opacity: 0.85;
}

.page-top-8-betting-platforms-ranking__intro-section,
.page-top-8-betting-platforms-ranking__ranking-section,
.page-top-8-betting-platforms-ranking__faq-section,
.page-top-8-betting-platforms-ranking__conclusion-section {
  padding: 80px 0;
  background-color: var(--page-background-color);
}

.page-top-8-betting-platforms-ranking__criteria-section {
  padding: 80px 0;
  background-color: var(--page-card-bg-color);
}

.page-top-8-betting-platforms-ranking__dark-section {
  background-color: var(--page-primary-color);
  color: #ffffff;
  padding: 80px 0;
}

.page-top-8-betting-platforms-ranking__dark-section .page-top-8-betting-platforms-ranking__section-title,
.page-top-8-betting-platforms-ranking__dark-section .page-top-8-betting-platforms-ranking__text-block,
.page-top-8-betting-platforms-ranking__dark-section h3 {
  color: #ffffff;
  text-shadow: none;
}

.page-top-8-betting-platforms-ranking__grid-3-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-top-8-betting-platforms-ranking__grid-2-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-top-8-betting-platforms-ranking__card {
  background-color: var(--page-card-bg-color);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  border: 1px solid var(--page-border-color);
  color: var(--page-text-main-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-top-8-betting-platforms-ranking__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(255,175,58,0.2);
}

.page-top-8-betting-platforms-ranking__card-title {
  font-size: 1.5rem;
  color: var(--page-secondary-color);
  margin-bottom: 15px;
  font-weight: 600;
}

.page-top-8-betting-platforms-ranking__card-text {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.8;
}

.page-top-8-betting-platforms-ranking__btn-primary,
.page-top-8-betting-platforms-ranking__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-top-8-betting-platforms-ranking__btn-primary {
  background: linear-gradient(180deg, var(--page-secondary-color) 0%, var(--page-deep-orange-color) 100%);
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 10px rgba(255,175,58,0.4);
}

.page-top-8-betting-platforms-ranking__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(255,175,58,0.6);
}

.page-top-8-betting-platforms-ranking__btn-secondary {
  background-color: transparent;
  color: var(--page-secondary-color);
  border: 2px solid var(--page-secondary-color);
}

.page-top-8-betting-platforms-ranking__btn-secondary:hover {
  background-color: var(--page-secondary-color);
  color: var(--page-background-color);
  box-shadow: 0 4px 10px rgba(255,175,58,0.4);
}

.page-top-8-betting-platforms-ranking__btn-center {
  display: block;
  margin: 40px auto 0 auto;
  max-width: 300px;
}

.page-top-8-betting-platforms-ranking__platform-card {
  background-color: var(--page-card-bg-color);
  border-radius: 10px;
  margin-bottom: 40px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  border: 1px solid var(--page-border-color);
}

.page-top-8-betting-platforms-ranking__platform-header {
  display: flex;
  align-items: center;
  padding: 25px;
  background-color: rgba(255,140,26,0.1);
  border-bottom: 1px solid var(--page-border-color);
}

.page-top-8-betting-platforms-ranking__platform-title {
  font-size: 1.8rem;
  color: var(--page-secondary-color);
  flex-grow: 1;
  margin-right: 20px;
  font-weight: 600;
}

.page-top-8-betting-platforms-ranking__platform-image {
  width: 150px;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
  border: 1px solid var(--page-border-color);
}

.page-top-8-betting-platforms-ranking__platform-content {
  padding: 25px;
  line-height: 1.7;
}

.page-top-8-betting-platforms-ranking__platform-content p {
  margin-bottom: 15px;
  color: var(--page-text-main-color);
  opacity: 0.85;
}

.page-top-8-betting-platforms-ranking__guide-item {
  background-color: var(--page-deep-orange-color);
  padding: 30px;
  border-radius: 10px;
  color: #ffffff;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.page-top-8-betting-platforms-ranking__guide-title {
  font-size: 1.6rem;
  margin-bottom: 15px;
  font-weight: 600;
  color: #ffffff;
}

.page-top-8-betting-platforms-ranking__guide-item p {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.9;
  color: #ffffff;
}

.page-top-8-betting-platforms-ranking__faq-list {
  margin-top: 40px;
}

.page-top-8-betting-platforms-ranking__faq-item {
  background-color: var(--page-card-bg-color);
  border: 1px solid var(--page-border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--page-text-main-color);
}

.page-top-8-betting-platforms-ranking__faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--page-secondary-color);
  background-color: rgba(255,140,26,0.05);
  transition: background-color 0.3s ease;
}

.page-top-8-betting-platforms-ranking__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-top-8-betting-platforms-ranking__faq-item summary:hover {
  background-color: rgba(255,140,26,0.15);
}

.page-top-8-betting-platforms-ranking__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-top-8-betting-platforms-ranking__faq-item[open] .page-top-8-betting-platforms-ranking__faq-toggle {
  transform: rotate(45deg);
}

.page-top-8-betting-platforms-ranking__faq-answer {
  padding: 20px 25px;
  border-top: 1px solid var(--page-border-color);
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.8;
}

.page-top-8-betting-platforms-ranking__faq-answer p {
  margin-bottom: 0; /* Remove default paragraph margin */
  color: var(--page-text-main-color);
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-top-8-betting-platforms-ranking__platform-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .page-top-8-betting-platforms-ranking__platform-title {
    margin-bottom: 15px;
    margin-right: 0;
  }
  .page-top-8-betting-platforms-ranking__platform-image {
    width: 100%;
    height: 200px;
  }
}

@media (max-width: 768px) {
  .page-top-8-betting-platforms-ranking__hero-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }
  .page-top-8-betting-platforms-ranking__section-title {
    font-size: 2rem;
  }
  .page-top-8-betting-platforms-ranking__intro-section,
  .page-top-8-betting-platforms-ranking__criteria-section,
  .page-top-8-betting-platforms-ranking__ranking-section,
  .page-top-8-betting-platforms-ranking__guide-section,
  .page-top-8-betting-platforms-ranking__faq-section,
  .page-top-8-betting-platforms-ranking__conclusion-section {
    padding: 40px 0;
  }
  .page-top-8-betting-platforms-ranking__container {
    padding: 0 15px; /* Add padding for mobile containers */
  }

  /* Images responsiveness */
  .page-top-8-betting-platforms-ranking img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  /* Buttons responsiveness */
  .page-top-8-betting-platforms-ranking__btn-primary,
  .page-top-8-betting-platforms-ranking__btn-secondary,
  .page-top-8-betting-platforms-ranking a[class*="button"],
  .page-top-8-betting-platforms-ranking 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-top-8-betting-platforms-ranking__btn-center {
    max-width: 100%;
  }

  /* Containers for images/buttons */
  .page-top-8-betting-platforms-ranking__hero-section,
  .page-top-8-betting-platforms-ranking__intro-section .page-top-8-betting-platforms-ranking__container,
  .page-top-8-betting-platforms-ranking__criteria-section .page-top-8-betting-platforms-ranking__container,
  .page-top-8-betting-platforms-ranking__ranking-section .page-top-8-betting-platforms-ranking__container,
  .page-top-8-betting-platforms-ranking__guide-section .page-top-8-betting-platforms-ranking__container,
  .page-top-8-betting-platforms-ranking__faq-section .page-top-8-betting-platforms-ranking__container,
  .page-top-8-betting-platforms-ranking__conclusion-section .page-top-8-betting-platforms-ranking__container,
  .page-top-8-betting-platforms-ranking__platform-card,
  .page-top-8-betting-platforms-ranking__card,
  .page-top-8-betting-platforms-ranking__guide-item,
  .page-top-8-betting-platforms-ranking__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden;
  }

  /* Specific adjustments for platform card image on mobile */
  .page-top-8-betting-platforms-ranking__platform-image {
    width: 100%;
    height: 150px; /* Smaller height for mobile */
  }

  .page-top-8-betting-platforms-ranking__hero-content {
    padding: 20px 15px;
  }

  .page-top-8-betting-platforms-ranking__hero-image-wrapper {
    padding-left: 0;
    padding-right: 0;
  }
  
  .page-top-8-betting-platforms-ranking__hero-section {
    padding: 10px 0 0 0;
  }

  .page-top-8-betting-platforms-ranking__platform-header {
    padding: 15px;
  }
  .page-top-8-betting-platforms-ranking__platform-content {
    padding: 15px;
  }
  .page-top-8-betting-platforms-ranking__faq-item summary {
    padding: 15px;
    font-size: 1rem;
  }
  .page-top-8-betting-platforms-ranking__faq-answer {
    padding: 15px;
  }
}