/* style/promotions-daily-deposit-bonus.css */

/* Base styles for the page content */
.page-promotions-daily-deposit-bonus {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-main);
  background-color: var(--background-color);
}

/* Color contrast adjustments based on body background color */
/* Assuming --background-color from shared.css is dark for #08160F */
.page-promotions-daily-deposit-bonus.page-content {
  color: #F2FFF6; /* Text Main */
}

.page-promotions-daily-deposit-bonus__light-bg {
  background-color: #08160F; /* Background */
  color: #F2FFF6; /* Text Main */
}

.page-promotions-daily-deposit-bonus__dark-bg {
  background-color: #11271B; /* Card BG */
  color: #F2FFF6; /* Text Main */
}

.page-promotions-daily-deposit-bonus h1,
.page-promotions-daily-deposit-bonus h2,
.page-promotions-daily-deposit-bonus h3,
.page-promotions-daily-deposit-bonus h4 {
  color: #F2FFF6; /* Text Main */
  margin-bottom: 1rem;
}

.page-promotions-daily-deposit-bonus h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
}

.page-promotions-daily-deposit-bonus h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  text-align: center;
  margin-bottom: 2rem;
  padding-top: 1rem;
}

.page-promotions-daily-deposit-bonus h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 1rem;
}

.page-promotions-daily-deposit-bonus p {
  margin-bottom: 1rem;
  color: #F2FFF6; /* Text Main */
}

.page-promotions-daily-deposit-bonus__description {
  font-size: 1.1rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 2rem auto;
  color: #A7D9B8; /* Text Secondary */
}

.page-promotions-daily-deposit-bonus__section {
  padding: 40px 20px;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-promotions-daily-deposit-bonus__content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Hero Section */
.page-promotions-daily-deposit-bonus__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start; /* Align content to top initially */
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  overflow: hidden;
}

.page-promotions-daily-deposit-bonus__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover; /* Ensure image covers the area */
  margin-bottom: 20px; /* Space between image and content */
}

.page-promotions-daily-deposit-bonus__hero-content {
  position: relative; /* Ensure content is above the image if needed for z-index, but not overlapping */
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 20px;
  background-color: rgba(17, 39, 27, 0.7); /* Card BG with transparency */
  border-radius: 8px;
}

.page-promotions-daily-deposit-bonus__main-title {
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
}

/* CTA Buttons */
.page-promotions-daily-deposit-bonus__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 25px;
}

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

.page-promotions-daily-deposit-bonus__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6; /* Text Main */
  border: none;
}

.page-promotions-daily-deposit-bonus__btn-primary:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
}

.page-promotions-daily-deposit-bonus__btn-secondary {
  background-color: transparent;
  color: #2AD16F; /* A lighter green from the gradient */
  border: 2px solid #2AD16F;
}

.page-promotions-daily-deposit-bonus__btn-secondary:hover {
  background-color: #2AD16F;
  color: #F2FFF6; /* Text Main */
}

/* Benefits Section */
.page-promotions-daily-deposit-bonus__grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-promotions-daily-deposit-bonus__card {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  padding: 20px;
  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: #F2FFF6; /* Text Main */
}

.page-promotions-daily-deposit-bonus__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

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

.page-promotions-daily-deposit-bonus__card-title {
  color: #F2FFF6; /* Text Main */
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.page-promotions-daily-deposit-bonus__card p {
  color: #A7D9B8; /* Text Secondary */
}

/* How-to-Claim Section */
.page-promotions-daily-deposit-bonus__steps-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-promotions-daily-deposit-bonus__steps-list li {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
  color: #F2FFF6; /* Text Main */
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.page-promotions-daily-deposit-bonus__steps-list li h4 {
  color: #F2FFF6; /* Text Main */
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.page-promotions-daily-deposit-bonus__steps-list li p {
  color: #A7D9B8; /* Text Secondary */
}

/* Games Section */
.page-promotions-daily-deposit-bonus__game-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-promotions-daily-deposit-bonus__game-list li {
  display: flex;
  align-items: center;
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 10px;
  color: #F2FFF6; /* Text Main */
}

.page-promotions-daily-deposit-bonus__game-icon {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 50%;
  margin-right: 15px;
  flex-shrink: 0;
  min-width: 60px; /* Ensure it's not smaller than 60px */
  min-height: 60px;
}

.page-promotions-daily-deposit-bonus__game-list li span {
  color: #A7D9B8; /* Text Secondary */
}

/* Terms Section */
.page-promotions-daily-deposit-bonus__terms-list {
  list-style: disc inside;
  padding-left: 20px;
  color: #A7D9B8; /* Text Secondary */
}

.page-promotions-daily-deposit-bonus__terms-list li {
  margin-bottom: 10px;
}

.page-promotions-daily-deposit-bonus__terms-list li strong {
  color: #F2FFF6; /* Text Main */
}

/* FAQ Section */
.page-promotions-daily-deposit-bonus__faq-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-promotions-daily-deposit-bonus__faq-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-promotions-daily-deposit-bonus__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  cursor: pointer;
  background-color: #0A4B2C; /* Deep Green */
  color: #F2FFF6; /* Text Main */
  font-weight: bold;
  border-bottom: 1px solid #2E7A4E; /* Border */
  list-style: none; /* For details/summary */
}

.page-promotions-daily-deposit-bonus__faq-question::-webkit-details-marker {
  display: none; /* Hide default marker */
}

.page-promotions-daily-deposit-bonus__faq-qtext {
  flex-grow: 1;
  color: #F2FFF6; /* Text Main */
}

.page-promotions-daily-deposit-bonus__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 10px;
  transition: transform 0.3s ease;
  color: #57E38D; /* Glow */
}

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

.page-promotions-daily-deposit-bonus__faq-answer {
  padding: 15px 20px;
  color: #A7D9B8; /* Text Secondary */
  background-color: #11271B; /* Card BG */
}

/* Final CTA Section */
.page-promotions-daily-deposit-bonus__cta-final-section {
  text-align: center;
  background-color: #08160F; /* Background */
  padding-bottom: 60px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-promotions-daily-deposit-bonus {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-promotions-daily-deposit-bonus__section {
    padding: 30px 15px;
  }

  .page-promotions-daily-deposit-bonus__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important; /* body handles header offset */
  }

  .page-promotions-daily-deposit-bonus__hero-content {
    padding: 15px;
    margin-top: -20px; /* Adjust if content is pushed down too much */
  }

  .page-promotions-daily-deposit-bonus__main-title {
    font-size: clamp(2rem, 8vw, 2.5rem); /* Adjust for smaller screens */
  }

  .page-promotions-daily-deposit-bonus__description {
    font-size: 1rem;
    padding: 0 5px;
  }

  .page-promotions-daily-deposit-bonus__cta-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .page-promotions-daily-deposit-bonus__btn-primary,
  .page-promotions-daily-deposit-bonus__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    padding: 12px 15px;
    white-space: normal !important;
    word-wrap: break-word !important;
    box-sizing: border-box !important;
  }

  .page-promotions-daily-deposit-bonus__grid-container {
    grid-template-columns: 1fr;
    padding: 0;
  }

  .page-promotions-daily-deposit-bonus__card {
    padding: 15px;
  }

  .page-promotions-daily-deposit-bonus__card-image,
  .page-promotions-daily-deposit-bonus img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    box-sizing: border-box !important;
  }

  .page-promotions-daily-deposit-bonus__game-list li {
    flex-direction: column;
    text-align: center;
    padding: 10px;
  }

  .page-promotions-daily-deposit-bonus__game-icon {
    margin-right: 0;
    margin-bottom: 10px;
  }

  .page-promotions-daily-deposit-bonus__content-wrapper,
  .page-promotions-daily-deposit-bonus__faq-container {
    padding: 0;
  }

  .page-promotions-daily-deposit-bonus__faq-question {
    padding: 12px 15px;
  }

  .page-promotions-daily-deposit-bonus__faq-answer {
    padding: 12px 15px;
  }
}

/* Ensure images within content areas are responsive and not smaller than 200px */
.page-promotions-daily-deposit-bonus img:not(.page-promotions-daily-deposit-bonus__game-icon) {
  min-width: 200px;
  min-height: 200px;
}

/* Override for specific small icons if they exist in game-icon */
.page-promotions-daily-deposit-bonus__game-icon {
  min-width: 60px;
  min-height: 60px;
}

@media (max-width: 768px) {
  .page-promotions-daily-deposit-bonus__section,
  .page-promotions-daily-deposit-bonus__card,
  .page-promotions-daily-deposit-bonus__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}