/* style/blog-strategy-to-win-with-23.css */

/* Base styles for the page content, assuming a dark body background from shared.css */
.page-blog-strategy-to-win-with-23 {
  color: #FFF6D6; /* Text Main */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #0A0A0A; /* Background */
  padding-top: 10px; /* Small top padding for the first content block */
}

.page-blog-strategy-to-win-with-23__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Hero Section */
.page-blog-strategy-to-win-with-23__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 600px; /* Ensure hero section has a decent height */
  padding-bottom: 40px;
}

.page-blog-strategy-to-win-with-23__hero-image-wrapper {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.page-blog-strategy-to-win-with-23__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4); /* Darken image for text readability */
}

.page-blog-strategy-to-win-with-23__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay for text */
  border-radius: 8px;
  margin-top: 10px; /* Small margin to separate from potential header */
}

.page-blog-strategy-to-win-with-23__main-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem); /* Responsive font size */
  color: #FFD36B; /* Glow */
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.05em;
}

.page-blog-strategy-to-win-with-23__description {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: #FFF6D6; /* Text Main */
  margin-bottom: 30px;
}

.page-blog-strategy-to-win-with-23__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.page-blog-strategy-to-win-with-23__btn-primary,
.page-blog-strategy-to-win-with-23__btn-secondary {
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-blog-strategy-to-win-with-23__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button color */
  color: #111111;
  border: 2px solid transparent;
}

.page-blog-strategy-to-win-with-23__btn-primary:hover {
  background: linear-gradient(180deg, #FFD36B 0%, #F2C14E 100%);
  color: #0A0A0A;
}

.page-blog-strategy-to-win-with-23__btn-secondary {
  background: #111111; /* Card BG */
  color: #FFD36B; /* Glow */
  border: 2px solid #FFD36B; /* Glow */
}

.page-blog-strategy-to-win-with-23__btn-secondary:hover {
  background: #FFD36B; /* Glow */
  color: #111111;
  border-color: #FFD36B;
}

/* General Section Styles */
.page-blog-strategy-to-win-with-23__introduction-section,
.page-blog-strategy-to-win-with-23__significance-section,
.page-blog-strategy-to-win-with-23__strategy-section,
.page-blog-strategy-to-win-with-23__responsible-gaming-section,
.page-blog-strategy-to-win-with-23__advanced-tips-section,
.page-blog-strategy-to-win-with-23__conclusion-section {
  padding: 60px 0;
  border-bottom: 1px solid #3A2A12; /* Border */
}

.page-blog-strategy-to-win-with-23__introduction-section:last-of-type,
.page-blog-strategy-to-win-with-23__conclusion-section {
  border-bottom: none;
}

.page-blog-strategy-to-win-with-23__section-title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: #F2C14E; /* Main Color */
  text-align: center;
  margin-bottom: 40px;
  font-weight: 600;
}

.page-blog-strategy-to-win-with-23__sub-title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: #FFD36B; /* Glow */
  margin-top: 30px;
  margin-bottom: 20px;
  font-weight: 500;
}

.page-blog-strategy-to-win-with-23__text-block {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #FFF6D6; /* Text Main */
}

.page-blog-strategy-to-win-with-23__image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-blog-strategy-to-win-with-23__list {
  list-style: disc;
  margin-left: 20px;
  padding-left: 0;
  margin-bottom: 20px;
  color: #FFF6D6; /* Text Main */
}

.page-blog-strategy-to-win-with-23__list-item {
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.page-blog-strategy-to-win-with-23__list-item strong {
  color: #F2C14E; /* Main Color */
}

/* Copyright Section */
.page-blog-strategy-to-win-with-23__copyright-section {
  padding: 30px 0;
  text-align: center;
  background-color: #0A0A0A; /* Background */
}

.page-blog-strategy-to-win-with-23__copyright-text {
  font-size: 0.9rem;
  color: #FFF6D6; /* Text Main */
  margin: 0;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-blog-strategy-to-win-with-23__hero-content {
    padding: 15px;
  }

  .page-blog-strategy-to-win-with-23__main-title {
    font-size: clamp(2.2rem, 5vw, 3rem);
  }

  .page-blog-strategy-to-win-with-23__description {
    font-size: clamp(0.9rem, 1.8vw, 1.1rem);
  }
}

@media (max-width: 768px) {
  .page-blog-strategy-to-win-with-23 {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-strategy-to-win-with-23__hero-section {
    min-height: 500px;
    padding-bottom: 30px;
  }

  .page-blog-strategy-to-win-with-23__hero-content {
    max-width: 95%;
  }

  .page-blog-strategy-to-win-with-23__main-title {
    font-size: clamp(2rem, 6vw, 2.8rem);
  }

  .page-blog-strategy-to-win-with-23__description {
    font-size: clamp(0.9rem, 2.5vw, 1rem);
  }

  .page-blog-strategy-to-win-with-23__cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
  }

  .page-blog-strategy-to-win-with-23__btn-primary,
  .page-blog-strategy-to-win-with-23__btn-secondary,
  .page-blog-strategy-to-win-with-23 a[class*="button"],
  .page-blog-strategy-to-win-with-23 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-blog-strategy-to-win-with-23__section-title {
    font-size: clamp(1.8rem, 5.5vw, 2.5rem);
  }

  .page-blog-strategy-to-win-with-23__sub-title {
    font-size: clamp(1.3rem, 4vw, 1.8rem);
  }

  /* Mobile image responsiveness */
  .page-blog-strategy-to-win-with-23 img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-blog-strategy-to-win-with-23__section,
  .page-blog-strategy-to-win-with-23__card,
  .page-blog-strategy-to-win-with-23__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-strategy-to-win-with-23__hero-section {
    padding-top: 10px !important; /* Small top padding, body handles header-offset */
  }
}

@media (max-width: 480px) {
  .page-blog-strategy-to-win-with-23__hero-section {
    min-height: 400px;
  }

  .page-blog-strategy-to-win-with-23__main-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }

  .page-blog-strategy-to-win-with-23__description {
    font-size: clamp(0.85rem, 3vw, 0.95rem);
  }

  .page-blog-strategy-to-win-with-23__btn-primary,
  .page-blog-strategy-to-win-with-23__btn-secondary {
    padding: 12px 20px;
  }

  .page-blog-strategy-to-win-with-23__section-title {
    font-size: clamp(1.6rem, 6.5vw, 2.2rem);
  }

  .page-blog-strategy-to-win-with-23__sub-title {
    font-size: clamp(1.2rem, 5vw, 1.6rem);
  }

  .page-blog-strategy-to-win-with-23__text-block,
  .page-blog-strategy-to-win-with-23__list-item {
    font-size: 1rem;
  }
}