/* style/blog-top-5-123win-91-games.css */
:root {
  --primary-color: #11A84E;
  --secondary-color: #22C768;
  --text-main-color: #F2FFF6;
  --text-secondary-color: #A7D9B8;
  --card-bg-color: #11271B;
  --background-color: #08160F;
  --border-color: #2E7A4E;
  --glow-color: #57E38D;
  --gold-color: #F2C14E;
  --divider-color: #1E3A2A;
  --deep-green-color: #0A4B2C;
  --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
}

.page-blog-top-5-123win-91-games {
  font-family: 'Arial', sans-serif;
  color: var(--text-main-color); /* Default text color for the page */
  background-color: var(--background-color); /* Body background is dark, so text is light */
  line-height: 1.6;
}

.page-blog-top-5-123win-91-games__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  overflow: hidden;
  box-sizing: border-box;
}

.page-blog-top-5-123win-91-games__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  filter: brightness(0.6); /* Darken image slightly for text readability */
}

.page-blog-top-5-123win-91-games__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4); /* Semi-transparent overlay for text */
  border-radius: 10px;
  box-sizing: border-box;
}

.page-blog-top-5-123win-91-games__main-title {
  font-size: clamp(2em, 5vw, 3.5em);
  color: var(--gold-color);
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-blog-top-5-123win-91-games__hero-description {
  font-size: clamp(1em, 2vw, 1.3em);
  color: var(--text-main-color);
  margin-bottom: 30px;
}

.page-blog-top-5-123win-91-games__section {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.page-blog-top-5-123win-91-games__content-area {
  background-color: var(--background-color);
  color: var(--text-main-color);
}

.page-blog-top-5-123win-91-games__section-title {
  font-size: clamp(1.8em, 4vw, 2.5em);
  color: var(--gold-color);
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
}

.page-blog-top-5-123win-91-games__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: var(--text-main-color);
}

.page-blog-top-5-123win-91-games__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.page-blog-top-5-123win-91-games__card {
  background-color: var(--card-bg-color);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--text-main-color);
}

.page-blog-top-5-123win-91-games__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3), 0 0 15px var(--glow-color);
}

.page-blog-top-5-123win-91-games__card-title {
  font-size: 1.5em;
  color: var(--gold-color);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-blog-top-5-123win-91-games__card-text {
  font-size: 1em;
  color: var(--text-secondary-color);
}

.page-blog-top-5-123win-91-games__game-list {
  background-color: var(--deep-green-color);
  color: var(--text-main-color);
  padding: 60px 20px;
  border-radius: 15px;
}

.page-blog-top-5-123win-91-games__game-card-wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 30px;
}

.page-blog-top-5-123win-91-games__game-card {
  display: flex;
  flex-direction: column;
  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);
}

.page-blog-top-5-123win-91-games__game-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

.page-blog-top-5-123win-91-games__game-info {
  padding: 25px;
  color: var(--text-main-color);
}

.page-blog-top-5-123win-91-games__game-title {
  font-size: 1.8em;
  color: var(--gold-color);
  margin-bottom: 10px;
  font-weight: bold;
}

.page-blog-top-5-123win-91-games__game-subtitle {
  font-size: 1.3em;
  color: var(--text-secondary-color);
  margin-top: 20px;
  margin-bottom: 10px;
  font-weight: normal;
}

.page-blog-top-5-123win-91-games__game-description {
  font-size: 1em;
  color: var(--text-secondary-color);
  margin-bottom: 15px;
}

.page-blog-top-5-123win-91-games__list {
  list-style: disc inside;
  margin-left: 20px;
  color: var(--text-secondary-color);
  margin-bottom: 20px;
}

.page-blog-top-5-123win-91-games__list-item {
  margin-bottom: 8px;
  font-size: 1em;
}

.page-blog-top-5-123win-91-games__step-by-step {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.page-blog-top-5-123win-91-games__step-item {
  background-color: var(--card-bg-color);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 25px;
  color: var(--text-main-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-blog-top-5-123win-91-games__step-title {
  font-size: 1.4em;
  color: var(--gold-color);
  margin-bottom: 10px;
  font-weight: bold;
}

.page-blog-top-5-123win-91-games__step-description {
  font-size: 0.95em;
  color: var(--text-secondary-color);
}

.page-blog-top-5-123win-91-games__image-inline {
  width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  max-width: 800px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-top-5-123win-91-games__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  text-align: center;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
  box-sizing: border-box;
}

.page-blog-top-5-123win-91-games__btn-primary {
  background: var(--button-gradient);
  color: #ffffff;
  border: none;
}

.page-blog-top-5-123win-91-games__btn-primary:hover {
  filter: brightness(1.1);
  box-shadow: 0 0 15px var(--glow-color);
  transform: translateY(-2px);
}

.page-blog-top-5-123win-91-games__cta-register {
  display: block;
  margin: 30px auto 0 auto;
  max-width: 400px;
}

.page-blog-top-5-123win-91-games__tips-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.page-blog-top-5-123win-91-games__tips-item {
  background-color: var(--card-bg-color);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 25px;
  color: var(--text-main-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-blog-top-5-123win-91-games__tips-title {
  font-size: 1.4em;
  color: var(--gold-color);
  margin-bottom: 10px;
  font-weight: bold;
}

.page-blog-top-5-123win-91-games__tips-description {
  font-size: 0.95em;
  color: var(--text-secondary-color);
}

.page-blog-top-5-123win-91-games__faq-section {
  background-color: var(--background-color);
  color: var(--text-main-color);
  padding: 60px 20px;
}

.page-blog-top-5-123win-91-games__faq-list {
  max-width: 800px;
  margin: 30px auto 0 auto;
}

.page-blog-top-5-123win-91-games__faq-item {
  background-color: var(--card-bg-color);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-top-5-123win-91-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: var(--text-main-color);
  cursor: pointer;
  background-color: var(--card-bg-color);
  border-bottom: 1px solid var(--divider-color);
  list-style: none; /* For details/summary */
}

.page-blog-top-5-123win-91-games__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-top-5-123win-91-games__faq-question:hover {
  background-color: var(--deep-green-color);
}

.page-blog-top-5-123win-91-games__faq-toggle {
  font-size: 1.5em;
  color: var(--gold-color);
  transition: transform 0.3s ease;
}

.page-blog-top-5-123win-91-games__faq-item[open] .page-blog-top-5-123win-91-games__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-top-5-123win-91-games__faq-answer {
  padding: 15px 25px 20px 25px;
  font-size: 1em;
  color: var(--text-secondary-color);
  background-color: var(--card-bg-color);
}

.page-blog-top-5-123win-91-games__conclusion-section {
  text-align: center;
  padding: 60px 20px;
  background-color: var(--deep-green-color);
  color: var(--text-main-color);
  border-radius: 15px;
  margin-bottom: 40px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-blog-top-5-123win-91-games__hero-content {
    padding: 15px;
  }

  .page-blog-top-5-123win-91-games__main-title {
    font-size: clamp(1.8em, 4.5vw, 3em);
  }

  .page-blog-top-5-123win-91-games__hero-description {
    font-size: clamp(0.9em, 1.8vw, 1.2em);
  }

  .page-blog-top-5-123win-91-games__section-title {
    font-size: clamp(1.6em, 3.5vw, 2.2em);
  }

  .page-blog-top-5-123win-91-games__game-card {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .page-blog-top-5-123win-91-games {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-top-5-123win-91-games__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important;
  }

  .page-blog-top-5-123win-91-games__hero-content {
    padding: 10px;
  }

  .page-blog-top-5-123win-91-games__main-title {
    font-size: clamp(1.6em, 6vw, 2.5em);
  }

  .page-blog-top-5-123win-91-games__hero-description {
    font-size: clamp(0.9em, 2.5vw, 1.1em);
  }

  .page-blog-top-5-123win-91-games__section,
  .page-blog-top-5-123win-91-games__game-list,
  .page-blog-top-5-123win-91-games__faq-section,
  .page-blog-top-5-123win-91-games__conclusion-section {
    padding: 30px 15px;
  }

  .page-blog-top-5-123win-91-games__section-title {
    font-size: clamp(1.5em, 5vw, 2em);
  }

  /* Images responsiveness */
  .page-blog-top-5-123win-91-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-top-5-123win-91-games__hero-image {
    height: 400px; /* Adjust hero image height for mobile */
  }

  .page-blog-top-5-123win-91-games__game-image {
    height: 200px; /* Adjust game card image height for mobile */
  }

  .page-blog-top-5-123win-91-games__image-inline {
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 15px; /* Add padding to prevent overflow */
    box-sizing: border-box;
  }

  /* Buttons responsiveness */
  .page-blog-top-5-123win-91-games__cta-button,
  .page-blog-top-5-123win-91-games__btn-primary,
  .page-blog-top-5-123win-91-games__btn-secondary,
  .page-blog-top-5-123win-91-games a[class*="button"],
  .page-blog-top-5-123win-91-games 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-top-5-123win-91-games__cta-register {
    max-width: 100% !important;
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .page-blog-top-5-123win-91-games__feature-grid,
  .page-blog-top-5-123win-91-games__step-by-step,
  .page-blog-top-5-123win-91-games__tips-list {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .page-blog-top-5-123win-91-games__game-card {
    padding: 0;
  }

  .page-blog-top-5-123win-91-games__game-info {
    padding: 20px;
  }

  .page-blog-top-5-123win-91-games__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }

  .page-blog-top-5-123win-91-games__faq-answer {
    padding: 10px 20px 15px 20px;
  }
}