/* style/promotions.css */
.page-promotions {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #0F1D36; /* Darker blue background */
}

.page-promotions__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-promotions__hero {
  background: linear-gradient(135deg, #1A2B4C, #0F1D36);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: #FFFFFF;
}

.page-promotions__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.page-promotions__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
  color: #FFFFFF;
}

.page-promotions__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #B0B0B0;
}

.page-promotions__hero-btn {
  display: inline-block;
  background-color: #FFD700;
  color: #1A2B4C;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions__hero-btn:hover {
  background-color: #E5C100;
  transform: translateY(-3px);
}

.page-promotions__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.15;
  z-index: 1;
}

.page-promotions__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-promotions__intro,
.page-promotions__offer-types,
.page-promotions__detail-list,
.page-promotions__faq,
.page-promotions__cta,
.page-promotions__responsible-gaming {
  padding: 80px 0;
  background-color: #1A2B4C; /* Primary dark blue for sections */
  margin-bottom: 20px; /* Spacing between sections */
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-promotions__intro {
  background-color: #0F1D36;
}

.page-promotions__section-title {
  font-size: 2.8em;
  color: #FFD700; /* Accent color for titles */
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-promotions__section-description {
  font-size: 1.1em;
  color: #B0B0B0;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
  line-height: 1.6;
}

.page-promotions__text-content {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #E0E0E0;
  text-align: justify;
}

.page-promotions__btn-primary {
  display: block;
  width: fit-content;
  margin: 40px auto 0 auto;
  background-color: #FFD700;
  color: #1A2B4C;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions__btn-primary:hover {
  background-color: #E5C100;
  transform: translateY(-3px);
}

.page-promotions__btn-secondary {
  display: block;
  width: fit-content;
  margin: 40px auto 0 auto;
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-promotions__btn-secondary:hover {
  background-color: #FFD700;
  color: #1A2B4C;
}

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

.page-promotions__card {
  background-color: #0F1D36; /* Darker background for cards */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-promotions__card-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  object-fit: contain;
}

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

.page-promotions__card-text {
  font-size: 1em;
  color: #B0B0B0;
  line-height: 1.6;
  margin-bottom: 25px;
}

.page-promotions__card-btn {
  display: inline-block;
  background-color: #FFD700;
  color: #1A2B4C;
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 0.95em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-promotions__card-btn:hover {
  background-color: #E5C100;
  transform: translateY(-2px);
}

.page-promotions__detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-promotions__detail-card {
  background-color: #0F1D36;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions__detail-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-promotions__detail-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: bold;
  line-height: 1.4;
}

.page-promotions__detail-title a {
  color: #FFD700;
  text-decoration: none;
}

.page-promotions__detail-title a:hover {
  text-decoration: underline;
}

.page-promotions__detail-description {
  font-size: 1em;
  color: #B0B0B0;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promotions__detail-link {
  display: inline-block;
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  margin-bottom: 15px;
  transition: color 0.3s ease;
}

.page-promotions__detail-link:hover {
  color: #E5C100;
  text-decoration: underline;
}

.page-promotions__detail-btn {
  display: inline-block;
  background-color: #FFD700;
  color: #1A2B4C;
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 0.95em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin-top: 10px;
}

.page-promotions__detail-btn:hover {
  background-color: #E5C100;
  transform: translateY(-2px);
}

.page-promotions__faq .page-promotions__section-title {
  margin-bottom: 40px;
}

.page-promotions__accordion-item {
  background-color: #0F1D36;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions__accordion-header {
  padding: 20px 30px;
  font-size: 1.3em;
  color: #FFD700;
  cursor: pointer;
  position: relative;
  transition: background-color 0.3s ease;
  font-weight: bold;
}

.page-promotions__accordion-header:hover {
  background-color: #1A2B4C;
}

.page-promotions__accordion-header::after {
  content: '+';
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-promotions__accordion-header.active::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-promotions__accordion-content {
  padding: 0 30px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-promotions__accordion-content p {
  padding-bottom: 20px;
  font-size: 1em;
  line-height: 1.6;
  color: #B0B0B0;
}

.page-promotions__cta {
  background: linear-gradient(90deg, #1A2B4C, #0F1D36);
  text-align: center;
  padding: 60px 0;
}

.page-promotions__cta-image {
  max-width: 150px;
  margin-bottom: 30px;
  filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
}

.page-promotions__cta-title {
  font-size: 2.5em;
  color: #FFD700;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-promotions__cta-description {
  font-size: 1.2em;
  color: #E0E0E0;
  max-width: 700px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
}

.page-promotions__responsible-gaming {
  text-align: center;
  background-color: #0F1D36;
}

.page-promotions__responsible-gaming-image {
  max-width: 300px;
  margin: 30px auto;
  display: block;
  opacity: 0.8;
}

.highlight {
  color: #FFD700;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promotions__hero-title {
    font-size: 2.8em;
  }
  .page-promotions__section-title {
    font-size: 2.2em;
  }
  .page-promotions__cta-title {
    font-size: 2em;
  }
  .page-promotions__grid,
  .page-promotions__detail-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-promotions__hero {
    padding: 80px 0;
  }
  .page-promotions__hero-title {
    font-size: 2.2em;
  }
  .page-promotions__hero-subtitle {
    font-size: 1.1em;
  }
  .page-promotions__intro,
  .page-promotions__offer-types,
  .page-promotions__detail-list,
  .page-promotions__faq,
  .page-promotions__cta,
  .page-promotions__responsible-gaming {
    padding: 60px 0;
  }
  .page-promotions__section-title {
    font-size: 1.8em;
  }
  .page-promotions__section-description,
  .page-promotions__text-content {
    font-size: 0.95em;
  }
  .page-promotions__card-title {
    font-size: 1.4em;
  }
  .page-promotions__detail-title {
    font-size: 1.3em;
  }
  .page-promotions__accordion-header {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-promotions__accordion-header::after {
    right: 20px;
  }
  .page-promotions__accordion-content p {
    padding: 0 20px 15px 20px;
  }
  .page-promotions__cta-title {
    font-size: 1.8em;
  }
  .page-promotions__cta-description {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-promotions__hero {
    padding: 60px 0;
  }
  .page-promotions__hero-title {
    font-size: 1.8em;
  }
  .page-promotions__hero-subtitle {
    font-size: 0.9em;
  }
  .page-promotions__hero-btn,
  .page-promotions__btn-primary,
  .page-promotions__btn-secondary {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-promotions__intro,
  .page-promotions__offer-types,
  .page-promotions__detail-list,
  .page-promotions__faq,
  .page-promotions__cta,
  .page-promotions__responsible-gaming {
    padding: 40px 0;
  }
  .page-promotions__section-title {
    font-size: 1.5em;
  }
  .page-promotions__section-description {
    font-size: 0.9em;
  }
  .page-promotions__grid,
  .page-promotions__detail-grid {
    grid-template-columns: 1fr;
  }
  .page-promotions__card,
  .page-promotions__detail-card {
    padding: 20px;
  }
  .page-promotions__card-title {
    font-size: 1.2em;
  }
  .page-promotions__detail-title {
    font-size: 1.1em;
  }
  .page-promotions__accordion-header {
    font-size: 1em;
    padding: 12px 15px;
  }
  .page-promotions__accordion-header::after {
    right: 15px;
  }
  .page-promotions__accordion-content p {
    padding: 0 15px 12px 15px;
  }
  .page-promotions__cta-title {
    font-size: 1.5em;
  }
  .page-promotions__cta-description {
    font-size: 0.9em;
  }
}