/* style/blog-win911-latest-promotions.css */

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

/* Base styles for the page content, considering body background is dark */
.page-blog-win911-latest-promotions {
  background-color: var(--win911-background);
  color: var(--win911-text-main);
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: 10px; /* Small top padding for visual separation from header */
}

/* General container for content */
.page-blog-win911-latest-promotions__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog-win911-latest-promotions__section-title {
  font-size: 2.5em;
  font-weight: bold;
  color: var(--win911-gold-color);
  text-align: center;
  margin-bottom: 30px;
  padding-top: 40px;
  line-height: 1.2;
}

.page-blog-win911-latest-promotions__section-description {
  font-size: 1.1em;
  color: var(--win911-text-secondary);
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero Section */
.page-blog-win911-latest-promotions__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  background-color: var(--win911-deep-green);
  overflow: hidden;
  border-bottom: 5px solid var(--win911-border-color);
}

.page-blog-win911-latest-promotions__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.page-blog-win911-latest-promotions__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3; /* Slightly transparent to allow text to stand out */
}

.page-blog-win911-latest-promotions__hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  background-color: rgba(0, 0, 0, 0.4); /* Dark overlay for text readability */
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.page-blog-win911-latest-promotions__main-title {
  font-size: clamp(2em, 4vw, 3.2em); /* Responsive font size for H1 */
  font-weight: bold;
  color: var(--win911-gold-color);
  margin-bottom: 20px;
  line-height: 1.1;
  letter-spacing: 1px;
}

.page-blog-win911-latest-promotions__hero-description {
  font-size: 1.2em;
  color: var(--win911-text-main);
  margin-bottom: 30px;
}

.page-blog-win911-latest-promotions__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.page-blog-win911-latest-promotions__btn-primary,
.page-blog-win911-latest-promotions__btn-secondary,
.page-blog-win911-latest-promotions__btn-tertiary {
  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;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-win911-latest-promotions__btn-primary {
  background: var(--win911-button-gradient);
  color: var(--win911-text-main);
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-blog-win911-latest-promotions__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  opacity: 0.9;
}

.page-blog-win911-latest-promotions__btn-secondary {
  background: none;
  color: var(--win911-gold-color);
  border: 2px solid var(--win911-gold-color);
}

.page-blog-win911-latest-promotions__btn-secondary:hover {
  background-color: var(--win911-gold-color);
  color: var(--win911-background);
  transform: translateY(-3px);
}

.page-blog-win911-latest-promotions__btn-tertiary {
  background-color: var(--win911-border-color);
  color: var(--win911-text-main);
  border: none;
  font-size: 0.9em;
  padding: 10px 20px;
}

.page-blog-win911-latest-promotions__btn-tertiary:hover {
  background-color: var(--win911-secondary-color);
  transform: translateY(-2px);
}

.page-blog-win911-latest-promotions__btn-small {
  padding: 10px 20px;
  font-size: 0.95em;
}

.page-blog-win911-latest-promotions__large-btn {
  padding: 18px 35px;
  font-size: 1.2em;
  margin-top: 30px;
}

/* Introduction Section */
.page-blog-win911-latest-promotions__introduction-section {
  padding: 60px 0;
  background-color: var(--win911-background);
}

.page-blog-win911-latest-promotions__content-wrapper {
  display: flex;
  gap: 40px;
  align-items: center;
}

.page-blog-win911-latest-promotions__text-block {
  flex: 1;
  color: var(--win911-text-main);
}

.page-blog-win911-latest-promotions__text-block p {
  margin-bottom: 15px;
  font-size: 1.05em;
}

.page-blog-win911-latest-promotions__image-block {
  flex: 1;
  min-width: 300px;
}

.page-blog-win911-latest-promotions__image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

/* Promotions List Section */
.page-blog-win911-latest-promotions__promotions-list-section {
  padding: 60px 0;
  background-color: var(--win911-deep-green);
  border-top: 1px solid var(--win911-divider-color);
  border-bottom: 1px solid var(--win911-divider-color);
}

.page-blog-win911-latest-promotions__promotions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-blog-win911-latest-promotions__promotion-card {
  background-color: var(--win911-card-bg);
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--win911-border-color);
}

.page-blog-win911-latest-promotions__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 1px solid var(--win911-border-color);
}

.page-blog-win911-latest-promotions__card-title {
  font-size: 1.5em;
  color: var(--win911-gold-color);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-blog-win911-latest-promotions__card-text {
  color: var(--win911-text-secondary);
  font-size: 0.95em;
  margin-bottom: 25px;
  flex-grow: 1;
}

/* Guide Section */
.page-blog-win911-latest-promotions__guide-section {
  padding: 60px 0;
  background-color: var(--win911-background);
}

.page-blog-win911-latest-promotions__guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.page-blog-win911-latest-promotions__step-card {
  background-color: var(--win911-card-bg);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  border: 1px solid var(--win911-border-color);
}

.page-blog-win911-latest-promotions__step-title {
  font-size: 1.4em;
  color: var(--win911-gold-color);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-blog-win911-latest-promotions__step-card p {
  color: var(--win911-text-secondary);
  font-size: 0.95em;
  margin-bottom: 20px;
}

.page-blog-win911-latest-promotions__guide-image {
  display: block;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  border: 1px solid var(--win911-border-color);
}

/* Terms Section */
.page-blog-win911-latest-promotions__terms-section {
  padding: 60px 0;
  background-color: var(--win911-deep-green);
  border-top: 1px solid var(--win911-divider-color);
  border-bottom: 1px solid var(--win911-divider-color);
}

.page-blog-win911-latest-promotions__terms-list {
  list-style: disc;
  padding-left: 25px;
  color: var(--win911-text-main);
  max-width: 900px;
  margin: 30px auto;
}

.page-blog-win911-latest-promotions__terms-list li {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-blog-win911-latest-promotions__terms-list strong {
  color: var(--win911-gold-color);
}

.page-blog-win911-latest-promotions__caution-text {
  text-align: center;
  color: var(--win911-text-secondary);
  font-style: italic;
  margin-top: 30px;
}

/* Why Choose Section */
.page-blog-win911-latest-promotions__why-choose-section {
  padding: 60px 0;
  background-color: var(--win911-background);
}

.page-blog-win911-latest-promotions__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-win911-latest-promotions__feature-item {
  background-color: var(--win911-card-bg);
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--win911-border-color);
}

.page-blog-win911-latest-promotions__feature-title {
  font-size: 1.4em;
  color: var(--win911-gold-color);
  margin-bottom: 10px;
  font-weight: bold;
}

.page-blog-win911-latest-promotions__feature-item p {
  color: var(--win911-text-secondary);
  font-size: 0.95em;
}

/* FAQ Section */
.page-blog-win911-latest-promotions__faq-section {
  padding: 60px 0;
  background-color: var(--win911-deep-green);
  border-top: 1px solid var(--win911-divider-color);
  border-bottom: 1px solid var(--win911-divider-color);
}

.page-blog-win911-latest-promotions__faq-list {
  max-width: 900px;
  margin: 40px auto 0;
}

.page-blog-win911-latest-promotions__faq-item {
  background-color: var(--win911-card-bg);
  border: 1px solid var(--win911-border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-blog-win911-latest-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15em;
  font-weight: bold;
  color: var(--win911-gold-color);
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.2); /* Slightly darker for contrast */
  border-bottom: 1px solid var(--win911-divider-color);
  transition: background-color 0.3s ease;
}

.page-blog-win911-latest-promotions__faq-question:hover {
  background-color: rgba(0, 0, 0, 0.3);
}

.page-blog-win911-latest-promotions__faq-item[open] > .page-blog-win911-latest-promotions__faq-question {
  background-color: rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid var(--win911-gold-color);
}

.page-blog-win911-latest-promotions__faq-qtext {
  flex-grow: 1;
}

.page-blog-win911-latest-promotions__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: var(--win911-gold-color);
}

.page-blog-win911-latest-promotions__faq-answer {
  padding: 15px 25px 20px;
  font-size: 1em;
  color: var(--win911-text-secondary);
  line-height: 1.6;
}

.page-blog-win911-latest-promotions__faq-answer p {
  margin-bottom: 0;
}

/* Details element specific styling for FAQ */
.page-blog-win911-latest-promotions__faq-item summary {
  list-style: none;
}

.page-blog-win911-latest-promotions__faq-item summary::-webkit-details-marker {
  display: none;
}

/* Conclusion Section */
.page-blog-win911-latest-promotions__conclusion-section {
  padding: 60px 0 80px;
  background-color: var(--win911-background);
  text-align: center;
}

/* Global image and video responsive styles */
.page-blog-win911-latest-promotions img,
.page-blog-win911-latest-promotions video {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-blog-win911-latest-promotions__main-title {
    font-size: clamp(2em, 5vw, 2.8em);
  }
  .page-blog-win911-latest-promotions__hero-description {
    font-size: 1.1em;
  }
  .page-blog-win911-latest-promotions__content-wrapper {
    flex-direction: column;
  }
  .page-blog-win911-latest-promotions__image-block {
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .page-blog-win911-latest-promotions {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-blog-win911-latest-promotions__section-title {
    font-size: 2em;
  }
  .page-blog-win911-latest-promotions__hero-section {
    padding: 40px 15px;
  }
  .page-blog-win911-latest-promotions__hero-content {
    padding: 30px 20px;
  }
  .page-blog-win911-latest-promotions__main-title {
    font-size: clamp(1.8em, 6vw, 2.5em);
  }
  .page-blog-win911-latest-promotions__hero-description {
    font-size: 1em;
  }
  .page-blog-win911-latest-promotions__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-blog-win911-latest-promotions__btn-primary,
  .page-blog-win911-latest-promotions__btn-secondary,
  .page-blog-win911-latest-promotions__btn-tertiary,
  .page-blog-win911-latest-promotions a[class*="button"],
  .page-blog-win911-latest-promotions 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-win911-latest-promotions__cta-buttons,
  .page-blog-win911-latest-promotions__button-group,
  .page-blog-win911-latest-promotions__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }
  .page-blog-win911-latest-promotions__container,
  .page-blog-win911-latest-promotions__section,
  .page-blog-win911-latest-promotions__card,
  .page-blog-win911-latest-promotions__content-wrapper,
  .page-blog-win911-latest-promotions__promotions-grid,
  .page-blog-win911-latest-promotions__guide-steps,
  .page-blog-win911-latest-promotions__features-grid,
  .page-blog-win911-latest-promotions__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-blog-win911-latest-promotions img,
  .page-blog-win911-latest-promotions video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-blog-win911-latest-promotions__hero-section {
    padding-top: 10px !important;
  }
  .page-blog-win911-latest-promotions__hero-content {
    padding: 20px;
  }
  .page-blog-win911-latest-promotions__terms-list {
    padding-left: 20px;
  }
}

@media (max-width: 480px) {
  .page-blog-win911-latest-promotions__section-title {
    font-size: 1.8em;
  }
  .page-blog-win911-latest-promotions__card-title,
  .page-blog-win911-latest-promotions__step-title,
  .page-blog-win911-latest-promotions__feature-title {
    font-size: 1.2em;
  }
  .page-blog-win911-latest-promotions__faq-question {
    font-size: 1em;
    padding: 15px 20px;
  }
  .page-blog-win911-latest-promotions__faq-answer {
    padding: 10px 20px 15px;
  }
  .page-blog-win911-latest-promotions__large-btn {
    font-size: 1.1em;
    padding: 15px 25px;
  }
}