/* style/blog-win878-promotions-and-bonuses.css */

:root {
  --color-primary: #11A84E;
  --color-secondary: #22C768;
  --color-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --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;
}

/* Base styles for the page content, assuming a dark body background from shared.css */
.page-blog-win878-promotions-and-bonuses {
  background-color: var(--color-background);
  color: var(--color-text-main); /* Light text for dark background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-bottom: 40px;
}

/* Hero Section */
.page-blog-win878-promotions-and-bonuses__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 20px 60px; /* Small top padding, more bottom padding */
  text-align: center;
  overflow: hidden;
}

.page-blog-win878-promotions-and-bonuses__hero-image-wrapper {
  width: 100%;
  max-height: 500px; /* Limit height for hero image */
  overflow: hidden;
  margin-bottom: 20px;
}

.page-blog-win878-promotions-and-bonuses__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
}

.page-blog-win878-promotions-and-bonuses__hero-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-blog-win878-promotions-and-bonuses__main-title {
  color: var(--color-text-main);
  font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive H1 font size */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(87, 227, 141, 0.5);
}

.page-blog-win878-promotions-and-bonuses__hero-description {
  color: var(--color-text-secondary);
  font-size: 1.15rem;
  margin-bottom: 30px;
}

.page-blog-win878-promotions-and-bonuses__cta-button {
  display: inline-block;
  background: var(--color-button-gradient);
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: none;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-win878-promotions-and-bonuses__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  opacity: 0.9;
}

/* General Content Sections */
.page-blog-win878-promotions-and-bonuses__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog-win878-promotions-and-bonuses__section-title {
  color: var(--color-gold);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 600;
  text-align: center;
  margin-top: 50px;
  margin-bottom: 30px;
  text-shadow: 0 0 8px rgba(242, 193, 78, 0.4);
}

.page-blog-win878-promotions-and-bonuses__text-block {
  color: var(--color-text-secondary);
  font-size: 1rem;
  margin-bottom: 20px;
  text-align: justify;
}

.page-blog-win878-promotions-and-bonuses__highlight-text {
  color: var(--color-glow);
  font-weight: bold;
}

.page-blog-win878-promotions-and-bonuses__inline-link {
  color: var(--color-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-blog-win878-promotions-and-bonuses__inline-link:hover {
  color: var(--color-gold);
  text-decoration: underline;
}

/* Promo Grid */
.page-blog-win878-promotions-and-bonuses__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-win878-promotions-and-bonuses__promo-card {
  background-color: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-blog-win878-promotions-and-bonuses__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-blog-win878-promotions-and-bonuses__card-image {
  width: 100%;
  max-width: 400px; /* Ensure images are not too wide in cards */
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-blog-win878-promotions-and-bonuses__card-title {
  color: var(--color-glow);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-blog-win878-promotions-and-bonuses__card-description {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  text-align: justify;
}

/* Step List */
.page-blog-win878-promotions-and-bonuses__step-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-blog-win878-promotions-and-bonuses__list-item {
  background-color: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  transition: box-shadow 0.3s ease;
}

.page-blog-win878-promotions-and-bonuses__list-item:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-blog-win878-promotions-and-bonuses__list-title {
  color: var(--color-glow);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.page-blog-win878-promotions-and-bonuses__list-description {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
}

.page-blog-win878-promotions-and-bonuses__content-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  margin-top: 40px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  object-fit: cover;
}

/* Tips Grid */
.page-blog-win878-promotions-and-bonuses__tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-win878-promotions-and-bonuses__tip-card {
  background-color: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-blog-win878-promotions-and-bonuses__tip-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

/* FAQ Section */
.page-blog-win878-promotions-and-bonuses__faq-list {
  margin-top: 30px;
}

.page-blog-win878-promotions-and-bonuses__faq-item {
  background-color: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.page-blog-win878-promotions-and-bonuses__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  color: var(--color-text-main);
  font-size: 1.15rem;
  font-weight: 600;
  cursor: pointer;
  background-color: var(--color-deep-green); /* Slightly different background for question */
  border-bottom: 1px solid var(--color-divider);
  transition: background-color 0.3s ease;
}

.page-blog-win878-promotions-and-bonuses__faq-item[open] > .page-blog-win878-promotions-and-bonuses__faq-question {
  background-color: var(--color-border);
}

.page-blog-win878-promotions-and-bonuses__faq-question::-webkit-details-marker, /* Hide default marker */
.page-blog-win878-promotions-and-bonuses__faq-question::marker {
  display: none;
}

.page-blog-win878-promotions-and-bonuses__faq-qtext {
  flex-grow: 1;
}

.page-blog-win878-promotions-and-bonuses__faq-toggle {
  font-size: 1.5rem;
  font-weight: bold;
  margin-left: 15px;
  color: var(--color-glow);
}

.page-blog-win878-promotions-and-bonuses__faq-answer {
  padding: 15px 25px 25px;
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  background-color: var(--color-card-bg);
}

.page-blog-win878-promotions-and-bonuses__faq-answer p {
  margin-bottom: 0;
  color: var(--color-text-secondary);
}

/* Conclusion Section */
.page-blog-win878-promotions-and-bonuses__conclusion-section {
  text-align: center;
  padding-top: 50px;
}

.page-blog-win878-promotions-and-bonuses__cta-button--large {
  padding: 18px 40px;
  font-size: 1.2rem;
  margin-top: 30px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-win878-promotions-and-bonuses__hero-image-wrapper {
    max-height: 400px;
  }
  .page-blog-win878-promotions-and-bonuses__main-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }
  .page-blog-win878-promotions-and-bonuses__section-title {
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  }
}

@media (max-width: 768px) {
  .page-blog-win878-promotions-and-bonuses {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-win878-promotions-and-bonuses__hero-section {
    padding: 10px 15px 40px;
  }
  .page-blog-win878-promotions-and-bonuses__hero-image-wrapper {
    max-height: 300px;
  }

  .page-blog-win878-promotions-and-bonuses__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    margin-bottom: 15px;
  }

  .page-blog-win878-promotions-and-bonuses__hero-description {
    font-size: 1rem;
    margin-bottom: 25px;
  }
}