/* style/blog-36win-giftcode-player-benefits-deep-dive.css */

/* Custom Colors */
: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;
}

.page-blog-36win-giftcode-player-benefits-deep-dive {
  color: var(--color-text-main); /* Default text color for the page */
  background-color: var(--color-background); /* Overall page background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  font-size: 16px;
}

.page-blog-36win-giftcode-player-benefits-deep-dive__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0; /* body handles padding-top, this is for internal spacing */
  background-color: var(--color-deep-green);
  overflow: hidden;
}

.page-blog-36win-giftcode-player-benefits-deep-dive__hero-image-wrapper {
  width: 100%;
  max-height: 500px; /* Limit height for hero image */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-blog-36win-giftcode-player-benefits-deep-dive__hero-image {
  width: 100%;
  height: auto; /* Maintain aspect ratio */
  object-fit: cover;
}

.page-blog-36win-giftcode-player-benefits-deep-dive__hero-content {
  max-width: 900px;
  margin-top: 40px;
  text-align: center;
  padding: 0 20px;
  z-index: 1; /* Ensure content is above image if any overlap issues */
  color: var(--color-text-main);
}

.page-blog-36win-giftcode-player-benefits-deep-dive__main-title {
  font-size: clamp(2em, 4vw, 3.2em); /* Responsive font size for H1 */
  font-weight: bold;
  color: var(--color-gold);
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(87, 227, 141, 0.5); /* Glow effect */
}

.page-blog-36win-giftcode-player-benefits-deep-dive__intro-description {
  font-size: 1.1em;
  color: var(--color-text-secondary);
  margin-bottom: 30px;
}

.page-blog-36win-giftcode-player-benefits-deep-dive__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.page-blog-36win-giftcode-player-benefits-deep-dive__btn-primary,
.page-blog-36win-giftcode-player-benefits-deep-dive__btn-secondary {
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%; /* Ensure button doesn't overflow on small screens */
  text-align: center;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word;
}

.page-blog-36win-giftcode-player-benefits-deep-dive__btn-primary {
  background: linear-gradient(180deg, var(--color-button-gradient-start) 0%, var(--color-button-gradient-end) 100%);
  color: #ffffff;
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(17, 168, 78, 0.4);
}

.page-blog-36win-giftcode-player-benefits-deep-dive__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(17, 168, 78, 0.6);
}

.page-blog-36win-giftcode-player-benefits-deep-dive__btn-secondary {
  background-color: transparent;
  color: var(--color-glow);
  border: 2px solid var(--color-glow);
}

.page-blog-36win-giftcode-player-benefits-deep-dive__btn-secondary:hover {
  background-color: var(--color-glow);
  color: var(--color-background);
  transform: translateY(-3px);
}

.page-blog-36win-giftcode-player-benefits-deep-dive__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  color: var(--color-text-main);
  background-color: var(--color-background); /* Ensures consistent background for content */
}

.page-blog-36win-giftcode-player-benefits-deep-dive__container {
  max-width: 900px;
  margin: 0 auto;
}

.page-blog-36win-giftcode-player-benefits-deep-dive__section-title {
  font-size: 2.2em;
  color: var(--color-gold);
  margin-top: 40px;
  margin-bottom: 25px;
  text-align: center;
  border-bottom: 2px solid var(--color-divider);
  padding-bottom: 15px;
  text-shadow: 0 0 8px rgba(87, 227, 141, 0.3);
}

.page-blog-36win-giftcode-player-benefits-deep-dive__subsection-title {
  font-size: 1.6em;
  color: var(--color-primary);
  margin-top: 30px;
  margin-bottom: 15px;
  border-left: 5px solid var(--color-glow);
  padding-left: 10px;
}

.page-blog-36win-giftcode-player-benefits-deep-dive__content-area p {
  margin-bottom: 1em;
  color: var(--color-text-main);
}

.page-blog-36win-giftcode-player-benefits-deep-dive__content-area strong {
  color: var(--color-glow);
}

.page-blog-36win-giftcode-player-benefits-deep-dive__image-content {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
}

.page-blog-36win-giftcode-player-benefits-deep-dive__text-link {
  color: var(--color-glow);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-blog-36win-giftcode-player-benefits-deep-dive__text-link:hover {
  color: var(--color-gold);
}

/* FAQ Section */
.page-blog-36win-giftcode-player-benefits-deep-dive__faq-list {
  margin-top: 40px;
}

.page-blog-36win-giftcode-player-benefits-deep-dive__faq-item {
  background-color: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--color-text-main);
}

.page-blog-36win-giftcode-player-benefits-deep-dive__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.1em;
  color: var(--color-text-main);
  background-color: var(--color-deep-green);
  border-bottom: 1px solid var(--color-border);
  transition: background-color 0.3s ease;
}

.page-blog-36win-giftcode-player-benefits-deep-dive__faq-question:hover {
  background-color: var(--color-primary);
}

.page-blog-36win-giftcode-player-benefits-deep-dive__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: var(--color-glow);
}

.page-blog-36win-giftcode-player-benefits-deep-dive__faq-item[open] .page-blog-36win-giftcode-player-benefits-deep-dive__faq-toggle {
  content: '−'; /* Change to minus when open */
}

.page-blog-36win-giftcode-player-benefits-deep-dive__faq-answer {
  padding: 20px 25px;
  font-size: 1em;
  color: var(--color-text-secondary);
  background-color: var(--color-card-bg);
}

.page-blog-36win-giftcode-player-benefits-deep-dive__faq-answer p {
  margin-bottom: 0;
}

/* Ensure details summary marker is hidden */
.page-blog-36win-giftcode-player-benefits-deep-dive__faq-item summary {
  list-style: none;
}
.page-blog-36win-giftcode-player-benefits-deep-dive__faq-item summary::-webkit-details-marker {
  display: none;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .page-blog-36win-giftcode-player-benefits-deep-dive {
    font-size: 15px;
    line-height: 1.5;
  }

  .page-blog-36win-giftcode-player-benefits-deep-dive__hero-section {
    padding-bottom: 40px;
  }

  .page-blog-36win-giftcode-player-benefits-deep-dive__hero-content {
    margin-top: 30px;
    padding: 0 15px;
  }

  .page-blog-36win-giftcode-player-benefits-deep-dive__main-title {
    font-size: clamp(1.8em, 7vw, 2.5em);
  }

  .page-blog-36win-giftcode-player-benefits-deep-dive__intro-description {
    font-size: 1em;
    margin-bottom: 25px;
  }

  .page-blog-36win-giftcode-player-benefits-deep-dive__cta-buttons {
    flex-direction: column; /* Stack buttons vertically on mobile */
    gap: 10px;
    padding: 0 15px;
  }

  .page-blog-36win-giftcode-player-benefits-deep-dive__btn-primary,
  .page-blog-36win-giftcode-player-benefits-deep-dive__btn-secondary {
    width: 100% !important; /* Force full width for buttons */
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
  }

  .page-blog-36win-giftcode-player-benefits-deep-dive__content-area {
    padding: 30px 15px;
  }

  .page-blog-36win-giftcode-player-benefits-deep-dive__container {
    padding: 0;
  }

  .page-blog-36win-giftcode-player-benefits-deep-dive__section-title {
    font-size: 1.8em;
    margin-top: 30px;
    margin-bottom: 20px;
    padding-bottom: 10px;
  }

  .page-blog-36win-giftcode-player-benefits-deep-dive__subsection-title {
    font-size: 1.4em;
    margin-top: 25px;
    margin-bottom: 10px;
  }

  .page-blog-36win-giftcode-player-benefits-deep-dive img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
    padding: 0 15px;
  }

  .page-blog-36win-giftcode-player-benefits-deep-dive__faq-question {
    padding: 15px 20px;
    font-size: 1em;
  }

  .page-blog-36win-giftcode-player-benefits-deep-dive__faq-answer {
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-blog-36win-giftcode-player-benefits-deep-dive__main-title {
    font-size: clamp(1.5em, 8vw, 2.2em);
  }
  .page-blog-36win-giftcode-player-benefits-deep-dive__hero-image-wrapper {
    max-height: 300px;
  }
}