/* style/promotions-daily-weekly-rewards.css */

.page-promotions-daily-weekly-rewards {
  font-family: 'Arial', sans-serif;
  color: #e0e0e0; /* Light grey for general text on dark background */
  background-color: #0A192F; /* Primary dark background */
  line-height: 1.6;
}

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

.page-promotions-daily-weekly-rewards__container--flex {
  display: flex;
  align-items: center;
  gap: 40px;
}

.page-promotions-daily-weekly-rewards__container--reverse {
  flex-direction: row-reverse;
}

.page-promotions-daily-weekly-rewards__container--centered {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-promotions-daily-weekly-rewards__hero-section {
  background: linear-gradient(135deg, #0A192F 0%, #1a3a66 100%); /* Dark blue gradient */
  color: #ffffff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-promotions-daily-weekly-rewards__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Auxiliary gold for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions-daily-weekly-rewards__hero-subtitle {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #c0c0c0;
}

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

.page-promotions-daily-weekly-rewards__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
}

.page-promotions-daily-weekly-rewards__btn--primary {
  background-color: #FFD700; /* Auxiliary gold */
  color: #0A192F; /* Primary dark for text on gold */
  border: 2px solid #FFD700;
}

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

.page-promotions-daily-weekly-rewards__btn--secondary {
  background-color: transparent;
  color: #FFD700; /* Auxiliary gold */
  border: 2px solid #FFD700;
}

.page-promotions-daily-weekly-rewards__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A192F; /* Primary dark for text on gold */
  transform: translateY(-2px);
}

.page-promotions-daily-weekly-rewards__btn--full-width {
  width: 100%;
  max-width: 350px;
  margin-top: 30px;
}

.page-promotions-daily-weekly-rewards__section {
  padding: 80px 0;
  position: relative;
  z-index: 1;
}

.page-promotions-daily-weekly-rewards__section--alt-bg {
  background-color: #1a2a40; /* Slightly lighter dark blue */
}

.page-promotions-daily-weekly-rewards__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Auxiliary gold */
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.page-promotions-daily-weekly-rewards__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-promotions-daily-weekly-rewards__intro p {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 20px;
  color: #c0c0c0;
}

.page-promotions-daily-weekly-rewards__intro a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-promotions-daily-weekly-rewards__intro a:hover {
  text-decoration: underline;
}

.page-promotions-daily-weekly-rewards__content-block {
  flex: 1;
  padding: 20px;
}

.page-promotions-daily-weekly-rewards__content-title {
  font-size: 2em;
  color: #FFD700;
  margin-bottom: 25px;
}

.page-promotions-daily-weekly-rewards__content-block p {
  margin-bottom: 15px;
  color: #e0e0e0;
}

.page-promotions-daily-weekly-rewards__list {
  list-style: none;
  padding: 0;
  margin: 25px 0;
}

.page-promotions-daily-weekly-rewards__list li {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="%23FFD700" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M22 11.08V12a10 10 0 1 1-5.93-8.93"></path><path d="M22 4L12 14.01l-3-3"></path></svg>') no-repeat left center;
  background-size: 20px;
  padding-left: 30px;
  margin-bottom: 10px;
  color: #c0c0c0;
}

.page-promotions-daily-weekly-rewards__list-highlight {
  color: #FFD700;
}

.page-promotions-daily-weekly-rewards__image-block {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

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

.page-promotions-daily-weekly-rewards__grid--3-cols {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.page-promotions-daily-weekly-rewards__game-card, .page-promotions-daily-weekly-rewards__benefit-card {
  background-color: #1a2a40; /* Slightly lighter dark blue */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions-daily-weekly-rewards__game-card:hover, .page-promotions-daily-weekly-rewards__benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-promotions-daily-weekly-rewards__game-icon, .page-promotions-daily-weekly-rewards__benefit-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.6)); /* Gold glow */
}

.page-promotions-daily-weekly-rewards__game-title, .page-promotions-daily-weekly-rewards__benefit-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 10px;
}

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

.page-promotions-daily-weekly-rewards__note {
  text-align: center;
  margin-top: 40px;
  font-style: italic;
  color: #a0a0a0;
}

.page-promotions-daily-weekly-rewards__cta-banner {
  background: #0A192F;
  padding: 60px 0;
  border-top: 1px solid #FFD700;
  border-bottom: 1px solid #FFD700;
}

.page-promotions-daily-weekly-rewards__banner-image {
  max-width: 300px;
  margin-bottom: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
}

.page-promotions-daily-weekly-rewards__cta-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-promotions-daily-weekly-rewards__cta-description {
  font-size: 1.2em;
  max-width: 700px;
  margin: 0 auto 40px;
  color: #c0c0c0;
}

.page-promotions-daily-weekly-rewards__steps-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-promotions-daily-weekly-rewards__steps-list li {
  background-color: #1a2a40;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  position: relative;
  padding-top: 80px;
}

.page-promotions-daily-weekly-rewards__step-number {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #FFD700;
  color: #0A192F;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2em;
  font-weight: bold;
  border: 4px solid #0A192F;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.page-promotions-daily-weekly-rewards__step-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-promotions-daily-weekly-rewards__step-title + p {
  color: #c0c0c0;
}

.page-promotions-daily-weekly-rewards__action-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 60px;
}

.page-promotions-daily-weekly-rewards__faq .page-promotions-daily-weekly-rewards__section-title {
  margin-bottom: 40px;
}

.page-promotions-daily-weekly-rewards__accordion-item {
  background-color: #1a2a40;
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions-daily-weekly-rewards__accordion-header {
  background-color: #0A192F;
  color: #FFD700;
  padding: 20px 25px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-promotions-daily-weekly-rewards__accordion-header::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

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

.page-promotions-daily-weekly-rewards__accordion-header:hover {
  background-color: #2a3d5c;
}

.page-promotions-daily-weekly-rewards__accordion-content {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  color: #e0e0e0;
}

.page-promotions-daily-weekly-rewards__accordion-content.active {
  max-height: 200px; /* Adjust based on content */
  padding: 20px 25px;
}

.page-promotions-daily-weekly-rewards__accordion-content p {
  margin: 0;
  color: #c0c0c0;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-promotions-daily-weekly-rewards__hero-title {
    font-size: 2.5em;
  }
  .page-promotions-daily-weekly-rewards__section-title {
    font-size: 2em;
  }
  .page-promotions-daily-weekly-rewards__container--flex {
    flex-direction: column;
  }
  .page-promotions-daily-weekly-rewards__container--reverse {
    flex-direction: column;
  }
  .page-promotions-daily-weekly-rewards__content-block, .page-promotions-daily-weekly-rewards__image-block {
    flex: none;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .page-promotions-daily-weekly-rewards__hero-section {
    padding: 80px 0;
  }
  .page-promotions-daily-weekly-rewards__hero-title {
    font-size: 2em;
  }
  .page-promotions-daily-weekly-rewards__hero-subtitle {
    font-size: 1em;
  }
  .page-promotions-daily-weekly-rewards__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-promotions-daily-weekly-rewards__btn {
    width: 80%;
    margin: 0 auto;
  }
  .page-promotions-daily-weekly-rewards__section {
    padding: 60px 0;
  }
  .page-promotions-daily-weekly-rewards__section-title {
    font-size: 1.8em;
    margin-bottom: 40px;
  }
  .page-promotions-daily-weekly-rewards__content-title {
    font-size: 1.6em;
  }
  .page-promotions-daily-weekly-rewards__grid {
    grid-template-columns: 1fr;
  }
  .page-promotions-daily-weekly-rewards__steps-list {
    grid-template-columns: 1fr;
  }
  .page-promotions-daily-weekly-rewards__action-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-promotions-daily-weekly-rewards__accordion-header {
    font-size: 1.1em;
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-promotions-daily-weekly-rewards__hero-section {
    padding: 60px 0;
  }
  .page-promotions-daily-weekly-rewards__hero-title {
    font-size: 1.8em;
  }
  .page-promotions-daily-weekly-rewards__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-promotions-daily-weekly-rewards__section-title {
    font-size: 1.5em;
  }
  .page-promotions-daily-weekly-rewards__cta-title {
    font-size: 2em;
  }
  .page-promotions-daily-weekly-rewards__cta-description {
    font-size: 1em;
  }
}