/* style/blog-68win11-promotions-guide.css */
:root {
  --page-primary-color: #11A84E;
  --page-secondary-color: #22C768;
  --page-bg-color: #08160F;
  --page-card-bg: #11271B;
  --page-text-main: #F2FFF6;
  --page-text-secondary: #A7D9B8;
  --page-border-color: #2E7A4E;
  --page-glow-color: #57E38D;
  --page-gold-color: #F2C14E;
  --page-divider-color: #1E3A2A;
  --page-deep-green: #0A4B2C;
}

.page-blog-68win11-promotions-guide {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--page-text-main); /* Default text color for the page */
  background-color: var(--page-bg-color); /* Matches body background from shared.css */
}

.page-blog-68win11-promotions-guide__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  text-align: center;
  background-color: var(--page-deep-green);
}

.page-blog-68win11-promotions-guide__hero-image-wrapper {
  width: 100%;
  max-width: 1200px; /* Constrain image width on larger screens */
  margin-bottom: 30px;
}

.page-blog-68win11-promotions-guide__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-blog-68win11-promotions-guide__hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.page-blog-68win11-promotions-guide__main-title {
  font-size: 2.8em;
  font-weight: bold;
  color: var(--page-gold-color);
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.page-blog-68win11-promotions-guide__hero-description {
  font-size: 1.2em;
  color: var(--page-text-secondary);
  margin-bottom: 30px;
}

.page-blog-68win11-promotions-guide__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.page-blog-68win11-promotions-guide__btn-primary,
.page-blog-68win11-promotions-guide__btn-secondary {
  display: inline-block;
  padding: 15px 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%;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-68win11-promotions-guide__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff; /* White text for dark button */
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-blog-68win11-promotions-guide__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-blog-68win11-promotions-guide__btn-secondary {
  background-color: var(--page-card-bg);
  color: var(--page-primary-color); /* Green text for slightly darker background */
  border: 2px solid var(--page-primary-color);
}

.page-blog-68win11-promotions-guide__btn-secondary:hover {
  background-color: var(--page-primary-color);
  color: #ffffff;
  transform: translateY(-3px);
}

.page-blog-68win11-promotions-guide__section {
  padding: 80px 20px;
  background-color: var(--page-bg-color);
  text-align: center;
}

.page-blog-68win11-promotions-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.page-blog-68win11-promotions-guide__section-title {
  font-size: 2.2em;
  color: var(--page-gold-color);
  margin-bottom: 40px;
  font-weight: bold;
  line-height: 1.3;
}

.page-blog-68win11-promotions-guide__text-block {
  font-size: 1.1em;
  color: var(--page-text-secondary);
  margin-bottom: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-68win11-promotions-guide__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.page-blog-68win11-promotions-guide__card,
.page-blog-68win11-promotions-guide__promo-card,
.page-blog-68win11-promotions-guide__game-card,
.page-blog-68win11-promotions-guide__transaction-card {
  background-color: var(--page-card-bg);
  border: 1px solid var(--page-border-color);
  border-radius: 10px;
  padding: 30px;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: var(--page-text-main);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-blog-68win11-promotions-guide__card:hover,
.page-blog-68win11-promotions-guide__promo-card:hover,
.page-blog-68win11-promotions-guide__game-card:hover,
.page-blog-68win11-promotions-guide__transaction-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-blog-68win11-promotions-guide__card-title,
.page-blog-68win11-promotions-guide__promo-title,
.page-blog-68win11-promotions-guide__game-title,
.page-blog-68win11-promotions-guide__transaction-title {
  font-size: 1.5em;
  color: var(--page-primary-color);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-blog-68win11-promotions-guide__card-text,
.page-blog-68win11-promotions-guide__promo-description,
.page-blog-68win11-promotions-guide__game-description {
  font-size: 1em;
  color: var(--page-text-secondary);
}

.page-blog-68win11-promotions-guide__image-full-width {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  margin: 40px auto;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-68win11-promotions-guide__image-center {
  display: block;
  margin: 40px auto;
  max-width: 80%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-68win11-promotions-guide__registration-guide ol,
.page-blog-68win11-promotions-guide__transaction-flow ol {
  list-style: none;
  padding: 0;
}

.page-blog-68win11-promotions-guide__step-list {
  text-align: left;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-blog-68win11-promotions-guide__step-item {
  background-color: var(--page-card-bg);
  border: 1px solid var(--page-border-color);
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.page-blog-68win11-promotions-guide__step-title {
  font-size: 1.3em;
  color: var(--page-primary-color);
  margin-bottom: 10px;
  font-weight: bold;
}

.page-blog-68win11-promotions-guide__step-item p,
.page-blog-68win11-promotions-guide__sub-list li {
  color: var(--page-text-secondary);
}

.page-blog-68win11-promotions-guide__sub-list {
  list-style-type: disc;
  margin-left: 25px;
  margin-top: 10px;
  color: var(--page-text-secondary);
}

.page-blog-68win11-promotions-guide__cta-center {
  margin-top: 40px;
  text-align: center;
}

.page-blog-68win11-promotions-guide__transaction-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-bottom: 40px;
}

.page-blog-68win11-promotions-guide__transaction-card {
  flex: 1 1 45%; /* Allow cards to grow and shrink */
  min-width: 300px;
  background-color: var(--page-card-bg);
  border: 1px solid var(--page-border-color);
  border-radius: 10px;
  padding: 30px;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-68win11-promotions-guide__transaction-card ol {
  margin-top: 15px;
  margin-left: 20px;
  color: var(--page-text-secondary);
}

.page-blog-68win11-promotions-guide__transaction-card li {
  margin-bottom: 10px;
}

.page-blog-68win11-promotions-guide__transaction-card strong {
  color: var(--page-text-main);
}

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

.page-blog-68win11-promotions-guide__game-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.page-blog-68win11-promotions-guide__game-title {
  font-size: 1.4em;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-blog-68win11-promotions-guide__game-title a {
  color: var(--page-primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-blog-68win11-promotions-guide__game-title a:hover {
  color: var(--page-gold-color);
}

.page-blog-68win11-promotions-guide__faq-list {
  max-width: 900px;
  margin: 0 auto 40px auto;
  text-align: left;
}

.page-blog-68win11-promotions-guide__faq-item {
  background-color: var(--page-card-bg);
  border: 1px solid var(--page-border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.page-blog-68win11-promotions-guide__faq-item[open] {
  background-color: var(--page-deep-green);
  border-color: var(--page-primary-color);
}

.page-blog-68win11-promotions-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: var(--page-text-main);
  cursor: pointer;
  list-style: none;
}

.page-blog-68win11-promotions-guide__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-68win11-promotions-guide__faq-toggle {
  font-size: 1.5em;
  color: var(--page-primary-color);
  margin-left: 15px;
  transition: transform 0.3s ease;
}

.page-blog-68win11-promotions-guide__faq-item[open] .page-blog-68win11-promotions-guide__faq-toggle {
  transform: rotate(45deg);
  color: var(--page-gold-color);
}

.page-blog-68win11-promotions-guide__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 1em;
  color: var(--page-text-secondary);
  text-align: left;
}

.page-blog-68win11-promotions-guide__contact-list {
  list-style: none;
  padding: 0;
  max-width: 600px;
  margin: 0 auto 40px auto;
  text-align: left;
}

.page-blog-68win11-promotions-guide__contact-list li {
  background-color: var(--page-card-bg);
  border: 1px solid var(--page-border-color);
  border-radius: 8px;
  padding: 15px 25px;
  margin-bottom: 10px;
  font-size: 1.1em;
  color: var(--page-text-main);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-blog-68win11-promotions-guide__contact-list li strong {
  color: var(--page-primary-color);
}

/* --- Responsive Design --- */
@media (max-width: 1024px) {
  .page-blog-68win11-promotions-guide__main-title {
    font-size: 2.2em;
  }

  .page-blog-68win11-promotions-guide__section-title {
    font-size: 1.8em;
  }

  .page-blog-68win11-promotions-guide__hero-description {
    font-size: 1.1em;
  }
}

@media (max-width: 768px) {
  .page-blog-68win11-promotions-guide {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-68win11-promotions-guide__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important; /* body handles --header-offset, small top padding */
  }

  .page-blog-68win11-promotions-guide__hero-image-wrapper {
    margin-bottom: 20px;
  }

  .page-blog-68win11-promotions-guide__main-title {
    font-size: 1.8em;
    margin-bottom: 15px;
  }

  .page-blog-68win11-promotions-guide__hero-description {
    font-size: 1em;
    margin-bottom: 25px;
  }

  .page-blog-68win11-promotions-guide__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

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

  .page-blog-68win11-promotions-guide__section {
    padding: 50px 15px;
  }

  .page-blog-68win11-promotions-guide__container {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-blog-68win11-promotions-guide__section-title {
    font-size: 1.6em;
    margin-bottom: 30px;
  }

  .page-blog-68win11-promotions-guide__text-block {
    font-size: 0.95em;
  }

  .page-blog-68win11-promotions-guide__grid,
  .page-blog-68win11-promotions-guide__game-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-blog-68win11-promotions-guide__card,
  .page-blog-68win11-promotions-guide__promo-card,
  .page-blog-68win11-promotions-guide__game-card,
  .page-blog-68win11-promotions-guide__transaction-card,
  .page-blog-68win11-promotions-guide__step-item,
  .page-blog-68win11-promotions-guide__faq-item,
  .page-blog-68win11-promotions-guide__contact-list li {
    padding: 20px;
  }

  .page-blog-68win11-promotions-guide__card-title,
  .page-blog-68win11-promotions-guide__promo-title,
  .page-blog-68win11-promotions-guide__game-title,
  .page-blog-68win11-promotions-guide__transaction-title {
    font-size: 1.3em;
  }

  .page-blog-68win11-promotions-guide__image-full-width,
  .page-blog-68win11-promotions-guide__image-center {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    margin: 20px auto;
  }

  .page-blog-68win11-promotions-guide__step-list,
  .page-blog-68win11-promotions-guide__faq-list,
  .page-blog-68win11-promotions-guide__contact-list {
    margin-left: auto;
    margin-right: auto;
  }

  .page-blog-68win11-promotions-guide__transaction-flow {
    flex-direction: column;
  }

  .page-blog-68win11-promotions-guide__transaction-card {
    flex: 1 1 100%;
    min-width: unset;
  }

  .page-blog-68win11-promotions-guide__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }

  .page-blog-68win11-promotions-guide__faq-answer {
    padding: 0 20px 15px 20px;
  }

  /* Ensure all images are responsive */
  .page-blog-68win11-promotions-guide img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-68win11-promotions-guide__section,
  .page-blog-68win11-promotions-guide__card,
  .page-blog-68win11-promotions-guide__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-blog-68win11-promotions-guide__video-section {
    padding-top: 10px !important;
  }
}