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

.page-promotions-daily-bonuses {
  background-color: var(--background);
  color: var(--text-main);
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-promotions-daily-bonuses__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0; /* body handles top padding, this is for visual spacing */
  background-color: var(--deep-green);
}

.page-promotions-daily-bonuses__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 500px;
}

.page-promotions-daily-bonuses__hero-content {
  max-width: 1200px;
  width: 100%;
  text-align: center;
  padding: 20px;
  box-sizing: border-box;
}

.page-promotions-daily-bonuses__main-title {
  color: var(--gold-color);
  font-weight: bold;
  margin-bottom: 15px;
  line-height: 1.2;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(2em, 4vw, 3.5em);
}

.page-promotions-daily-bonuses__description {
  color: var(--text-secondary);
  font-size: 1.1em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions-daily-bonuses__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-promotions-daily-bonuses__cta-buttons--center {
  margin-top: 40px;
}

.page-promotions-daily-bonuses__btn-primary,
.page-promotions-daily-bonuses__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
  text-align: center;
}

.page-promotions-daily-bonuses__btn-primary {
  background: var(--button-gradient);
  color: var(--text-main);
  border: 2px solid transparent;
}

.page-promotions-daily-bonuses__btn-primary:hover {
  box-shadow: 0 0 15px var(--glow-color);
  transform: translateY(-2px);
}

.page-promotions-daily-bonuses__btn-secondary {
  background: none;
  color: var(--gold-color);
  border: 2px solid var(--gold-color);
}

.page-promotions-daily-bonuses__btn-secondary:hover {
  background: var(--gold-color);
  color: var(--background);
  transform: translateY(-2px);
}

.page-promotions-daily-bonuses__section {
  padding: 60px 20px;
  border-bottom: 1px solid var(--divider-color);
}

.page-promotions-daily-bonuses__section:last-of-type {
  border-bottom: none;
}

.page-promotions-daily-bonuses__container {
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.page-promotions-daily-bonuses__section-title {
  color: var(--gold-color);
  text-align: center;
  margin-bottom: 40px;
  font-size: clamp(1.8em, 3vw, 2.8em);
  font-weight: bold;
}

.page-promotions-daily-bonuses__text-block {
  color: var(--text-secondary);
  margin-bottom: 20px;
  text-align: justify;
}

.page-promotions-daily-bonuses__text-block a {
  color: var(--glow-color);
  text-decoration: underline;
}

.page-promotions-daily-bonuses__text-block a:hover {
  color: var(--gold-color);
}

.page-promotions-daily-bonuses__card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promotions-daily-bonuses__card {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions-daily-bonuses__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2), 0 0 15px var(--glow-color);
}

.page-promotions-daily-bonuses__card-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
  max-width: 100%;
}

.page-promotions-daily-bonuses__card-title {
  color: var(--text-main);
  font-size: 1.4em;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-promotions-daily-bonuses__card-text {
  color: var(--text-secondary);
  font-size: 0.95em;
  text-align: justify;
}

.page-promotions-daily-bonuses__steps-list,
.page-promotions-daily-bonuses__terms-list,
.page-promotions-daily-bonuses__benefits-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-promotions-daily-bonuses__step-item,
.page-promotions-daily-bonuses__terms-item,
.page-promotions-daily-bonuses__benefits-item {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  transition: box-shadow 0.3s ease;
}

.page-promotions-daily-bonuses__step-item:last-child,
.page-promotions-daily-bonuses__terms-item:last-child,
.page-promotions-daily-bonuses__benefits-item:last-child {
  margin-bottom: 0;
}

.page-promotions-daily-bonuses__step-item:hover,
.page-promotions-daily-bonuses__terms-item:hover,
.page-promotions-daily-bonuses__benefits-item:hover {
  box-shadow: 0 0 15px var(--glow-color);
}

.page-promotions-daily-bonuses__step-title,
.page-promotions-daily-bonuses__terms-subtitle,
.page-promotions-daily-bonuses__benefits-subtitle {
  color: var(--gold-color);
  font-size: 1.3em;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-promotions-daily-bonuses__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promotions-daily-bonuses__feature-card {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions-daily-bonuses__feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2), 0 0 15px var(--glow-color);
}

.page-promotions-daily-bonuses__feature-icon {
  width: 200px;
  height: 150px;
  object-fit: contain;
  margin-bottom: 20px;
  display: block;
  max-width: 100%;
}

.page-promotions-daily-bonuses__feature-title {
  color: var(--text-main);
  font-size: 1.3em;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-promotions-daily-bonuses__faq-list {
  margin-top: 30px;
}

.page-promotions-daily-bonuses__faq-item {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-promotions-daily-bonuses__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.15em;
  color: var(--text-main);
  font-weight: bold;
  background-color: var(--deep-green);
  border-bottom: 1px solid var(--border-color);
}

details.page-promotions-daily-bonuses__faq-item[open] > summary.page-promotions-daily-bonuses__faq-question {
  border-bottom: 1px solid var(--border-color);
}

.page-promotions-daily-bonuses__faq-question::-webkit-details-marker {
  display: none;
}

.page-promotions-daily-bonuses__faq-question::marker {
  display: none;
}

.page-promotions-daily-bonuses__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: var(--gold-color);
  transition: transform 0.3s ease;
}

details.page-promotions-daily-bonuses__faq-item[open] .page-promotions-daily-bonuses__faq-toggle {
  transform: rotate(45deg);
}

.page-promotions-daily-bonuses__faq-answer {
  padding: 0 25px 20px 25px;
  color: var(--text-secondary);
}

.page-promotions-daily-bonuses__faq-answer p {
  margin-top: 15px;
  margin-bottom: 0;
}

.page-promotions-daily-bonuses__cta-final-section {
  text-align: center;
  padding-bottom: 80px;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-promotions-daily-bonuses__hero-image {
    max-height: 400px;
  }

  .page-promotions-daily-bonuses__main-title {
    font-size: clamp(2em, 5vw, 3em);
  }

  .page-promotions-daily-bonuses__section-title {
    font-size: clamp(1.6em, 4vw, 2.5em);
  }
}

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

  .page-promotions-daily-bonuses__hero-section {
    padding: 10px 0 40px 0;
  }

  .page-promotions-daily-bonuses__hero-image {
    max-height: 300px;
  }

  .page-promotions-daily-bonuses__hero-content {
    padding: 15px;
  }

  .page-promotions-daily-bonuses__main-title {
    font-size: clamp(1.8em, 6vw, 2.5em);
  }

  .page-promotions-daily-bonuses__description {
    font-size: 1em;
  }

  .page-promotions-daily-bonuses__cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 300px; /* Constrain buttons for better mobile look */
    margin: 0 auto;
  }

  .page-promotions-daily-bonuses__btn-primary,
  .page-promotions-daily-bonuses__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 0.95em;
  }

  .page-promotions-daily-bonuses__section {
    padding: 40px 15px;
  }

  .page-promotions-daily-bonuses__container {
    padding-left: 0;
    padding-right: 0;
  }

  .page-promotions-daily-bonuses__section-title {
    font-size: clamp(1.5em, 5vw, 2em);
    margin-bottom: 30px;
  }

  .page-promotions-daily-bonuses__card-grid,
  .page-promotions-daily-bonuses__feature-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-promotions-daily-bonuses__card,
  .page-promotions-daily-bonuses__feature-card,
  .page-promotions-daily-bonuses__step-item,
  .page-promotions-daily-bonuses__terms-item,
  .page-promotions-daily-bonuses__benefits-item {
    padding: 20px;
  }

  .page-promotions-daily-bonuses__card-image,
  .page-promotions-daily-bonuses__feature-icon {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-promotions-daily-bonuses__faq-question {
    padding: 15px 20px;
    font-size: 1em;
  }

  .page-promotions-daily-bonuses__faq-answer {
    padding: 0 20px 15px 20px;
  }

  .page-promotions-daily-bonuses__text-block,
  .page-promotions-daily-bonuses__card-text,
  .page-promotions-daily-bonuses__faq-answer p {
    font-size: 0.9em;
  }
}

/* Ensure all images and video are responsive and do not cause overflow */
.page-promotions-daily-bonuses img,
.page-promotions-daily-bonuses video {
  max-width: 100%;
  height: auto;
  display: block;
}

.page-promotions-daily-bonuses__section,
.page-promotions-daily-bonuses__card,
.page-promotions-daily-bonuses__container,
.page-promotions-daily-bonuses__cta-buttons,
.page-promotions-daily-bonuses__button-group,
.page-promotions-daily-bonuses__btn-container,
.page-promotions-daily-bonuses__video-section,
.page-promotions-daily-bonuses__video-container,
.page-promotions-daily-bonuses__video-wrapper {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

@media (max-width: 768px) {
  .page-promotions-daily-bonuses img,
  .page-promotions-daily-bonuses video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-promotions-daily-bonuses__section,
  .page-promotions-daily-bonuses__card,
  .page-promotions-daily-bonuses__container,
  .page-promotions-daily-bonuses__video-section,
  .page-promotions-daily-bonuses__video-container,
  .page-promotions-daily-bonuses__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  
  .page-promotions-daily-bonuses__cta-button,
  .page-promotions-daily-bonuses__btn-primary,
  .page-promotions-daily-bonuses__btn-secondary,
  .page-promotions-daily-bonuses a[class*="button"],
  .page-promotions-daily-bonuses 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-promotions-daily-bonuses__cta-buttons,
  .page-promotions-daily-bonuses__button-group,
  .page-promotions-daily-bonuses__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-promotions-daily-bonuses__cta-buttons {
    display: flex;
    flex-direction: column; 
  }
}