/* style/blog-m-win55-game-guides.css */
:root {
  --page-bg-color: #08160F;
  --card-bg-color: #11271B;
  --text-main-color: #F2FFF6;
  --text-secondary-color: #A7D9B8;
  --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --border-color: #2E7A4E;
  --glow-color: #57E38D;
  --gold-color: #F2C14E;
  --divider-color: #1E3A2A;
  --deep-green-color: #0A4B2C;
}

.page-blog-m-win55-game-guides {
  background-color: var(--page-bg-color);
  color: var(--text-main-color);
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-blog-m-win55-game-guides__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: 60px;
  overflow: hidden;
}

.page-blog-m-win55-game-guides__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  max-height: 600px;
}

.page-blog-m-win55-game-guides__hero-content {
  text-align: center;
  padding: 20px;
  max-width: 900px;
  margin-top: -100px; /* Adjust as needed to overlap slightly without obscuring image content */
  position: relative; /* Ensure text is above any non-image background */
  z-index: 1; /* Ensure text is above image if any overlap happens due to negative margin */
  background: rgba(8, 22, 15, 0.8); /* Semi-transparent background for readability */
  padding: 30px;
  border-radius: 8px;
}

.page-blog-m-win55-game-guides__main-title {
  font-size: clamp(2em, 4vw, 3.2em);
  color: var(--text-main-color);
  margin-bottom: 15px;
  font-weight: bold;
  line-height: 1.2;
}

.page-blog-m-win55-game-guides__description {
  font-size: 1.1em;
  color: var(--text-secondary-color);
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-m-win55-game-guides__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog-m-win55-game-guides__section-title {
  font-size: 2.5em;
  color: var(--gold-color);
  text-align: center;
  margin-bottom: 40px;
  padding-top: 40px;
}

.page-blog-m-win55-game-guides__sub-title {
  font-size: 1.5em;
  color: var(--text-main-color);
  margin-top: 25px;
  margin-bottom: 15px;
}

.page-blog-m-win55-game-guides__text-block {
  font-size: 1.05em;
  margin-bottom: 20px;
  color: var(--text-main-color);
}

.page-blog-m-win55-game-guides__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: var(--text-main-color);
}

.page-blog-m-win55-game-guides__list li {
  margin-bottom: 10px;
}

.page-blog-m-win55-game-guides__list li strong {
  color: var(--gold-color);
}

.page-blog-m-win55-game-guides__btn-primary,
.page-blog-m-win55-game-guides__btn-secondary {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  margin: 10px;
  cursor: pointer;
  max-width: 100%; /* Button responsiveness */
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-m-win55-game-guides__btn-primary {
  background: var(--button-gradient);
  color: #ffffff;
  border: none;
}

.page-blog-m-win55-game-guides__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-blog-m-win55-game-guides__btn-secondary {
  background: transparent;
  color: var(--gold-color);
  border: 2px solid var(--gold-color);
}

.page-blog-m-win55-game-guides__btn-secondary:hover {
  background: var(--gold-color);
  color: var(--page-bg-color);
  transform: translateY(-2px);
}

.page-blog-m-win55-game-guides__btn-text {
  color: var(--gold-color);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-blog-m-win55-game-guides__btn-text:hover {
  color: var(--glow-color);
  text-decoration: underline;
}

.page-blog-m-win55-game-guides__cta-group {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
  margin-bottom: 30px;
}

.page-blog-m-win55-game-guides__introduction-section,
.page-blog-m-win55-game-guides__games-section,
.page-blog-m-win55-game-guides__promotions-section,
.page-blog-m-win55-game-guides__app-download-section {
  padding: 60px 0;
  background-color: var(--page-bg-color);
}

.page-blog-m-win55-game-guides__registration-section,
.page-blog-m-win55-game-guides__strategy-section,
.page-blog-m-win55-game-guides__faq-section,
.page-blog-m-win55-game-guides__conclusion-section {
  padding: 60px 0;
  background-color: var(--card-bg-color);
}

.page-blog-m-win55-game-guides__dark-bg {
  background-color: var(--deep-green-color);
  color: var(--text-main-color);
}

.page-blog-m-win55-game-guides__content-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.page-blog-m-win55-game-guides__content-wrapper--reversed {
  flex-direction: row-reverse;
}

.page-blog-m-win55-game-guides__text-content {
  flex: 1;
}

.page-blog-m-win55-game-guides__image-wrapper {
  flex: 1;
  text-align: center;
}

.page-blog-m-win55-game-guides__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  display: block;
  margin: 0 auto;
}

.page-blog-m-win55-game-guides__image--centered {
  margin-top: 40px;
}

.page-blog-m-win55-game-guides__game-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-m-win55-game-guides__game-card {
  background-color: var(--card-bg-color);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  padding-bottom: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-blog-m-win55-game-guides__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-m-win55-game-guides__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  margin-bottom: 15px;
}

.page-blog-m-win55-game-guides__card-title {
  font-size: 1.3em;
  color: var(--gold-color);
  margin: 0 15px 10px;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-blog-m-win55-game-guides__card-title a {
  color: inherit;
  text-decoration: none;
}

.page-blog-m-win55-game-guides__card-title a:hover {
  color: var(--glow-color);
  text-decoration: underline;
}

.page-blog-m-win55-game-guides__card-text {
  font-size: 0.95em;
  color: var(--text-secondary-color);
  padding: 0 15px;
  margin-bottom: 20px;
  min-height: 80px;
}

.page-blog-m-win55-game-guides__strategy-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-blog-m-win55-game-guides__list-item {
  background-color: var(--card-bg-color);
  border-left: 5px solid var(--gold-color);
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-blog-m-win55-game-guides__list-item p {
  color: var(--text-secondary-color);
  margin-bottom: 0;
}

.page-blog-m-win55-game-guides__faq-list {
  margin-top: 40px;
}

.page-blog-m-win55-game-guides__faq-item {
  background-color: var(--card-bg-color);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-m-win55-game-guides__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: bold;
  color: var(--text-main-color);
  background-color: var(--deep-green-color);
  border-bottom: 1px solid var(--border-color);
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

.page-blog-m-win55-game-guides__faq-question:hover {
  background-color: var(--page-bg-color);
}

.page-blog-m-win55-game-guides__faq-item[open] > .page-blog-m-win55-game-guides__faq-question {
  background-color: var(--page-bg-color);
}

.page-blog-m-win55-game-guides__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-m-win55-game-guides__faq-qtext {
  flex-grow: 1;
}

.page-blog-m-win55-game-guides__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: var(--gold-color);
}

.page-blog-m-win55-game-guides__faq-answer {
  padding: 20px 25px;
  font-size: 1.05em;
  color: var(--text-secondary-color);
}

.page-blog-m-win55-game-guides__faq-answer p {
  margin-bottom: 10px;
}

.page-blog-m-win55-game-guides__faq-answer a {
  color: var(--gold-color);
  text-decoration: none;
  font-weight: bold;
}

.page-blog-m-win55-game-guides__faq-answer a:hover {
  text-decoration: underline;
}

.page-blog-m-win55-game-guides__content-wrapper.page-blog-m-win55-game-guides__content-wrapper--reversed {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 40px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-blog-m-win55-game-guides__hero-content {
    margin-top: -50px;
    padding: 25px;
  }

  .page-blog-m-win55-game-guides__main-title {
    font-size: clamp(1.8em, 5vw, 2.8em);
  }

  .page-blog-m-win55-game-guides__section-title {
    font-size: 2em;
  }

  .page-blog-m-win55-game-guides__sub-title {
    font-size: 1.3em;
  }

  .page-blog-m-win55-game-guides__content-wrapper,
  .page-blog-m-win55-game-guides__content-wrapper--reversed {
    flex-direction: column;
    gap: 30px;
  }

  .page-blog-m-win55-game-guides__text-content,
  .page-blog-m-win55-game-guides__image-wrapper {
    flex: none;
    width: 100%;
  }

  .page-blog-m-win55-game-guides__image--centered {
    max-width: 80%;
  }

  .page-blog-m-win55-game-guides__game-categories {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .page-blog-m-win55-game-guides__card-image {
    height: 180px;
  }
}

@media (max-width: 768px) {
  .page-blog-m-win55-game-guides {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-m-win55-game-guides__hero-content {
    margin-top: -30px;
    padding: 20px;
  }

  .page-blog-m-win55-game-guides__main-title {
    font-size: clamp(1.5em, 6vw, 2.5em);
  }

  .page-blog-m-win55-game-guides__description {
    font-size: 1em;
  }

  .page-blog-m-win55-game-guides__section-title {
    font-size: 1.8em;
    padding-top: 30px;
  }

  .page-blog-m-win55-game-guides__sub-title {
    font-size: 1.2em;
  }

  .page-blog-m-win55-game-guides__container,
  .page-blog-m-win55-game-guides__hero-section,
  .page-blog-m-win55-game-guides__introduction-section,
  .page-blog-m-win55-game-guides__registration-section,
  .page-blog-m-win55-game-guides__games-section,
  .page-blog-m-win55-game-guides__strategy-section,
  .page-blog-m-win55-game-guides__promotions-section,
  .page-blog-m-win55-game-guides__faq-section,
  .page-blog-m-win55-game-guides__app-download-section,
  .page-blog-m-win55-game-guides__conclusion-section,
  .page-blog-m-win55-game-guides__content-wrapper,
  .page-blog-m-win55-game-guides__content-wrapper--reversed,
  .page-blog-m-win55-game-guides__game-categories,
  .page-blog-m-win55-game-guides__game-card,
  .page-blog-m-win55-game-guides__list-item,
  .page-blog-m-win55-game-guides__faq-item,
  .page-blog-m-win55-game-guides__faq-question,
  .page-blog-m-win55-game-guides__faq-answer {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .page-blog-m-win55-game-guides__hero-section {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .page-blog-m-win55-game-guides__hero-image {
    width: 100% !important;
    height: auto !important;
  }

  .page-blog-m-win55-game-guides__image,
  .page-blog-m-win55-game-guides__card-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-m-win55-game-guides__cta-button,
  .page-blog-m-win55-game-guides__btn-primary,
  .page-blog-m-win55-game-guides__btn-secondary,
  .page-blog-m-win55-game-guides a[class*="button"],
  .page-blog-m-win55-game-guides a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    margin: 10px 0 !important;
  }

  .page-blog-m-win55-game-guides__cta-group {
    flex-direction: column;
    gap: 10px;
  }

  .page-blog-m-win55-game-guides__video-section {
    padding-top: 10px !important;
  }
}