/* style/promotions-daily-bonuses.css */

/* Base styles for the page */
.page-promotions-daily-bonuses {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Light text for dark body background */
  background-color: transparent; /* Body background is handled by shared.css (#0a0a0a) */
}

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

.page-promotions-daily-bonuses__section-title {
  font-size: 2.5rem;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  line-height: 1.2;
}

.page-promotions-daily-bonuses__text-block {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #f0f0f0;
}

.page-promotions-daily-bonuses__highlight {
  color: #26A9E0;
  font-weight: 700;
}

.page-promotions-daily-bonuses a {
  color: #26A9E0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-promotions-daily-bonuses a:hover {
  color: #FFFFFF;
}

/* Hero Section */
.page-promotions-daily-bonuses__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 60px;
  overflow: hidden;
  background-color: #0a0a0a;
}

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

.page-promotions-daily-bonuses__hero-content {
  text-align: center;
  padding: 40px 20px;
  max-width: 900px;
  margin-top: -100px; /* Overlap slightly with image for visual flow */
  position: relative;
  z-index: 2;
  background: linear-gradient(to top, rgba(10, 10, 10, 1) 0%, rgba(10, 10, 10, 0.8) 50%, rgba(10, 10, 10, 0) 100%);
  padding-top: 100px;
}

.page-promotions-daily-bonuses__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  color: #FFFFFF;
  margin-bottom: 20px;
  font-weight: 800;
  line-height: 1.1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions-daily-bonuses__hero-description {
  font-size: 1.2rem;
  color: #f0f0f0;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-promotions-daily-bonuses__btn-primary,
.page-promotions-daily-bonuses__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 180px;
  box-sizing: border-box;
}

.page-promotions-daily-bonuses__btn-primary {
  background-color: #26A9E0;
  color: #FFFFFF;
  border: 2px solid #26A9E0;
}

.page-promotions-daily-bonuses__btn-primary:hover {
  background-color: #1a7aab;
  border-color: #1a7aab;
}

.page-promotions-daily-bonuses__btn-secondary {
  background-color: transparent;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-promotions-daily-bonuses__btn-secondary:hover {
  background-color: #26A9E0;
  color: #FFFFFF;
}

/* Introduction Section */
.page-promotions-daily-bonuses__introduction-section {
  padding: 60px 0;
  background-color: #0a0a0a;
  color: #ffffff;
}

.page-promotions-daily-bonuses__image-content {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  max-width: 800px; /* Ensure content images are not too wide */
}

/* Types Section */
.page-promotions-daily-bonuses__types-section {
  padding: 60px 0;
  background-color: #1a1a1a; /* Slightly lighter dark background */
  color: #ffffff;
}

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

.page-promotions-daily-bonuses__bonus-card {
  background-color: rgba(255, 255, 255, 0.1); /* Translucent white on dark background */
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #ffffff;
  display: flex;
  flex-direction: column;
}

.page-promotions-daily-bonuses__bonus-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-promotions-daily-bonuses__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  display: block;
}

.page-promotions-daily-bonuses__card-title {
  font-size: 1.5rem;
  color: #26A9E0;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-promotions-daily-bonuses__card-description {
  font-size: 1rem;
  color: #f0f0f0;
  flex-grow: 1;
}

.page-promotions-daily-bonuses__note-text {
  font-size: 0.95rem;
  text-align: center;
  margin-top: 40px;
  color: #ccc;
}

/* How-to-Claim Section */
.page-promotions-daily-bonuses__how-to-claim-section {
  padding: 60px 0;
  background-color: #0a0a0a;
  color: #ffffff;
}

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

.page-promotions-daily-bonuses__step-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #ffffff;
}

.page-promotions-daily-bonuses__step-number {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background-color: #26A9E0;
  color: #FFFFFF;
  border-radius: 50%;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.page-promotions-daily-bonuses__step-title {
  font-size: 1.4rem;
  color: #26A9E0;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-promotions-daily-bonuses__step-description {
  font-size: 1rem;
  color: #f0f0f0;
}

/* Terms and Conditions Section */
.page-promotions-daily-bonuses__terms-section {
  padding: 60px 0;
  background-color: #1a1a1a;
  color: #ffffff;
}

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

.page-promotions-daily-bonuses__list-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-left: 4px solid #26A9E0;
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 5px;
  font-size: 1.05rem;
  color: #f0f0f0;
}

/* Why Choose Section */
.page-promotions-daily-bonuses__why-choose-section {
  padding: 60px 0;
  background-color: #0a0a0a;
  color: #ffffff;
}

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

.page-promotions-daily-bonuses__reason-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #ffffff;
}

/* FAQ Section */
.page-promotions-daily-bonuses__faq-section {
  padding: 60px 0;
  background-color: #1a1a1a;
  color: #ffffff;
}

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

.page-promotions-daily-bonuses__faq-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-promotions-daily-bonuses__faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.1);
  cursor: pointer;
  font-size: 1.15rem;
  font-weight: 600;
  color: #26A9E0;
  transition: background-color 0.3s ease;
}

.page-promotions-daily-bonuses__faq-item summary:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

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

.page-promotions-daily-bonuses__faq-qtext {
  flex-grow: 1;
}

.page-promotions-daily-bonuses__faq-toggle {
  font-size: 1.8rem;
  line-height: 1;
  margin-left: 20px;
  color: #FFFFFF;
}

.page-promotions-daily-bonuses__faq-item[open] .page-promotions-daily-bonuses__faq-toggle {
  content: "−";
}

.page-promotions-daily-bonuses__faq-answer {
  padding: 20px;
  font-size: 1rem;
  color: #f0f0f0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* CTA Section */
.page-promotions-daily-bonuses__cta-section {
  padding: 60px 0;
  text-align: center;
  background-color: #0a0a0a;
  color: #ffffff;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-promotions-daily-bonuses__main-title {
    font-size: clamp(2rem, 5vw, 3rem);
  }

  .page-promotions-daily-bonuses__section-title {
    font-size: 2rem;
  }
}

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

  .page-promotions-daily-bonuses__container {
    padding: 0 15px;
  }

  .page-promotions-daily-bonuses__hero-content {
    margin-top: -50px;
    padding-top: 50px;
  }

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

  .page-promotions-daily-bonuses__hero-description {
    font-size: 1rem;
  }

  .page-promotions-daily-bonuses__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-promotions-daily-bonuses__btn-primary,
  .page-promotions-daily-bonuses__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-promotions-daily-bonuses__section-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .page-promotions-daily-bonuses__text-block,
  .page-promotions-daily-bonuses__card-description,
  .page-promotions-daily-bonuses__step-description,
  .page-promotions-daily-bonuses__list-item,
  .page-promotions-daily-bonuses__faq-answer {
    font-size: 0.95rem;
  }

  .page-promotions-daily-bonuses__card-title,
  .page-promotions-daily-bonuses__step-title {
    font-size: 1.3rem;
  }

  .page-promotions-daily-bonuses__faq-item summary {
    font-size: 1rem;
    padding: 15px;
  }

  /* Mobile image responsiveness */
  .page-promotions-daily-bonuses img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  /* Mobile container responsiveness */
  .page-promotions-daily-bonuses__hero-section,
  .page-promotions-daily-bonuses__introduction-section,
  .page-promotions-daily-bonuses__types-section,
  .page-promotions-daily-bonuses__how-to-claim-section,
  .page-promotions-daily-bonuses__terms-section,
  .page-promotions-daily-bonuses__why-choose-section,
  .page-promotions-daily-bonuses__faq-section,
  .page-promotions-daily-bonuses__cta-section {
    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__hero-section {
    padding-top: 10px !important;
  }

  .page-promotions-daily-bonuses__bonus-grid,
  .page-promotions-daily-bonuses__steps-grid,
  .page-promotions-daily-bonuses__reason-grid {
    grid-template-columns: 1fr;
  }

  .page-promotions-daily-bonuses__bonus-card,
  .page-promotions-daily-bonuses__step-card,
  .page-promotions-daily-bonuses__reason-card {
    padding: 20px;
  }

  .page-promotions-daily-bonuses__image-content {
    width: 100% !important;
    max-width: 100% !important;
  }
}

@media (max-width: 480px) {
  .page-promotions-daily-bonuses__main-title {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
  }

  .page-promotions-daily-bonuses__section-title {
    font-size: 1.6rem;
  }

  .page-promotions-daily-bonuses__btn-primary,
  .page-promotions-daily-bonuses__btn-secondary {
    font-size: 1rem;
    padding: 12px 20px;
  }

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