.page-promotions-current-offers {
  font-family: Arial, sans-serif;
  color: #FFF6D6; /* Text Main */
  background-color: #0A0A0A; /* Background */
  line-height: 1.6;
}

.page-promotions-current-offers__hero-section {
  position: relative;
  overflow: hidden;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  text-align: center;
  background-color: #0A0A0A;
}

.page-promotions-current-offers__hero-image {
  margin-bottom: 20px;
}

.page-promotions-current-offers__hero-image img {
  width: 100%;
  height: auto;
  display: block;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(242, 193, 78, 0.4);
}

.page-promotions-current-offers__hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.page-promotions-current-offers__main-title {
  font-size: clamp(1.75rem, 5vw, 2rem);
  color: #F2C14E; /* Main color */
  margin-bottom: 15px;
  font-weight: bold;
  line-height: 1.2;
}

.page-promotions-current-offers__intro-text {
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions-current-offers__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.page-promotions-current-offers__cta-button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  white-space: nowrap;
  font-size: 1rem;
  min-width: 150px;
  text-align: center;
}

.page-promotions-current-offers__cta-button--primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button color */
  color: #111111; /* Dark text for light button */
  border: none;
}

.page-promotions-current-offers__cta-button--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(242, 193, 78, 0.5);
}

.page-promotions-current-offers__cta-button--secondary {
  background-color: transparent;
  color: #F2C14E; /* Main color */
  border: 2px solid #F2C14E;
}

.page-promotions-current-offers__cta-button--secondary:hover {
  background-color: #F2C14E;
  color: #0A0A0A;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(242, 193, 78, 0.3);
}

.page-promotions-current-offers__cta-button--outline {
  background-color: transparent;
  color: #FFF6D6;
  border: 2px solid #3A2A12; /* Border color */
}

.page-promotions-current-offers__cta-button--outline:hover {
  background-color: #3A2A12;
  transform: translateY(-2px);
}

.page-promotions-current-offers__cta-button--small {
  padding: 8px 18px;
  font-size: 0.9rem;
  min-width: unset;
}

.page-promotions-current-offers__section-title {
  font-size: clamp(1.5rem, 4vw, 1.8rem);
  color: #F2C14E; /* Main color */
  text-align: center;
  margin-top: 50px;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-promotions-current-offers__section-description {
  max-width: 800px;
  margin: 0 auto 40px auto;
  text-align: center;
  font-size: 1.05rem;
}

.page-promotions-current-offers__overview-section,
.page-promotions-current-offers__exclusive-bonuses-section,
.page-promotions-current-offers__terms-section,
.page-promotions-current-offers__faq-section,
.page-promotions-current-offers__trust-section,
.page-promotions-current-offers__final-cta-section {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

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

.page-promotions-current-offers__promo-card {
  background-color: #111111; /* Card BG */
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #3A2A12; /* Border color */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-promotions-current-offers__promo-card-image {
  margin-bottom: 20px;
}

.page-promotions-current-offers__promo-card-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.page-promotions-current-offers__promo-card-title {
  font-size: 1.4rem;
  color: #FFD36B; /* Glow color */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promotions-current-offers__promo-card-text {
  font-size: 1rem;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-promotions-current-offers__bonus-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.page-promotions-current-offers__bonus-item {
  background-color: #111111; /* Card BG */
  border-radius: 10px;
  padding: 25px;
  border: 1px solid #3A2A12; /* Border color */
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions-current-offers__bonus-item-title {
  font-size: 1.3rem;
  color: #F2C14E; /* Main color */
  margin-bottom: 10px;
  font-weight: bold;
}

.page-promotions-current-offers__bonus-item-text {
  font-size: 0.95rem;
}

.page-promotions-current-offers__cta-center {
  text-align: center;
  margin-top: 40px;
}

.page-promotions-current-offers__terms-list {
  list-style: none;
  padding: 0;
  margin: 30px auto;
  max-width: 800px;
  text-align: left;
}

.page-promotions-current-offers__terms-item {
  background-color: #111111; /* Card BG */
  border-left: 5px solid #F2C14E; /* Main color */
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-promotions-current-offers__terms-item strong {
  color: #FFD36B; /* Glow color */
}

.page-promotions-current-offers__app-download-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 50px 20px;
  max-width: 1200px;
  margin: 0 auto;
  background-color: #111111; /* Card BG */
  border-radius: 10px;
  border: 1px solid #3A2A12;
  margin-top: 50px;
}

.page-promotions-current-offers__app-content {
  text-align: center;
  max-width: 700px;
}

.page-promotions-current-offers__app-image img {
  max-width: 400px;
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 0 25px rgba(242, 193, 78, 0.6);
}

.page-promotions-current-offers__app-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
}

.page-promotions-current-offers__faq-section {
  margin-top: 50px;
}

.page-promotions-current-offers__faq-item {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border color */
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-promotions-current-offers__faq-question {
  font-size: 1.2rem;
  color: #FFD36B; /* Glow color */
  margin-bottom: 10px;
  cursor: pointer;
  font-weight: bold;
}

.page-promotions-current-offers__faq-answer {
  font-size: 0.95rem;
  display: none; /* Hidden by default, toggled by JS */
}

.page-promotions-current-offers__faq-item.active .page-promotions-current-offers__faq-answer {
  display: block;
}

.page-promotions-current-offers__trust-section {
  margin-top: 50px;
  padding: 50px 20px;
  background-color: #111111; /* Card BG */
  border-radius: 10px;
  border: 1px solid #3A2A12;
}

.page-promotions-current-offers__trust-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.page-promotions-current-offers__trust-text {
  max-width: 700px;
  text-align: center;
}

.page-promotions-current-offers__trust-text p {
  margin-bottom: 30px;
  font-size: 1.05rem;
}

.page-promotions-current-offers__trust-image img {
  max-width: 400px;
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 0 25px rgba(242, 193, 78, 0.6);
}

.page-promotions-current-offers__final-cta-section {
  text-align: center;
  margin-top: 60px;
  margin-bottom: 60px;
}

/* Responsive Adjustments */
@media (min-width: 768px) {
  .page-promotions-current-offers__app-download-section,
  .page-promotions-current-offers__trust-content {
    flex-direction: row;
    justify-content: space-around;
    text-align: left;
  }

  .page-promotions-current-offers__app-content,
  .page-promotions-current-offers__trust-text {
    text-align: left;
    max-width: 50%;
  }

  .page-promotions-current-offers__app-image,
  .page-promotions-current-offers__trust-image {
    text-align: right;
  }

  .page-promotions-current-offers__app-image img,
  .page-promotions-current-offers__trust-image img {
    max-width: 350px;
  }

  .page-promotions-current-offers__main-title {
    font-size: 2rem;
  }

  .page-promotions-current-offers__section-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .page-promotions-current-offers__hero-image img,
  .page-promotions-current-offers__promo-card-image img,
  .page-promotions-current-offers__app-image img,
  .page-promotions-current-offers__trust-image img {
    max-width: 100%;
    height: auto;
  }
  .page-promotions-current-offers__promo-grid {
    grid-template-columns: 1fr;
  }
  .page-promotions-current-offers__bonus-list {
    grid-template-columns: 1fr;
  }
  .page-promotions-current-offers__cta-button {
    width: 100%;
  }
}