/* style/blog-32win11-popular-games-guide.css */

/* Base styles for the page content, assuming a dark body background from shared.css */
.page-blog-32win11-popular-games-guide {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-main-color, #F2FFF6); /* Default text color for dark background */
  background-color: var(--bg-color, #08160F); /* Default background color */
  padding-top: 10px; /* Small top padding, body handles --header-offset */
}

.page-blog-32win11-popular-games-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog-32win11-popular-games-guide__section-title {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  color: var(--text-main-color, #F2FFF6);
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.page-blog-32win11-popular-games-guide__text-block {
  font-size: 18px;
  margin-bottom: 20px;
  color: var(--text-secondary-color, #A7D9B8);
  text-align: justify;
}

.page-blog-32win11-popular-games-guide__highlight-text {
  color: var(--gold-color, #F2C14E);
  font-weight: bold;
}

.page-blog-32win11-popular-games-guide__list-heading {
  color: var(--text-main-color, #F2FFF6);
  font-weight: bold;
}

/* Color contrast classes */
.page-blog-32win11-popular-games-guide__dark-bg {
  background-color: var(--bg-color, #08160F);
  color: var(--text-main-color, #F2FFF6);
}

.page-blog-32win11-popular-games-guide__light-bg {
  background-color: var(--card-bg-color, #11271B);
  color: var(--text-main-color, #F2FFF6);
}

/* Hero Section */
.page-blog-32win11-popular-games-guide__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  overflow: hidden;
  text-align: center;
  padding: 10px 0 60px 0; /* Small top padding, body handles --header-offset */
}

.page-blog-32win12-popular-games-guide__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.page-blog-32win11-popular-games-guide__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5); /* Darken image for text readability */
}

.page-blog-32win11-popular-games-guide__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.page-blog-32win11-popular-games-guide__hero-title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  color: var(--text-main-color, #F2FFF6);
  margin: 0;
  line-height: 1.1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-blog-32win11-popular-games-guide__hero-description {
  font-size: clamp(18px, 2vw, 24px);
  color: var(--text-secondary-color, #A7D9B8);
  margin-bottom: 30px;
  max-width: 800px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Intro Section */
.page-blog-32win11-popular-games-guide__intro-section {
  padding: 60px 0;
}

/* Games Section */
.page-blog-32win11-popular-games-guide__games-section {
  padding: 60px 0;
}

.page-blog-32win11-popular-games-guide__game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-32win11-popular-games-guide__game-card {
  background-color: var(--card-bg-color, #11271B);
  border: 1px solid var(--border-color, #2E7A4E);
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  padding: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-blog-32win11-popular-games-guide__game-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.page-blog-32win11-popular-games-guide__game-card-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-blog-32win11-popular-games-guide__game-card-title a {
  color: var(--gold-color, #F2C14E);
  text-decoration: none;
}

.page-blog-32win11-popular-games-guide__game-card-title a:hover {
  text-decoration: underline;
}

.page-blog-32win11-popular-games-guide__game-card-description {
  font-size: 16px;
  color: var(--text-secondary-color, #A7D9B8);
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Registration Guide Section */
.page-blog-32win11-popular-games-guide__registration-guide {
  padding: 60px 0;
}

.page-blog-32win11-popular-games-guide__steps-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  counter-reset: step-counter;
}

.page-blog-32win11-popular-games-guide__steps-list li {
  position: relative;
  padding-left: 40px;
  margin-bottom: 20px;
  font-size: 18px;
  color: var(--text-secondary-color, #A7D9B8);
}

.page-blog-32win11-popular-games-guide__steps-list li::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  background-color: var(--main-color, #11A84E);
  color: var(--text-main-color, #F2FFF6);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 16px;
}

.page-blog-32win11-popular-games-guide__registration-image {
  width: 100%;
  height: auto;
  max-width: 800px;
  display: block;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-blog-32win11-popular-games-guide__mt-40 {
  margin-top: 40px;
}

/* Promotions Section */
.page-blog-32win11-popular-games-guide__promotions-section {
  padding: 60px 0;
}

.page-blog-32win11-popular-games-guide__promotions-list {
  list-style: disc;
  padding-left: 25px;
  margin-top: 30px;
}

.page-blog-32win11-popular-games-guide__promotions-list li {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--text-secondary-color, #A7D9B8);
}

/* Why Choose Us Section */
.page-blog-32win11-popular-games-guide__why-choose-us {
  padding: 60px 0;
}

.page-blog-32win11-popular-games-guide__features-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.page-blog-32win11-popular-games-guide__features-list li {
  background-color: var(--card-bg-color, #11271B);
  border: 1px solid var(--border-color, #2E7A4E);
  border-radius: 8px;
  padding: 20px;
  font-size: 18px;
  color: var(--text-secondary-color, #A7D9B8);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* FAQ Section */
.page-blog-32win11-popular-games-guide__faq-section {
  padding: 60px 0;
}

.page-blog-32win11-popular-games-guide__faq-list {
  margin-top: 40px;
}

.page-blog-32win11-popular-games-guide__faq-item {
  background-color: var(--card-bg-color, #11271B);
  border: 1px solid var(--border-color, #2E7A4E);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-32win11-popular-games-guide__faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  font-size: 20px;
  font-weight: bold;
  color: var(--text-main-color, #F2FFF6);
  background-color: var(--card-bg-color, #11271B);
}

.page-blog-32win11-popular-games-guide__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-blog-32win11-popular-games-guide__faq-qtext {
  flex-grow: 1;
}

.page-blog-32win11-popular-games-guide__faq-toggle {
  font-size: 24px;
  margin-left: 15px;
  transition: transform 0.3s ease;
  color: var(--gold-color, #F2C14E);
}

.page-blog-32win11-popular-games-guide__faq-item[open] .page-blog-32win11-popular-games-guide__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-32win11-popular-games-guide__faq-answer {
  padding: 0 20px 20px 20px;
  font-size: 16px;
  color: var(--text-secondary-color, #A7D9B8);
  line-height: 1.6;
}

/* Conclusion Section */
.page-blog-32win11-popular-games-guide__conclusion-section {
  padding: 60px 0;
  text-align: center;
}

/* Buttons */
.page-blog-32win11-popular-games-guide__btn-primary,
.page-blog-32win11-popular-games-guide__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box;
  max-width: 100%; /* Ensure buttons don't overflow */
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow long words to break */
}

.page-blog-32win11-popular-games-guide__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-blog-32win11-popular-games-guide__btn-primary:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
}

.page-blog-32win11-popular-games-guide__btn-secondary {
  background-color: transparent;
  color: var(--main-color, #11A84E);
  border: 2px solid var(--main-color, #11A84E);
  box-shadow: none;
}

.page-blog-32win11-popular-games-guide__btn-secondary:hover {
  background-color: var(--main-color, #11A84E);
  color: #ffffff;
}

/* Custom property definitions */
:root {
  --main-color: #11A84E;
  --accent-color: #22C768;
  --btn-gradient-start: #2AD16F;
  --btn-gradient-end: #13994A;
  --card-bg-color: #11271B;
  --bg-color: #08160F;
  --text-main-color: #F2FFF6;
  --text-secondary-color: #A7D9B8;
  --border-color: #2E7A4E;
  --glow-color: #57E38D;
  --gold-color: #F2C14E;
  --divider-color: #1E3A2A;
  --deep-green-color: #0A4B2C;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-32win11-popular-games-guide__hero-title {
    font-size: clamp(32px, 4.5vw, 56px);
  }

  .page-blog-32win11-popular-games-guide__hero-description {
    font-size: clamp(16px, 1.8vw, 20px);
  }

  .page-blog-32win11-popular-games-guide__game-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-blog-32win11-popular-games-guide {
    font-size: 16px;
    line-height: 1.6;
    padding-top: 10px !important; /* body already handles header offset */
  }

  .page-blog-32win11-popular-games-guide__container,
  .page-blog-32win11-popular-games-guide__hero-content {
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-32win11-popular-games-guide__section-title {
    font-size: clamp(24px, 6vw, 36px);
    margin-bottom: 30px;
  }

  .page-blog-32win11-popular-games-guide__text-block,
  .page-blog-32win11-popular-games-guide__steps-list li,
  .page-blog-32win11-popular-games-guide__promotions-list li,
  .page-blog-32win11-popular-games-guide__features-list li,
  .page-blog-32win11-popular-games-guide__faq-item summary,
  .page-blog-32win11-popular-games-guide__faq-answer {
    font-size: 16px;
  }

  .page-blog-32win11-popular-games-guide__hero-section {
    min-height: 450px;
    padding: 10px 0 40px 0;
  }

  .page-blog-32win11-popular-games-guide__hero-title {
    font-size: clamp(28px, 8vw, 40px);
  }

  .page-blog-32win11-popular-games-guide__hero-description {
    font-size: clamp(14px, 3.5vw, 18px);
  }

  .page-blog-32win11-popular-games-guide__game-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-blog-32win11-popular-games-guide__btn-primary,
  .page-blog-32win11-popular-games-guide__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px !important;
    font-size: 16px !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    margin-bottom: 10px; /* Space between stacked buttons */
  }

  .page-blog-32win11-popular-games-guide__registration-image {
    margin: 30px auto;
  }

  /* Mobile responsive images */
  .page-blog-32win11-popular-games-guide img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  /* All containers containing images, videos, buttons */
  .page-blog-32win11-popular-games-guide__hero-section,
  .page-blog-32win11-popular-games-guide__intro-section,
  .page-blog-32win11-popular-games-guide__games-section,
  .page-blog-32win11-popular-games-guide__registration-guide,
  .page-blog-32win11-popular-games-guide__promotions-section,
  .page-blog-32win11-popular-games-guide__why-choose-us,
  .page-blog-32win11-popular-games-guide__faq-section,
  .page-blog-32win11-popular-games-guide__conclusion-section,
  .page-blog-32win11-popular-games-guide__game-card,
  .page-blog-32win11-popular-games-guide__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    /* padding-left and padding-right are handled by .page-blog-32win11-popular-games-guide__container */
    overflow: hidden !important;
  }

  .page-blog-32win11-popular-games-guide__video-section {
    padding-top: 10px !important; /* body already handles --header-offset */
  }
}

/* No CSS filter on images */
.page-blog-32win11-popular-games-guide img {
  filter: none; /* Ensure no unwanted filters are applied */
}

.page-blog-32win11-popular-games-guide__hero-image {
  filter: brightness(0.5); /* This is an allowed adjustment for background images to improve text contrast */
}