/* style/game-strategy-center-sports-handicap-analysis.css */

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

.page-game-strategy-center-sports-handicap-analysis {
  font-family: 'Arial', sans-serif;
  color: var(--page-text-main); /* Default text color for the page content */
  background-color: var(--page-background); /* Default background for the page content */
}

/* Hero Section */
.page-game-strategy-center-sports-handicap-analysis__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 40px;
  background-color: var(--page-background);
}

.page-game-strategy-center-sports-handicap-analysis__hero-image-wrapper {
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.page-game-strategy-center-sports-handicap-analysis__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-game-strategy-center-sports-handicap-analysis__hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 900px;
  margin-top: 20px;
  padding: 0 20px;
}

.page-game-strategy-center-sports-handicap-analysis__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--page-text-main);
  margin-bottom: 15px;
  font-weight: 700;
  line-height: 1.2;
}

.page-game-strategy-center-sports-handicap-analysis__lead-text {
  font-size: 1.2rem;
  color: var(--page-text-secondary);
  margin-bottom: 30px;
  line-height: 1.6;
}

/* General Container */
.page-game-strategy-center-sports-handicap-analysis__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Sections */
.page-game-strategy-center-sports-handicap-analysis__introduction-section,
.page-game-strategy-center-sports-handicap-analysis__benefits-section,
.page-game-strategy-center-sports-handicap-analysis__conclusion-section {
  padding: 60px 0;
  text-align: center;
}

.page-game-strategy-center-sports-handicap-analysis__dark-bg {
  background-color: var(--page-background);
  color: var(--page-text-main);
}

.page-game-strategy-center-sports-handicap-analysis__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--page-text-main);
  margin-bottom: 30px;
  font-weight: 600;
  line-height: 1.3;
}

.page-game-strategy-center-sports-handicap-analysis__text-block {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--page-text-secondary);
  margin-bottom: 20px;
}

/* Grid Layout for Factors Section */
.page-game-strategy-center-sports-handicap-analysis__factors-section {
  padding: 60px 0;
  background-color: var(--page-card-bg);
}

.page-game-strategy-center-sports-handicap-analysis__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-game-strategy-center-sports-handicap-analysis__card {
  background-color: var(--page-background);
  border: 1px solid var(--page-border);
  border-radius: 10px;
  padding: 25px;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--page-text-main);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-game-strategy-center-sports-handicap-analysis__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-game-strategy-center-sports-handicap-analysis__card-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  display: block;
}

.page-game-strategy-center-sports-handicap-analysis__card-title {
  font-size: 1.5rem;
  color: var(--page-text-main);
  margin-bottom: 10px;
  font-weight: 600;
}

.page-game-strategy-center-sports-handicap-analysis__card-text {
  font-size: 1rem;
  color: var(--page-text-secondary);
  line-height: 1.6;
}

/* Betting Types Section */
.page-game-strategy-center-sports-handicap-analysis__betting-types-section {
  padding: 60px 0;
}

.page-game-strategy-center-sports-handicap-analysis__video-wrapper {
  width: 100%;
  max-width: 1000px; /* Max width for video */
  margin: 40px auto;
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-game-strategy-center-sports-handicap-analysis__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}

.page-game-strategy-center-sports-handicap-analysis__betting-types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-game-strategy-center-sports-handicap-analysis__type-card {
  background-color: var(--page-background);
  border: 1px solid var(--page-border);
  border-radius: 10px;
  padding: 25px;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: var(--page-text-main);
}

.page-game-strategy-center-sports-handicap-analysis__type-title {
  font-size: 1.5rem;
  color: var(--page-text-main);
  margin-bottom: 10px;
  font-weight: 600;
}

.page-game-strategy-center-sports-handicap-analysis__type-text {
  font-size: 1rem;
  color: var(--page-text-secondary);
  line-height: 1.6;
}

/* Strategy Section */
.page-game-strategy-center-sports-handicap-analysis__strategy-section {
  padding: 60px 0;
  background-color: var(--page-card-bg);
  text-align: center;
}

.page-game-strategy-center-sports-handicap-analysis__strategy-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-game-strategy-center-sports-handicap-analysis__list-item {
  background-color: var(--page-background);
  border: 1px solid var(--page-border);
  border-radius: 10px;
  padding: 25px;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: var(--page-text-main);
}

.page-game-strategy-center-sports-handicap-analysis__list-title {
  font-size: 1.6rem;
  color: var(--page-primary-color);
  margin-bottom: 10px;
  font-weight: 700;
}

.page-game-strategy-center-sports-handicap-analysis__list-text {
  font-size: 1rem;
  color: var(--page-text-secondary);
  line-height: 1.6;
}

/* Buttons */
.page-game-strategy-center-sports-handicap-analysis__btn-primary {
  display: inline-block;
  background: var(--page-button-gradient);
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 700;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(17, 168, 78, 0.4);
}

.page-game-strategy-center-sports-handicap-analysis__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(17, 168, 78, 0.6);
}

.page-game-strategy-center-sports-handicap-analysis__cta-buttons {
  margin-top: 40px;
  text-align: center;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

/* Benefits Section */
.page-game-strategy-center-sports-handicap-analysis__benefits-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* FAQ Section */
.page-game-strategy-center-sports-handicap-analysis__faq-section {
  padding: 60px 0;
  background-color: var(--page-card-bg);
  text-align: center;
}

.page-game-strategy-center-sports-handicap-analysis__faq-list {
  max-width: 900px;
  margin: 40px auto 0;
  text-align: left;
}

.page-game-strategy-center-sports-handicap-analysis__faq-item {
  background-color: var(--page-background);
  border: 1px solid var(--page-border);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  color: var(--page-text-main);
}

.page-game-strategy-center-sports-handicap-analysis__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--page-text-main);
  cursor: pointer;
  background-color: var(--page-background);
  user-select: none;
  list-style: none;
}

.page-game-strategy-center-sports-handicap-analysis__faq-question::-webkit-details-marker {
  display: none;
}

.page-game-strategy-center-sports-handicap-analysis__faq-toggle {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--page-primary-color);
  transition: transform 0.3s ease;
}

.page-game-strategy-center-sports-handicap-analysis__faq-item[open] .page-game-strategy-center-sports-handicap-analysis__faq-toggle {
  transform: rotate(45deg);
}

.page-game-strategy-center-sports-handicap-analysis__faq-answer {
  padding: 0 25px 20px;
  font-size: 1rem;
  color: var(--page-text-secondary);
  line-height: 1.6;
  border-top: 1px solid var(--page-divider);
  margin-top: -1px; /* Overlap border */
}

/* Conclusion Section */
.page-game-strategy-center-sports-handicap-analysis__conclusion-section {
  padding: 60px 0;
}

.page-game-strategy-center-sports-handicap-analysis__text-link {
  color: var(--page-primary-color);
  text-decoration: underline;
  font-weight: 600;
}

.page-game-strategy-center-sports-handicap-analysis__text-link:hover {
  color: var(--page-secondary-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-game-strategy-center-sports-handicap-analysis__hero-content {
    max-width: 700px;
  }
}

@media (max-width: 768px) {
  .page-game-strategy-center-sports-handicap-analysis__hero-section,
  .page-game-strategy-center-sports-handicap-analysis__introduction-section,
  .page-game-strategy-center-sports-handicap-analysis__factors-section,
  .page-game-strategy-center-sports-handicap-analysis__betting-types-section,
  .page-game-strategy-center-sports-handicap-analysis__strategy-section,
  .page-game-strategy-center-sports-handicap-analysis__benefits-section,
  .page-game-strategy-center-sports-handicap-analysis__faq-section,
  .page-game-strategy-center-sports-handicap-analysis__conclusion-section {
    padding: 40px 0;
  }

  .page-game-strategy-center-sports-handicap-analysis__main-title {
    font-size: clamp(2rem, 8vw, 2.5rem);
  }

  .page-game-strategy-center-sports-handicap-analysis__lead-text {
    font-size: 1rem;
  }

  .page-game-strategy-center-sports-handicap-analysis__section-title {
    font-size: clamp(1.8rem, 7vw, 2.2rem);
  }

  .page-game-strategy-center-sports-handicap-analysis__text-block {
    font-size: 0.95rem;
  }

  .page-game-strategy-center-sports-handicap-analysis__grid,
  .page-game-strategy-center-sports-handicap-analysis__betting-types-grid,
  .page-game-strategy-center-sports-handicap-analysis__strategy-list,
  .page-game-strategy-center-sports-handicap-analysis__benefits-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-game-strategy-center-sports-handicap-analysis__card-image {
    height: 180px;
  }

  .page-game-strategy-center-sports-handicap-analysis__btn-primary {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px;
    font-size: 1rem;
  }

  .page-game-strategy-center-sports-handicap-analysis__cta-buttons {
    padding: 0 15px;
  }

  /* Mobile image responsive adaptation */
  .page-game-strategy-center-sports-handicap-analysis img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-game-strategy-center-sports-handicap-analysis__hero-image-wrapper,
  .page-game-strategy-center-sports-handicap-analysis__container,
  .page-game-strategy-center-sports-handicap-analysis__card,
  .page-game-strategy-center-sports-handicap-analysis__type-card,
  .page-game-strategy-center-sports-handicap-analysis__list-item,
  .page-game-strategy-center-sports-handicap-analysis__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Mobile video responsive adaptation */
  .page-game-strategy-center-sports-handicap-analysis video,
  .page-game-strategy-center-sports-handicap-analysis__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-game-strategy-center-sports-handicap-analysis__video-section,
  .page-game-strategy-center-sports-handicap-analysis__video-container,
  .page-game-strategy-center-sports-handicap-analysis__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-game-strategy-center-sports-handicap-analysis__hero-section {
    padding-top: 10px !important; /* body already handles --header-offset */
  }

  .page-game-strategy-center-sports-handicap-analysis__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }

  .page-game-strategy-center-sports-handicap-analysis__faq-answer {
    padding: 0 20px 15px;
  }
}

@media (max-width: 480px) {
  .page-game-strategy-center-sports-handicap-analysis__main-title {
    font-size: clamp(1.8rem, 9vw, 2.2rem);
  }

  .page-game-strategy-center-sports-handicap-analysis__section-title {
    font-size: clamp(1.6rem, 8vw, 2rem);
  }

  .page-game-strategy-center-sports-handicap-analysis__card-title,
  .page-game-strategy-center-sports-handicap-analysis__type-title {
    font-size: 1.3rem;
  }

  .page-game-strategy-center-sports-handicap-analysis__list-title {
    font-size: 1.4rem;
  }
}