/* style/index-mobile-betting-advantages.css */
:root {
  --primary-color: #FFD700; /* Gold */
  --secondary-color: #008000; /* Green */
  --dark-bg-1: #0d0d0d; /* Assuming a very dark background from shared.css */
  --text-light: #ffffff;
  --text-dark: #333333;
  --card-bg-dark: rgba(255, 255, 255, 0.1);
  --card-bg-light: #ffffff;
  --border-color: #e0e0e0;
}

.page-index-mobile-betting-advantages {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-light); /* Default text color for dark body background */
  padding-top: 120px; /* Adjust for fixed header */
}

/* Video Section */
.page-index-mobile-betting-advantages__video-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  padding-top: 10px; /* Specific padding for video section to prevent header overlap */
  background-color: var(--dark-bg-1);
}

.page-index-mobile-betting-advantages__video-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-index-mobile-betting-advantages__video-link {
  display: block;
  text-decoration: none;
  position: relative;
  width: 100%;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-mobile-betting-advantages__video-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.page-index-mobile-betting-advantages__video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.page-index-mobile-betting-advantages__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 8px;
  object-fit: cover;
  pointer-events: none; /* Prevent video controls from blocking click event */
}

.page-index-mobile-betting-advantages__video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

.page-index-mobile-betting-advantages__video-link:hover .page-index-mobile-betting-advantages__video-overlay {
  opacity: 1;
}

.page-index-mobile-betting-advantages__video-click-hint {
  color: #ffffff;
  font-size: 18px;
  font-weight: bold;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  padding: 10px 20px;
  background: rgba(0, 123, 255, 0.8);
  border-radius: 5px;
  white-space: nowrap;
}

.page-index-mobile-betting-advantages__video-cta {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

.page-index-mobile-betting-advantages__play-now-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--primary-color);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border: none;
  cursor: pointer;
}

.page-index-mobile-betting-advantages__play-now-button:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.page-index-mobile-betting-advantages__play-now-button:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* General Layout */
.page-index-mobile-betting-advantages__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-index-mobile-betting-advantages__section-title {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: var(--primary-color); /* Gold color for titles */
}

/* Title Section */
.page-index-mobile-betting-advantages__title-section {
  padding: 60px 0;
  background-color: var(--dark-bg-1);
  text-align: center;
  color: var(--text-light);
  padding-top: 10px; /* Adjusted padding-top for this section */
}

.page-index-mobile-betting-advantages__title-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-index-mobile-betting-advantages__main-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--primary-color);
  line-height: 1.2;
}

.page-index-mobile-betting-advantages__title-description {
  font-size: 18px;
  margin-bottom: 40px;
  color: #f0f0f0;
}

.page-index-mobile-betting-advantages__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-index-mobile-betting-advantages__cta-buttons--center {
  justify-content: center;
}

.page-index-mobile-betting-advantages__cta-buttons--margin-top {
  margin-top: 40px;
}

.page-index-mobile-betting-advantages__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border: none;
  cursor: pointer;
}

.page-index-mobile-betting-advantages__cta-button--primary {
  background: var(--primary-color);
  color: var(--text-dark);
}

.page-index-mobile-betting-advantages__cta-button--primary:hover {
  background: darken(var(--primary-color), 10%);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.page-index-mobile-betting-advantages__cta-button--secondary {
  background: var(--secondary-color);
  color: var(--text-light);
}

.page-index-mobile-betting-advantages__cta-button--secondary:hover {
  background: darken(var(--secondary-color), 10%);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* Content Area */
.page-index-mobile-betting-advantages__content-area {
  padding: 80px 0;
}

.page-index-mobile-betting-advantages__dark-bg {
  background-color: var(--dark-bg-1);
  color: var(--text-light);
}

.page-index-mobile-betting-advantages__light-bg {
  background-color: #f8f8f8;
  color: var(--text-dark);
}

.page-index-mobile-betting-advantages__light-bg .page-index-mobile-betting-advantages__section-title {
  color: var(--secondary-color);
}

.page-index-mobile-betting-advantages__content-area p {
  font-size: 17px;
  margin-bottom: 20px;
  line-height: 1.8;
}

.page-index-mobile-betting-advantages__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
  margin-bottom: 50px;
}

.page-index-mobile-betting-advantages__feature-card {
  background: var(--card-bg-dark);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--text-light);
}

.page-index-mobile-betting-advantages__feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-index-mobile-betting-advantages__feature-icon {
  width: 120px;
  height: auto;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-index-mobile-betting-advantages__feature-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.page-index-mobile-betting-advantages__feature-card p {
  font-size: 16px;
  color: #cccccc;
}

.page-index-mobile-betting-advantages__step-list {
  list-style-type: decimal;
  padding-left: 25px;
  margin-top: 30px;
  font-size: 17px;
  color: var(--text-light);
}

.page-index-mobile-betting-advantages__step-list li {
  margin-bottom: 15px;
  line-height: 1.8;
}

.page-index-mobile-betting-advantages__step-list li strong {
  color: var(--primary-color);
}

.page-index-mobile-betting-advantages__call-to-action-text {
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  margin-top: 50px;
  margin-bottom: 30px;
  color: var(--primary-color);
}

/* FAQ Section */
.page-index-mobile-betting-advantages__faq-section {
  padding: 80px 0;
}

.page-index-mobile-betting-advantages__faq-list {
  margin-top: 40px;
}

.page-index-mobile-betting-advantages__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.page-index-mobile-betting-advantages__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: var(--card-bg-light);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
  color: var(--text-dark);
}

.page-index-mobile-betting-advantages__faq-question:hover {
  background: #f5f5f5;
  border-color: #d0d0d0;
}

.page-index-mobile-betting-advantages__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--secondary-color);
  pointer-events: none; /* Prevent h3 from blocking click event */
}

.page-index-mobile-betting-advantages__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: #666;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none; /* Prevent icon from blocking click event */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.page-index-mobile-betting-advantages__faq-item.active .page-index-mobile-betting-advantages__faq-toggle {
  color: var(--primary-color);
  transform: rotate(45deg); /* Rotate for 'x' effect */
}

.page-index-mobile-betting-advantages__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 25px;
  opacity: 0;
  background: #fdfdfd;
  color: var(--text-dark);
}

.page-index-mobile-betting-advantages__faq-item.active .page-index-mobile-betting-advantages__faq-answer {
  max-height: 2000px !important; /* Ensure enough height for content */
  padding: 20px 25px !important;
  opacity: 1;
  border-top: 1px solid var(--border-color);
  border-radius: 0 0 8px 8px;
}

/* Brand Section */
.page-index-mobile-betting-advantages__brand-section {
  padding: 80px 0;
  background-color: var(--dark-bg-1);
  color: var(--text-light);
}

.page-index-mobile-betting-advantages__brand-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-mobile-betting-advantages__brand-item {
  background: var(--card-bg-dark);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: var(--text-light);
}

.page-index-mobile-betting-advantages__brand-item img {
  width: 150px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}

.page-index-mobile-betting-advantages__brand-subtitle {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.page-index-mobile-betting-advantages__brand-item p {
  font-size: 16px;
  color: #cccccc;
}

/* Blog Section */
.page-index-mobile-betting-advantages__blog-section {
  padding: 80px 0;
}

.page-index-mobile-betting-advantages__blog-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-mobile-betting-advantages__blog-item {
  background: var(--card-bg-light);
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-mobile-betting-advantages__blog-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-index-mobile-betting-advantages__blog-link {
  text-decoration: none;
  display: block;
  color: var(--text-dark);
}

.page-index-mobile-betting-advantages__blog-item-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid var(--border-color);
}

.page-index-mobile-betting-advantages__blog-item-title {
  font-size: 22px;
  font-weight: bold;
  margin: 20px 20px 10px;
  color: var(--secondary-color);
}

.page-index-mobile-betting-advantages__blog-item-excerpt {
  font-size: 16px;
  margin: 0 20px 15px;
  color: #666;
}

.page-index-mobile-betting-advantages__blog-item-date {
  display: block;
  font-size: 14px;
  color: #999;
  margin: 0 20px 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-index-mobile-betting-advantages__main-title {
    font-size: 40px;
  }
  .page-index-mobile-betting-advantages__section-title {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .page-index-mobile-betting-advantages {
    padding-top: 100px !important; /* Mobile fixed header padding */
    font-size: 16px;
    line-height: 1.6;
  }

  .page-index-mobile-betting-advantages__video-section,
  .page-index-mobile-betting-advantages__title-section,
  .page-index-mobile-betting-advantages__content-area,
  .page-index-mobile-betting-advantages__faq-section,
  .page-index-mobile-betting-advantages__brand-section,
  .page-index-mobile-betting-advantages__blog-section {
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Video Section Mobile */
  .page-index-mobile-betting-advantages__video-section {
    padding-top: 10px !important; /* Mobile specific padding */
    padding-bottom: 40px;
  }
  
  .page-index-mobile-betting-advantages__video-container,
  .page-index-mobile-betting-advantages__video-link,
  .page-index-mobile-betting-advantages__video-wrapper,
  .page-index-mobile-betting-advantages__video {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-index-mobile-betting-advantages__video-click-hint {
    font-size: 14px !important;
    padding: 8px 16px !important;
  }
  
  .page-index-mobile-betting-advantages__video-cta {
    margin-top: 20px;
  }

  .page-index-mobile-betting-advantages__play-now-button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 12px 30px !important;
    font-size: 16px !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  /* Title Section Mobile */
  .page-index-mobile-betting-advantages__title-section {
    padding: 40px 0;
  }

  .page-index-mobile-betting-advantages__main-title {
    font-size: 32px;
  }

  .page-index-mobile-betting-advantages__title-description {
    font-size: 16px;
  }

  .page-index-mobile-betting-advantages__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-index-mobile-betting-advantages__cta-button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 12px 20px;
    font-size: 16px;
    white-space: normal;
    word-wrap: break-word;
  }

  /* Content Section Mobile */
  .page-index-mobile-betting-advantages__content-area {
    padding: 50px 0;
  }

  .page-index-mobile-betting-advantages__section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .page-index-mobile-betting-advantages__feature-card {
    padding: 25px;
  }

  .page-index-mobile-betting-advantages__feature-icon {
    width: 100px;
  }

  .page-index-mobile-betting-advantages__feature-title {
    font-size: 20px;
  }

  .page-index-mobile-betting-advantages__step-list {
    font-size: 16px;
    padding-left: 20px;
  }

  .page-index-mobile-betting-advantages__call-to-action-text {
    font-size: 18px;
    margin-top: 40px;
  }

  /* FAQ Section Mobile */
  .page-index-mobile-betting-advantages__faq-section {
    padding: 50px 0;
  }

  .page-index-mobile-betting-advantages__faq-question {
    padding: 15px 20px;
  }

  .page-index-mobile-betting-advantages__faq-question h3 {
    font-size: 16px;
  }

  .page-index-mobile-betting-advantages__faq-toggle {
    font-size: 24px;
    width: 28px;
    height: 28px;
  }

  .page-index-mobile-betting-advantages__faq-item.active .page-index-mobile-betting-advantages__faq-answer {
    padding: 15px 20px !important;
  }

  /* Brand Section Mobile */
  .page-index-mobile-betting-advantages__brand-section {
    padding: 50px 0;
  }

  .page-index-mobile-betting-advantages__brand-item img {
    width: 120px;
  }

  .page-index-mobile-betting-advantages__brand-subtitle {
    font-size: 20px;
  }

  /* Blog Section Mobile */
  .page-index-mobile-betting-advantages__blog-section {
    padding: 50px 0;
  }

  .page-index-mobile-betting-advantages__blog-item-image {
    height: 180px;
  }

  .page-index-mobile-betting-advantages__blog-item-title {
    font-size: 18px;
    margin: 15px 15px 8px;
  }

  .page-index-mobile-betting-advantages__blog-item-excerpt,
  .page-index-mobile-betting-advantages__blog-item-date {
    font-size: 14px;
    margin: 0 15px 15px;
  }
}

@media (max-width: 480px) {
  .page-index-mobile-betting-advantages__main-title {
    font-size: 28px;
  }
  .page-index-mobile-betting-advantages__section-title {
    font-size: 24px;
  }
  .page-index-mobile-betting-advantages__feature-icon {
    width: 80px;
  }
  .page-index-mobile-betting-advantages__feature-title {
    font-size: 18px;
  }
  .page-index-mobile-betting-advantages__cta-button {
    padding: 10px 15px !important;
    font-size: 15px !important;
  }
}