/* style/blog-how-to-play-winph-games.css */
.page-blog-how-to-play-winph-games {
  color: #FFF6D6; /* Text Main */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  font-size: 16px;
}

.page-blog-how-to-play-winph-games__hero-section {
  padding-top: var(--header-offset, 120px); /* Desktop padding for fixed header */
  background: linear-gradient(135deg, #F2C14E, #FFD36B);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-blog-how-to-play-winph-games__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.page-blog-how-to-play-winph-games__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-blog-how-to-play-winph-games__hero-content {
  padding: 40px 20px;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  background: rgba(10, 10, 10, 0.7); /* Background for text on hero image */
  border-radius: 8px;
  margin-top: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-blog-how-to-play-winph-games__main-title {
  font-size: clamp(2.2em, 4vw, 3.2em);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
  line-height: 1.2;
}

.page-blog-how-to-play-winph-games__hero-description {
  font-size: 1.1em;
  color: #f0f0f0;
  margin-bottom: 30px;
}

.page-blog-how-to-play-winph-games__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.page-blog-how-to-play-winph-games__btn-primary,
.page-blog-how-to-play-winph-games__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
}

.page-blog-how-to-play-winph-games__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111; /* Dark text for bright button */
  border: none;
}

.page-blog-how-to-play-winph-games__btn-primary:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.page-blog-how-to-play-winph-games__btn-secondary {
  background: #111111; /* Card BG */
  color: #FFF6D6; /* Text Main */
  border: 1px solid #F2C14E;
}

.page-blog-how-to-play-winph-games__btn-secondary:hover {
  transform: translateY(-2px);
  background: #222222;
}

.page-blog-how-to-play-winph-games__content-section {
  padding: 60px 0;
  background: #0A0A0A; /* Background */
}

.page-blog-how-to-play-winph-games__dark-section {
  background: #111111; /* Card BG */
}

.page-blog-how-to-play-winph-games__container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-blog-how-to-play-winph-games__section-title {
  font-size: 2.5em;
  color: #F2C14E; /* Main color */
  margin-bottom: 30px;
  text-align: center;
  font-weight: 700;
}

.page-blog-how-to-play-winph-games__sub-section-title {
  font-size: 1.8em;
  color: #FFD36B; /* Auxiliary color */
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: 600;
}

.page-blog-how-to-play-winph-games__text-block {
  margin-bottom: 20px;
  color: #FFF6D6; /* Text Main */
}

.page-blog-how-to-play-winph-games__image-full-width {
  width: 100%;
  height: auto;
  display: block;
  margin: 40px 0;
  border-radius: 8px;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

.page-blog-how-to-play-winph-games__image-centered {
  display: block;
  margin: 40px auto;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-blog-how-to-play-winph-games {
    font-size: 15px;
    line-height: 1.5;
  }

  .page-blog-how-to-play-winph-games__hero-section {
    padding-top: var(--header-offset, 120px) !important; /* Mobile padding for fixed header */
  }

  .page-blog-how-to-play-winph-games__hero-content {
    padding: 30px 15px;
    margin-top: 10px;
  }

  .page-blog-how-to-play-winph-games__main-title {
    font-size: 1.8em;
    margin-bottom: 10px;
  }

  .page-blog-how-to-play-winph-games__hero-description {
    font-size: 1em;
    margin-bottom: 20px;
  }

  .page-blog-how-to-play-winph-games__cta-buttons {
    flex-direction: column;
    gap: 10px;
    padding: 0 15px;
  }

  .page-blog-how-to-play-winph-games__btn-primary,
  .page-blog-how-to-play-winph-games__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-how-to-play-winph-games__content-section {
    padding: 40px 0;
  }

  .page-blog-how-to-play-winph-games__container {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-blog-how-to-play-winph-games__section-title {
    font-size: 2em;
    margin-bottom: 25px;
  }

  .page-blog-how-to-play-winph-games__sub-section-title {
    font-size: 1.5em;
    margin-top: 30px;
    margin-bottom: 15px;
  }

  .page-blog-how-to-play-winph-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
}