/* style/blog-explore-32win11-login-games-features.css */
:root {
  --color-primary: #11A84E;
  --color-secondary: #22C768;
  --color-button-gradient-start: #2AD16F;
  --color-button-gradient-end: #13994A;
  --color-card-bg: #11271B;
  --color-background: #08160F;
  --color-text-main: #F2FFF6;
  --color-text-secondary: #A7D9B8;
  --color-border: #2E7A4E;
  --color-glow: #57E38D;
  --color-gold: #F2C14E;
  --color-divider: #1E3A2A;
  --color-deep-green: #0A4B2C;
  --color-white: #ffffff;
  --color-dark-text: #333333;
}

.page-blog-explore-32win11-login-games-features {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--color-text-main); /* Default text color for the page */
  background-color: var(--color-background); /* Overall page background */
}

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

/* Sections */
.page-blog-explore-32win11-login-games-features__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  color: var(--color-text-main);
  overflow: hidden;
}

.page-blog-explore-32win11-login-games-features__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

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

.page-blog-explore-32win11-login-games-features__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4); /* Semi-transparent background for text */
  border-radius: 10px;
}

.page-blog-explore-32win11-login-games-features__main-title {
  font-size: clamp(2em, 4vw, 3.5em);
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--color-gold);
  line-height: 1.2;
  letter-spacing: 0.05em;
  text-shadow: 0 0 10px rgba(242, 193, 78, 0.7);
}

.page-blog-explore-32win11-login-games-features__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: var(--color-text-main);
}

.page-blog-explore-32win11-login-games-features__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-blog-explore-32win11-login-games-features__intro-section, 
.page-blog-explore-32win11-login-games-features__features-section,
.page-blog-explore-32win11-login-games-features__guide-section,
.page-blog-explore-32win11-login-games-features__faq-section {
  padding: 60px 0;
  background-color: var(--color-background); /* Consistent background */
  color: var(--color-text-main);
}

.page-blog-explore-32win11-login-games-features__games-section,
.page-blog-explore-32win11-login-games-features__promotions-section,
.page-blog-explore-32win11-login-games-features__app-section,
.page-blog-explore-32win11-login-games-features__conclusion-section {
  padding: 60px 0;
  background-color: var(--color-card-bg); /* Darker background for contrast */
  color: var(--color-text-main);
}

.page-blog-explore-32win11-login-games-features__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 40px;
  color: var(--color-gold);
  text-shadow: 0 0 8px rgba(242, 193, 78, 0.5);
}

.page-blog-explore-32win11-login-games-features__sub-title {
  font-size: 1.8em;
  color: var(--color-primary);
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-blog-explore-32win11-login-games-features__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: var(--color-text-secondary);
}

/* Buttons */
.page-blog-explore-32win11-login-games-features__btn-primary,
.page-blog-explore-32win11-login-games-features__btn-secondary,
.page-blog-explore-32win11-login-games-features__btn-outline {
  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;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
}

.page-blog-explore-32win11-login-games-features__btn-primary {
  background: linear-gradient(180deg, var(--color-button-gradient-start) 0%, var(--color-button-gradient-end) 100%);
  color: var(--color-white);
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(17, 168, 78, 0.4);
}

.page-blog-explore-32win11-login-games-features__btn-primary:hover {
  background: linear-gradient(180deg, var(--color-button-gradient-end) 0%, var(--color-button-gradient-start) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(17, 168, 78, 0.6);
}

.page-blog-explore-32win11-login-games-features__btn-secondary {
  background-color: transparent;
  color: var(--color-button-gradient-start);
  border: 2px solid var(--color-button-gradient-start);
}

.page-blog-explore-32win11-login-games-features__btn-secondary:hover {
  background-color: var(--color-button-gradient-start);
  color: var(--color-white);
  transform: translateY(-2px);
}

.page-blog-explore-32win11-login-games-features__btn-outline {
  background-color: transparent;
  color: var(--color-gold);
  border: 1px solid var(--color-gold);
  padding: 10px 20px;
  font-size: 1em;
}

.page-blog-explore-32win11-login-games-features__btn-outline:hover {
  background-color: var(--color-gold);
  color: var(--color-card-bg);
}

.page-blog-explore-32win11-login-games-features__cta-center {
  text-align: center;
  margin-top: 40px;
}

/* Game Cards */
.page-blog-explore-32win11-login-games-features__game-category {
  margin-bottom: 50px;
}

.page-blog-explore-32win11-login-games-features__category-title {
  font-size: 2em;
  color: var(--color-primary);
  text-align: center;
  margin-bottom: 30px;
  text-shadow: 0 0 5px rgba(34, 199, 104, 0.3);
}

.page-blog-explore-32win11-login-games-features__game-card {
  display: flex;
  align-items: center;
  background-color: var(--color-background);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--color-border);
  margin-bottom: 30px;
}

.page-blog-explore-32win11-login-games-features__game-card:nth-child(even) {
  flex-direction: row-reverse;
}

.page-blog-explore-32win11-login-games-features__card-image {
  width: 50%;
  height: auto;
  object-fit: cover;
  display: block;
  min-width: 200px;
  min-height: 200px;
}

.page-blog-explore-32win11-login-games-features__card-content {
  width: 50%;
  padding: 30px;
  color: var(--color-text-secondary);
}

.page-blog-explore-32win11-login-games-features__card-content p {
  margin-bottom: 20px;
}

/* Features Grid */
.page-blog-explore-32win11-login-games-features__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-blog-explore-32win11-login-games-features__feature-item {
  background-color: var(--color-background);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-blog-explore-32win11-login-games-features__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-blog-explore-32win11-login-games-features__feature-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px var(--color-primary));
  min-width: 200px; /* Ensure minimum size */
  min-height: 200px; /* Ensure minimum size */
}

.page-blog-explore-32win11-login-games-features__feature-title {
  font-size: 1.5em;
  color: var(--color-primary);
  margin-bottom: 15px;
}

.page-blog-explore-32win11-login-games-features__feature-item p {
  color: var(--color-text-secondary);
}

/* Promotions List */
.page-blog-explore-32win11-login-games-features__promo-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-blog-explore-32win11-login-games-features__promo-list li {
  background-color: var(--color-background);
  border: 1px solid var(--color-divider);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
  font-size: 1.1em;
  color: var(--color-text-main);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  position: relative;
  padding-left: 40px;
}

.page-blog-explore-32win11-login-games-features__promo-list li::before {
  content: '★';
  color: var(--color-gold);
  position: absolute;
  left: 15px;
  top: 20px;
  font-size: 1.2em;
}

/* Guides & Lists */
.page-blog-explore-32win11-login-games-features__ordered-list,
.page-blog-explore-32win11-login-games-features__unordered-list {
  margin-top: 20px;
  padding-left: 25px;
  color: var(--color-text-secondary);
}

.page-blog-explore-32win11-login-games-features__ordered-list li,
.page-blog-explore-32win11-login-games-features__unordered-list li {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-blog-explore-32win11-login-games-features__unordered-list li::before {
  content: '•';
  color: var(--color-primary);
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

/* App Section */
.page-blog-explore-32win11-login-games-features__app-content {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.page-blog-explore-32win11-login-games-features__app-text {
  flex: 1;
  min-width: 300px;
}

.page-blog-explore-32win11-login-games-features__app-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 300px;
}

.page-blog-explore-32win11-login-games-features__app-image {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  min-width: 200px;
  min-height: 200px;
}

/* FAQ Section */
.page-blog-explore-32win11-login-games-features__faq-list {
  margin-top: 40px;
}

.page-blog-explore-32win11-login-games-features__faq-item {
  background-color: var(--color-background);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-blog-explore-32win11-login-games-features__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2em;
  font-weight: bold;
  color: var(--color-primary);
  cursor: pointer;
  background-color: var(--color-card-bg);
  border-bottom: 1px solid var(--color-divider);
}

.page-blog-explore-32win11-login-games-features__faq-item[open] > .page-blog-explore-32win11-login-games-features__faq-question {
  border-bottom: 1px solid var(--color-primary);
}

.page-blog-explore-32win11-login-games-features__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-explore-32win11-login-games-features__faq-question::marker {
  display: none;
}

.page-blog-explore-32win11-login-games-features__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 10px;
  transition: transform 0.3s ease;
  color: var(--color-gold);
}

.page-blog-explore-32win11-login-games-features__faq-item[open] .page-blog-explore-32win11-login-games-features__faq-toggle {
  transform: rotate(45deg); /* Change + to X or similar */
}

.page-blog-explore-32win11-login-games-features__faq-answer {
  padding: 20px;
  font-size: 1.1em;
  color: var(--color-text-secondary);
}

.page-blog-explore-32win11-login-games-features__faq-answer p {
  margin-bottom: 10px;
}

/* General text contrast */
.page-blog-explore-32win11-login-games-features p,
.page-blog-explore-32win11-login-games-features li {
  color: var(--color-text-secondary);
}

/* Dark background sections for contrast */
.page-blog-explore-32win11-login-games-features__dark-bg {
  background-color: var(--color-card-bg);
  color: var(--color-text-main);
}

.page-blog-explore-32win11-login-games-features__light-bg {
  background-color: var(--color-background);
  color: var(--color-text-main);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-blog-explore-32win11-login-games-features__game-card {
    flex-direction: column;
  }

  .page-blog-explore-32win11-login-games-features__game-card:nth-child(even) {
    flex-direction: column;
  }

  .page-blog-explore-32win11-login-games-features__card-image,
  .page-blog-explore-32win11-login-games-features__card-content {
    width: 100%;
  }

  .page-blog-explore-32win11-login-games-features__app-content {
    flex-direction: column;
    text-align: center;
  }
  .page-blog-explore-32win11-login-games-features__app-image-wrapper {
    order: -1; /* Image first on tablet */
  }
}

@media (max-width: 768px) {
  .page-blog-explore-32win11-login-games-features__hero-section {
    padding: 60px 15px;
    padding-top: 10px !important;
  }

  .page-blog-explore-32win11-login-games-features__main-title {
    font-size: 2em;
  }

  .page-blog-explore-32win11-login-games-features__hero-description {
    font-size: 1em;
  }

  .page-blog-explore-32win11-login-games-features__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-blog-explore-32win11-login-games-features__btn-primary,
  .page-blog-explore-32win11-login-games-features__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-blog-explore-32win11-login-games-features__section-title {
    font-size: 2em;
    margin-bottom: 30px;
  }

  .page-blog-explore-32win11-login-games-features__sub-title {
    font-size: 1.5em;
  }

  .page-blog-explore-32win11-login-games-features__intro-section,
  .page-blog-explore-32win11-login-games-features__games-section,
  .page-blog-explore-32win11-login-games-features__features-section,
  .page-blog-explore-32win11-login-games-features__promotions-section,
  .page-blog-explore-32win11-login-games-features__guide-section,
  .page-blog-explore-32win11-login-games-features__app-section,
  .page-blog-explore-32win11-login-games-features__faq-section,
  .page-blog-explore-32win11-login-games-features__conclusion-section {
    padding: 40px 0;
  }

  .page-blog-explore-32win11-login-games-features__container {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Mobile image responsiveness */
  .page-blog-explore-32win11-login-games-features img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    box-sizing: border-box !important;
    min-width: 200px; /* Enforce min size even on mobile */
    min-height: 200px; /* Enforce min size even on mobile */
  }

  .page-blog-explore-32win11-login-games-features__card-image,
  .page-blog-explore-32win11-login-games-features__feature-icon,
  .page-blog-explore-32win11-login-games-features__app-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    min-width: 200px; /* Ensure minimum size */
    min-height: 200px; /* Ensure minimum size */
  }

  .page-blog-explore-32win11-login-games-features__hero-image {
    filter: brightness(0.4) !important; /* Slightly darker on mobile */
  }

  /* Ensure containers with images/buttons are responsive */
  .page-blog-explore-32win11-login-games-features__game-card,
  .page-blog-explore-32win11-login-games-features__feature-item,
  .page-blog-explore-32win11-login-games-features__app-content {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-blog-explore-32win11-login-games-features__features-grid {
    grid-template-columns: 1fr;
  }

  .page-blog-explore-32win11-login-games-features__faq-question {
    font-size: 1.1em;
    padding: 15px;
  }

  .page-blog-explore-32win10-login-games-features__faq-answer {
    font-size: 1em;
    padding: 15px;
  }
}