/* style/promotions-daily-weekly-deposit.css */
.page-promotions-daily-weekly-deposit {
  font-family: 'Arial', sans-serif;
  color: #e0e0e0;
  line-height: 1.6;
  background-color: #0A2342; /* Main background color */
}

.page-promotions-daily-weekly-deposit__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.page-promotions-daily-weekly-deposit__hero {
  background: linear-gradient(135deg, #0A2342 0%, #1A3F6C 100%); /* Dark blue gradient */
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: #ffffff;
}

.page-promotions-daily-weekly-deposit__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract,geometric,patterns,dark_blue]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-promotions-daily-weekly-deposit__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.page-promotions-daily-weekly-deposit__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold for title */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-weight: bold;
}

.page-promotions-daily-weekly-deposit__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #f0f0f0;
}

.page-promotions-daily-weekly-deposit__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-promotions-daily-weekly-deposit__button {
  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-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions-daily-weekly-deposit__button--primary {
  background-color: #FFD700; /* Gold button */
  color: #0A2342;
  border: 2px solid #FFD700;
}

.page-promotions-daily-weekly-deposit__button--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  transform: translateY(-2px);
}

.page-promotions-daily-weekly-deposit__button--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-promotions-daily-weekly-deposit__button--secondary:hover {
  background-color: #FFD700;
  color: #0A2342;
  transform: translateY(-2px);
}

.page-promotions-daily-weekly-deposit__hero-image {
  margin-top: 40px;
  position: relative;
  z-index: 1;
}

.page-promotions-daily-weekly-deposit__hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

/* General Section Styling */
.page-promotions-daily-weekly-deposit__section {
  padding: 60px 0;
  background-color: #0A2342;
  color: #e0e0e0;
}

.page-promotions-daily-weekly-deposit__section:nth-of-type(even) {
  background-color: #1A3F6C;
}

.page-promotions-daily-weekly-deposit__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
}

.page-promotions-daily-weekly-deposit__section-intro {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
  color: #cccccc;
}

/* Advantage Cards */
.page-promotions-daily-weekly-deposit__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-promotions-daily-weekly-deposit__advantage-card {
  background-color: #1A3F6C;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-promotions-daily-weekly-deposit__advantage-card:hover {
  transform: translateY(-5px);
  background-color: #2a5a8e;
}

.page-promotions-daily-weekly-deposit__advantage-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-promotions-daily-weekly-deposit__card-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promotions-daily-weekly-deposit__advantage-card p {
  color: #c0c0c0;
  font-size: 0.95em;
}

.page-promotions-daily-weekly-deposit__cta-bottom {
  text-align: center;
  margin-top: 60px;
}

/* Promo Cards */
.page-promotions-daily-weekly-deposit__promo-card {
  background-color: #1A3F6C;
  padding: 40px;
  border-radius: 12px;
  margin-bottom: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  border-left: 5px solid #FFD700;
}

.page-promotions-daily-weekly-deposit__promo-header {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

.page-promotions-daily-weekly-deposit__promo-icon {
  width: 60px;
  height: 60px;
  margin-right: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-promotions-daily-weekly-deposit__promo-card .page-promotions-daily-weekly-deposit__card-title {
  text-align: left;
  margin-bottom: 0;
  color: #FFD700;
}

.page-promotions-daily-weekly-deposit__promo-card p {
  color: #c0c0c0;
  margin-bottom: 20px;
}

.page-promotions-daily-weekly-deposit__promo-card ul {
  list-style-type: disc;
  margin-left: 40px;
  margin-bottom: 25px;
  color: #c0c0c0;
}

.page-promotions-daily-weekly-deposit__promo-card li {
  margin-bottom: 10px;
}

.page-promotions-daily-weekly-deposit__button--action {
  background-color: #DC3545; /* Action Red */
  color: #ffffff;
  border: 2px solid #DC3545;
  padding: 12px 25px;
  font-size: 1em;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(220, 53, 69, 0.4);
}

.page-promotions-daily-weekly-deposit__button--action:hover {
  background-color: #c82333;
  border-color: #c82333;
  transform: translateY(-2px);
}

/* Step Guide */
.page-promotions-daily-weekly-deposit__step-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-promotions-daily-weekly-deposit__step-card {
  background-color: #1A3F6C;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  position: relative;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-promotions-daily-weekly-deposit__step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #FFD700;
  color: #0A2342;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8em;
  font-weight: bold;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
  border: 3px solid #0A2342;
}

.page-promotions-daily-weekly-deposit__step-image {
  width: 100%;
  max-width: 250px;
  height: auto;
  margin-top: 20px;
  margin-bottom: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions-daily-weekly-deposit__step-card p {
  color: #c0c0c0;
  font-size: 0.95em;
  margin-bottom: 25px;
}

.page-promotions-daily-weekly-deposit__button--small {
  padding: 10px 20px;
  font-size: 0.9em;
  border-radius: 5px;
  background-color: #FFD700;
  color: #0A2342;
  border: 2px solid #FFD700;
}

.page-promotions-daily-weekly-deposit__button--small:hover {
  background-color: #e6c200;
  border-color: #e6c200;
}

/* Terms & FAQ */
.page-promotions-daily-weekly-deposit__terms-list {
  list-style-type: decimal;
  margin-left: 40px;
  color: #c0c0c0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
}

.page-promotions-daily-weekly-deposit__terms-list li {
  margin-bottom: 15px;
  font-size: 1em;
}

.page-promotions-daily-weekly-deposit__terms-list li strong {
  color: #FFD700;
}

.page-promotions-daily-weekly-deposit__section-outro {
  text-align: center;
  margin-top: 40px;
  font-size: 1.1em;
  color: #cccccc;
}

.page-promotions-daily-weekly-deposit__faq-item {
  background-color: #1A3F6C;
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 215, 0, 0.1);
}

.page-promotions-daily-weekly-deposit__faq-question {
  font-size: 1.3em;
  color: #FFD700;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-promotions-daily-weekly-deposit__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

.page-promotions-daily-weekly-deposit__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-promotions-daily-weekly-deposit__faq-answer {
  color: #c0c0c0;
  font-size: 0.95em;
  display: none;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 215, 0, 0.1);
  margin-top: 10px;
}

.page-promotions-daily-weekly-deposit__faq-question.active + .page-promotions-daily-weekly-deposit__faq-answer {
  display: block;
}

/* Final CTA */
.page-promotions-daily-weekly-deposit__final-cta {
  background: linear-gradient(45deg, #1A3F6C 0%, #0A2342 100%);
  padding: 80px 0;
  text-align: center;
  color: #ffffff;
}

.page-promotions-daily-weekly-deposit__final-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-promotions-daily-weekly-deposit__hero-title {
    font-size: 2.8em;
  }

  .page-promotions-daily-weekly-deposit__hero-description {
    font-size: 1.1em;
  }

  .page-promotions-daily-weekly-deposit__section-title {
    font-size: 2em;
  }

  .page-promotions-daily-weekly-deposit__grid,
  .page-promotions-daily-weekly-deposit__step-grid {
    grid-template-columns: 1fr;
  }

  .page-promotions-daily-weekly-deposit__promo-card {
    padding: 30px;
  }

  .page-promotions-daily-weekly-deposit__promo-icon {
    width: 50px;
    height: 50px;
  }

  .page-promotions-daily-weekly-deposit__card-title {
    font-size: 1.4em;
  }
}

@media (max-width: 768px) {
  .page-promotions-daily-weekly-deposit__hero {
    padding: 60px 0;
  }

  .page-promotions-daily-weekly-deposit__hero-title {
    font-size: 2.2em;
  }

  .page-promotions-daily-weekly-deposit__hero-description {
    font-size: 1em;
  }

  .page-promotions-daily-weekly-deposit__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-promotions-daily-weekly-deposit__button {
    width: 80%;
    max-width: 300px;
    margin: 0 auto;
  }

  .page-promotions-daily-weekly-deposit__section {
    padding: 40px 0;
  }

  .page-promotions-daily-weekly-deposit__section-title {
    font-size: 1.8em;
  }

  .page-promotions-daily-weekly-deposit__section-intro {
    font-size: 0.95em;
  }

  .page-promotions-daily-weekly-deposit__terms-list {
    margin-left: 20px;
  }

  .page-promotions-daily-weekly-deposit__faq-question {
    font-size: 1.1em;
  }

  .page-promotions-daily-weekly-deposit__final-actions {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .page-promotions-daily-weekly-deposit__hero-title {
    font-size: 1.8em;
  }

  .page-promotions-daily-weekly-deposit__section-title {
    font-size: 1.5em;
  }

  .page-promotions-daily-weekly-deposit__promo-card,
  .page-promotions-daily-weekly-deposit__step-card {
    padding: 20px;
  }

  .page-promotions-daily-weekly-deposit__card-title {
    font-size: 1.2em;
  }
}