/* style/game-strategies-sports-betting.css */
/* body đã padding-top: var(--header-offset)；trang này không được viết lại biến đó */
.page-game-strategies-sports-betting {
  background-color: var(--background-color, #08160F); /* Fallback nếu shared không có */
  color: var(--text-main-color, #F2FFF6); /* Text Main */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-game-strategies-sports-betting__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column; /* Sẽ là column trên mobile và desktop */
  align-items: center;
  padding-top: 10px; /* Small top padding as per rule */
  padding-bottom: 60px;
  background-color: #08160F; /* Background */
}

.page-game-strategies-sports-betting__hero-image-wrapper {
  width: 100%;
  max-width: 100%; /* Ensure it takes full width */
  overflow: hidden;
}

.page-game-strategies-sports-betting__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-game-strategies-sports-betting__hero-content {
  max-width: 1200px;
  width: 100%; /* Added for flex item responsiveness */
  text-align: center;
  padding: 20px;
  box-sizing: border-box;
  color: #F2FFF6; /* Text Main */
}

.page-game-strategies-sports-betting__main-title {
  font-size: clamp(2em, 4vw, 3.2em); /* Use clamp for h1 */
  font-weight: bold;
  margin-bottom: 20px;
  color: #F2C14E; /* Gold */
  line-height: 1.2;
}

.page-game-strategies-sports-betting__hero-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #A7D9B8; /* Text Secondary */
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-game-strategies-sports-betting__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap; /* Allow wrapping on smaller screens */
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  box-sizing: border-box;
}

.page-game-strategies-sports-betting__btn-primary,
.page-game-strategies-sports-betting__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  box-sizing: border-box;
  text-align: center;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
  max-width: 100%; /* Ensure button doesn't overflow */
}

.page-game-strategies-sports-betting__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button color */
  color: #F2FFF6; /* Text Main */
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-game-strategies-sports-betting__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-game-strategies-sports-betting__btn-secondary {
  background: transparent;
  color: #2AD16F; /* A lighter green from the gradient */
  border: 2px solid #2AD16F; /* Match primary button's highlight color */
}

.page-game-strategies-sports-betting__btn-secondary:hover {
  background: #2AD16F;
  color: #08160F; /* Background color for contrast */
}

.page-game-strategies-sports-betting__section {
  padding: 60px 20px;
  background-color: #08160F; /* Background */
  color: #F2FFF6; /* Text Main */
}

.page-game-strategies-sports-betting__section:nth-of-type(odd) {
  background-color: #11271B; /* Card BG for alternating sections */
}

.page-game-strategies-sports-betting__container {
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.page-game-strategies-sports-betting__section-title {
  font-size: clamp(1.8em, 3.5vw, 2.8em);
  color: #F2C14E; /* Gold */
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-game-strategies-sports-betting__section-intro {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  color: #A7D9B8; /* Text Secondary */
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-game-strategies-sports-betting__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-game-strategies-sports-betting__card {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  text-align: left;
  display: flex;
  flex-direction: column;
  color: #F2FFF6; /* Text Main */
  height: 100%; /* Ensure cards in a row have equal height */
  box-sizing: border-box;
}

.page-game-strategies-sports-betting__card-title {
  font-size: 1.4em;
  color: #57E38D; /* Glow */
  margin-bottom: 15px;
  font-weight: bold;
  line-height: 1.3;
}

.page-game-strategies-sports-betting__card-image {
  width: 100%;
  height: auto;
  max-height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  display: block; /* Ensures no extra space below image */
}

.page-game-strategies-sports-betting__card p {
  font-size: 1em;
  color: #A7D9B8; /* Text Secondary */
  flex-grow: 1; /* Pushes content to fill space */
}

/* FAQ Section */
.page-game-strategies-sports-betting__faq-section {
  background-color: #08160F; /* Background */
  padding-bottom: 80px;
}

.page-game-strategies-sports-betting__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-game-strategies-sports-betting__faq-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-game-strategies-sports-betting__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  cursor: pointer;
  background-color: #11271B; /* Card BG */
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

.page-game-strategies-sports-betting__faq-question::-webkit-details-marker {
  display: none;
}

.page-game-strategies-sports-betting__faq-question:hover {
  background-color: #1E3A2A; /* Divider for hover */
}

.page-game-strategies-sports-betting__faq-qtext {
  flex-grow: 1;
}

.page-game-strategies-sports-betting__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: #57E38D; /* Glow */
}

.page-game-strategies-sports-betting__faq-answer {
  padding: 0 25px 20px;
  font-size: 1em;
  color: #A7D9B8; /* Text Secondary */
  line-height: 1.7;
}

/* Conclusion Section */
.page-game-strategies-sports-betting__conclusion {
  text-align: center;
  padding-bottom: 80px;
  background-color: #11271B; /* Card BG */
}

/* --- Responsive Design --- */
@media (max-width: 1024px) {
  .page-game-strategies-sports-betting__main-title {
    font-size: clamp(1.8em, 4vw, 2.8em);
  }
  .page-game-strategies-sports-betting__section-title {
    font-size: clamp(1.6em, 3.5vw, 2.5em);
  }
  .page-game-strategies-sports-betting__grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  /* Mobile general padding */
  .page-game-strategies-sports-betting__hero-section,
  .page-game-strategies-sports-betting__section {
    padding: 40px 15px !important;
  }

  .page-game-strategies-sports-betting__container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  /* Images */
  .page-game-strategies-sports-betting img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-game-strategies-sports-betting__hero-image-wrapper,
  .page-game-strategies-sports-betting__card {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important; /* Ensure no overflow for image containers */
  }

  /* Buttons */
  .page-game-strategies-sports-betting__cta-buttons {
    flex-direction: column !important;
    gap: 15px !important;
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-game-strategies-sports-betting__btn-primary,
  .page-game-strategies-sports-betting__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px !important;
    font-size: 1em !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-game-strategies-sports-betting__main-title {
    font-size: clamp(1.6em, 8vw, 2.2em);
  }
  .page-game-strategies-sports-betting__section-title {
    font-size: clamp(1.4em, 7vw, 2em);
  }
  .page-game-strategies-sports-betting__hero-description,
  .page-game-strategies-sports-betting__section-intro,
  .page-game-strategies-sports-betting__card p,
  .page-game-strategies-sports-betting__faq-answer p {
    font-size: 15px;
  }
  .page-game-strategies-sports-betting__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-game-strategies-sports-betting__faq-answer {
    padding: 0 20px 15px;
  }
}