body {
  background-color: #16254c !important;
}

.page-container {
  width: 100%;
  max-width: 480px;
  background-color: #16254c;
  padding: 100px 20px 20px;
  box-sizing: border-box;
  min-height: 100vh;
  display: flex;
  margin: auto;
  justify-content: center;
  flex-direction: column;
}

.h1-rade {
  color: #e6d1a2;
  font-weight: bold;
}

/* --- NEW: Banner Styles --- */
.banner-container {
  width: 100%;
  margin-bottom: 25px;
}

.banner-rade {
  width: 100%;
  height: auto;
  border-radius: 15px;
  margin: 0 !important;
  max-width: 100% !important;
}

/* --- NEW: Countdown Styles --- */
.countdown-container {
  text-align: center;
  margin-bottom: 30px;
}
.countdown-timer {
  display: flex;
  justify-content: center;
  gap: 10px;
  font-size: 24px;
  font-weight: bold;
  color: #e6d1a2;
}
.countdown-timer > div {
  background-color: #294f6b;
  width: 60px;
  height: 60px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.countdown-timer span {
  display: block;
  color: #ccc;
  font-weight: normal;
  font-size: 15px;
  line-height: 22px;
}
.countdown-container p {
  color: #7769af;
  font-weight: bold;
  margin-top: 15px;
  text-align: center;
}

.hero-rade h1 {
  font-size: 24px;
  margin-bottom: 10px;
}
.hero-rade p {
  font-size: 16px;
  color: #ccc;
  text-align: center;
}

.card-rade {
  background-color: #294f6b;
  padding: 20px;
  border-radius: 15px;
  margin-bottom: 30px;
  border-right: 4px solid #e6d1a2;
}
.card-rade h2 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 24px;
}
.card-rade p {
  color: white;
}
.h2-rade {
  color: #e6d1a2;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 24px;
}

.prize-item-rade {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  background: #4d3f99;
  padding: 10px;
  border-radius: 8px;
  color: white;
}

.cta-btn {
  display: block;
  background-color: #e6d1a2;
  color: #16254c;
  text-align: center;
  padding: 15px;
  font-weight: bold;
  border-radius: 10px;
  text-decoration: none;
  font-size: 18px;
  margin-top: 20px;
}
.cta-btn:hover {
  transform: none;
  box-shadow: none;
  color: #16254c;
}

.steps-rade {
  margin-top: 30px;
}
.step-num {
  color: #e6d1a2;
  font-weight: bold;
  font-size: 1.2em;
}

/* --- NEW: FAQ Styles --- */
.faq-section {
  margin-top: 40px;
}
.faq-item {
  background-color: #294f6b;
  margin-bottom: 10px;
  border-radius: 8px;
  overflow: hidden;
}
.faq-question {
  padding: 15px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
}
.faq-question span {
  color: white;
}
.faq-symbol {
  font-size: 24px;
  color: #e6d1a2;
}
.faq-answer {
  max-height: 0;
  transition: max-height 0.3s ease-out;
  background-color: #1e3a52;
  padding: 0 15px;
}
.faq-answer p {
  padding: 15px 0;
  margin: 0;
  color: white;
  font-size: 14px;
}
.faq-item.active .faq-answer {
  max-height: 200px; /* Adjust if answers are longer */
}
@media screen and (max-width: 990px) {
  .page-container {
    padding-top: 20px;
  }
}
