/* style/blog-how-to-play-shbet-win-sports.css */

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

.page-blog-how-to-play-shbet-win-sports {
  background-color: var(--shbetwin-bg); /* Body background from shared.css, this is for main content area */
  color: var(--shbetwin-text-main);
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-blog-how-to-play-shbet-win-sports__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top spacing, body padding-top handles header offset */
  padding-bottom: 60px;
  position: relative;
  overflow: hidden;
  background-color: var(--shbetwin-deep-green);
}

.page-blog-how-to-play-shbet-win-sports__hero-image-wrapper {
  width: 100%;
  max-height: 700px; /* Limit height for hero image */
  overflow: hidden;
  position: relative;
}

.page-blog-how-to-play-shbet-win-sports__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7); /* Slightly dim the image for text contrast, not changing color */
}

.page-blog-how-to-play-shbet-win-sports__hero-content {
  max-width: 1200px;
  width: 100%;
  text-align: center;
  padding: 20px;
  box-sizing: border-box;
  z-index: 2; /* Ensure content is above the image if any overlap occurs, though strictly 'image above text' layout */
  margin-top: 30px;
}

.page-blog-how-to-play-shbet-win-sports__main-title {
  color: var(--shbetwin-gold);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(87, 227, 141, 0.5);
}

.page-blog-how-to-play-shbet-win-sports__description {
  color: var(--shbetwin-text-main);
  font-size: 1.1rem;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-how-to-play-shbet-win-sports__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-blog-how-to-play-shbet-win-sports__cta-buttons--inline {
  justify-content: flex-start;
}

.page-blog-how-to-play-shbet-win-sports__cta-buttons--center {
  justify-content: center;
}

.page-blog-how-to-play-shbet-win-sports__btn-primary,
.page-blog-how-to-play-shbet-win-sports__btn-secondary {
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Ensure long words break */
  box-sizing: border-box;
  text-align: center;
}

.page-blog-how-to-play-shbet-win-sports__btn-primary {
  background: var(--shbetwin-button-gradient);
  color: var(--shbetwin-text-main);
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(17, 168, 78, 0.4);
}

.page-blog-how-to-play-shbet-win-sports__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(17, 168, 78, 0.6);
}

.page-blog-how-to-play-shbet-win-sports__btn-secondary {
  background-color: transparent;
  color: var(--shbetwin-secondary);
  border: 2px solid var(--shbetwin-secondary);
}

.page-blog-how-to-play-shbet-win-sports__btn-secondary:hover {
  background-color: var(--shbetwin-secondary);
  color: var(--shbetwin-bg);
  transform: translateY(-2px);
}

.page-blog-how-to-play-shbet-win-sports__section {
  padding: 60px 20px;
  background-color: var(--shbetwin-bg);
  border-bottom: 1px solid var(--shbetwin-divider);
}

.page-blog-how-to-play-shbet-win-sports__section:last-of-type {
  border-bottom: none;
}

.page-blog-how-to-play-shbet-win-sports__container {
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.page-blog-how-to-play-shbet-win-sports__section-title {
  color: var(--shbetwin-gold);
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-blog-how-to-play-shbet-win-sports__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--shbetwin-secondary);
  border-radius: 2px;
}

.page-blog-how-to-play-shbet-win-sports__text-block {
  color: var(--shbetwin-text-main);
  font-size: 1.05rem;
  margin-bottom: 20px;
  text-align: justify;
}

.page-blog-how-to-play-shbet-win-sports__text-block strong {
  color: var(--shbetwin-gold);
}

.page-blog-how-to-play-shbet-win-sports__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-how-to-play-shbet-win-sports__card {
  background-color: var(--shbetwin-card-bg);
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--shbetwin-border);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--shbetwin-text-main);
}

.page-blog-how-to-play-shbet-win-sports__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5);
}

.page-blog-how-to-play-shbet-win-sports__card-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
  object-fit: cover;
}

.page-blog-how-to-play-shbet-win-sports__card-title {
  color: var(--shbetwin-secondary);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.page-blog-how-to-play-shbet-win-sports__card-text {
  color: var(--shbetwin-text-secondary);
  font-size: 0.95rem;
  text-align: justify;
}

.page-blog-how-to-play-shbet-win-sports__step-card {
  background-color: var(--shbetwin-card-bg);
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 30px;
  border: 1px solid var(--shbetwin-border);
}

.page-blog-how-to-play-shbet-win-sports__step-title {
  color: var(--shbetwin-gold);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: left;
}

.page-blog-how-to-play-shbet-win-sports__step-content {
  display: flex;
  flex-direction: row;
  gap: 25px;
  align-items: flex-start;
}

.page-blog-how-to-play-shbet-win-sports__step-content p {
  margin-bottom: 15px;
  text-align: justify;
  flex: 1;
}

.page-blog-how-to-play-shbet-win-sports__step-image {
  max-width: 40%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}

.page-blog-how-to-play-shbet-win-sports__note {
  font-style: italic;
  color: var(--shbetwin-text-secondary);
  padding: 15px 20px;
  background-color: var(--shbetwin-deep-green);
  border-left: 5px solid var(--shbetwin-secondary);
  border-radius: 4px;
  margin-top: 40px;
}

.page-blog-how-to-play-shbet-win-sports__list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-blog-how-to-play-shbet-win-sports__list-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 25px;
  background-color: var(--shbetwin-card-bg);
  padding: 20px;
  border-radius: 10px;
  border: 1px solid var(--shbetwin-border);
  color: var(--shbetwin-text-main);
  font-size: 1.05rem;
}

.page-blog-how-to-play-shbet-win-sports__list-item strong {
  color: var(--shbetwin-secondary);
  font-weight: 700;
  flex-shrink: 0;
  width: 180px;
}

.page-blog-how-to-play-shbet-win-sports__list-icon {
  width: 80px;
  height: 80px;
  min-width: 80px;
  min-height: 80px;
  border-radius: 50%;
  object-fit: cover;
  background-color: var(--shbetwin-deep-green);
  padding: 5px;
  border: 2px solid var(--shbetwin-secondary);
  flex-shrink: 0;
  display: block;
}

.page-blog-how-to-play-shbet-win-sports__promotions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-how-to-play-shbet-win-sports__card--promotion {
  background-color: var(--shbetwin-card-bg);
  border: 1px solid var(--shbetwin-border);
  color: var(--shbetwin-text-main);
  text-align: left;
}

.page-blog-how-to-play-shbet-win-sports__card--promotion .page-blog-how-to-play-shbet-win-sports__card-title {
  color: var(--shbetwin-gold);
}

.page-blog-how-to-play-shbet-win-sports__faq-list {
  margin-top: 40px;
}

.page-blog-how-to-play-shbet-win-sports__faq-item {
  background-color: var(--shbetwin-card-bg);
  border: 1px solid var(--shbetwin-border);
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--shbetwin-text-main);
}

.page-blog-how-to-play-shbet-win-sports__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--shbetwin-gold);
  background-color: var(--shbetwin-deep-green);
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

.page-blog-how-to-play-shbet-win-sports__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-how-to-play-shbet-win-sports__faq-question:hover {
  background-color: var(--shbetwin-primary);
}

.page-blog-how-to-play-shbet-win-sports__faq-toggle {
  font-size: 1.8rem;
  line-height: 1;
  transition: transform 0.3s ease;
  color: var(--shbetwin-text-main);
}

.page-blog-how-to-play-shbet-win-sports__faq-item[open] .page-blog-how-to-play-shbet-win-sports__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-how-to-play-shbet-win-sports__faq-answer {
  padding: 20px 25px;
  font-size: 1rem;
  color: var(--shbetwin-text-secondary);
  background-color: var(--shbetwin-card-bg);
  text-align: justify;
}

.page-blog-how-to-play-shbet-win-sports__faq-answer p {
  margin-bottom: 0;
}

.page-blog-how-to-play-shbet-win-sports__conclusion .page-blog-how-to-play-shbet-win-sports__text-block {
  text-align: center;
}

.page-blog-how-to-play-shbet-win-sports__date {
  text-align: center;
  font-style: italic;
  color: var(--shbetwin-text-secondary);
  margin-top: 30px;
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-how-to-play-shbet-win-sports__hero-image {
    max-height: 500px;
  }

  .page-blog-how-to-play-shbet-win-sports__main-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }

  .page-blog-how-to-play-shbet-win-sports__step-content {
    flex-direction: column;
    align-items: center;
  }

  .page-blog-how-to-play-shbet-win-sports__step-image {
    max-width: 80%;
    margin-bottom: 20px;
  }

  .page-blog-how-to-play-shbet-win-sports__list-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .page-blog-how-to-play-shbet-win-sports__list-item strong {
    width: auto;
    margin-bottom: 10px;
  }
}

@media (max-width: 768px) {
  .page-blog-how-to-play-shbet-win-sports__hero-section {
    padding-bottom: 40px;
  }

  .page-blog-how-to-play-shbet-win-sports__hero-image {
    max-height: 400px;
  }

  .page-blog-how-to-play-shbet-win-sports__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  .page-blog-how-to-play-shbet-win-sports__description {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .page-blog-how-to-play-shbet-win-sports__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-blog-how-to-play-shbet-win-sports__btn-primary,
  .page-blog-how-to-play-shbet-win-sports__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 0.95rem;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-blog-how-to-play-shbet-win-sports__cta-buttons--inline {
    flex-direction: column;
    align-items: center;
  }

  .page-blog-how-to-play-shbet-win-sports__section {
    padding: 40px 15px;
  }

  .page-blog-how-to-play-shbet-win-sports__container {
    padding-left: 15px;
    padding-right: 15px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-blog-how-to-play-shbet-win-sports__section-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .page-blog-how-to-play-shbet-win-sports__text-block {
    font-size: 0.95rem;
  }

  .page-blog-how-to-play-shbet-win-sports__grid,
  .page-blog-how-to-play-shbet-win-sports__promotions-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .page-blog-how-to-play-shbet-win-sports__card-image,
  .page-blog-how-to-play-shbet-win-sports__step-image,
  .page-blog-how-to-play-shbet-win-sports__list-icon,
  .page-blog-how-to-play-shbet-win-sports img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    box-sizing: border-box !important;
  }

  .page-blog-how-to-play-shbet-win-sports__step-content {
    flex-direction: column;
    gap: 15px;
  }

  .page-blog-how-to-play-shbet-win-sports__list-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
    padding: 15px;
  }

  .page-blog-how-to-play-shbet-win-sports__list-item strong {
    width: auto;
  }

  .page-blog-how-to-play-shbet-win-sports__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }

  .page-blog-how-to-play-shbet-win-sports__faq-answer {
    font-size: 0.95rem;
    padding: 15px 20px;
  }
}