/* style/index-ok9-latest-promotions.css */
.page-index-ok9-latest-promotions {
  font-family: 'Arial', sans-serif;
  color: #F8F8F8; /* Light text for dark background */
  background-color: #0D1117; /* Main dark background */
  line-height: 1.6;
}

.page-index-ok9-latest-promotions__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #0D1117 0%, #1a1e26 100%); /* Darker gradient */
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-index-ok9-latest-promotions__hero-content {
  max-width: 900px;
  z-index: 1;
}

.page-index-ok9-latest-promotions__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold accent */
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
  font-weight: bold;
}

.page-index-ok9-latest-promotions__hero-subtitle {
  font-size: 1.2em;
  color: #E0E0E0;
  margin-bottom: 30px;
}

.page-index-ok9-latest-promotions__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-index-ok9-latest-promotions__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.page-index-ok9-latest-promotions__btn--primary {
  background-color: #FFD700; /* Gold */
  color: #0D1117; /* Dark text on gold */
}

.page-index-ok9-latest-promotions__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(255, 215, 0, 0.3);
}

.page-index-ok9-latest-promotions__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-index-ok9-latest-promotions__btn--secondary:hover {
  background-color: #FFD700;
  color: #0D1117;
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(255, 215, 0, 0.3);
}

.page-index-ok9-latest-promotions__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  opacity: 0.1;
  z-index: 0;
}

.page-index-ok9-latest-promotions__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) brightness(50%);
}

.page-index-ok9-latest-promotions__section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-index-ok9-latest-promotions__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold */
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.page-index-ok9-latest-promotions__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-index-ok9-latest-promotions__section--highlight {
  background-color: #1a1e26;
  border-top: 1px solid #2e3540;
  border-bottom: 1px solid #2e3540;
}

.page-index-ok9-latest-promotions__features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-index-ok9-latest-promotions__feature-item {
  background-color: #13171e;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-index-ok9-latest-promotions__feature-item:hover {
  transform: translateY(-10px);
}

.page-index-ok9-latest-promotions__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px #FFD700);
}

.page-index-ok9-latest-promotions__feature-item h3 {
  color: #FFD700;
  font-size: 1.5em;
  margin-bottom: 15px;
}

.page-index-ok9-latest-promotions__feature-item p {
  color: #CCCCCC;
}

.page-index-ok9-latest-promotions__promotion-category {
  margin-bottom: 80px;
}

.page-index-ok9-latest-promotions__category-title {
  font-size: 2em;
  color: #FFD700;
  margin-bottom: 20px;
  border-bottom: 2px solid #FFD700;
  padding-bottom: 10px;
  text-align: left;
}

.page-index-ok9-latest-promotions__category-description {
  font-size: 1.1em;
  color: #E0E0E0;
  margin-bottom: 40px;
}

.page-index-ok9-latest-promotions__promotion-card {
  background-color: #1a1e26;
  border-radius: 12px;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.page-index-ok9-latest-promotions__promotion-card:hover {
  transform: translateY(-5px);
}

.page-index-ok9-latest-promotions__promotion-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  filter: brightness(0.8);
}

.page-index-ok9-latest-promotions__promotion-details {
  padding: 30px;
}

.page-index-ok9-latest-promotions__promotion-name {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-index-ok9-latest-promotions__promotion-description {
  color: #CCCCCC;
  margin-bottom: 20px;
}

.page-index-ok9-latest-promotions__promotion-conditions {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.page-index-ok9-latest-promotions__promotion-conditions li {
  margin-bottom: 10px;
  color: #E0E0E0;
}

.page-index-ok9-latest-promotions__condition-label {
  color: #FFD700;
}

.page-index-ok9-latest-promotions__btn--claim {
  background-color: #FFD700;
  color: #0D1117;
  padding: 12px 25px;
  font-size: 1em;
  border-radius: 6px;
}

.page-index-ok9-latest-promotions__btn--claim:hover {
  background-color: #e6c200;
  box-shadow: 0 5px 10px rgba(255, 215, 0, 0.2);
}

.page-index-ok9-latest-promotions__section--cta {
  background-color: #1a1e26;
  text-align: center;
  padding: 80px 20px;
  border-radius: 15px;
  margin-bottom: 60px;
}

.page-index-ok9-latest-promotions__cta-description {
  font-size: 1.2em;
  color: #E0E0E0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-ok9-latest-promotions__cta-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-index-ok9-latest-promotions__section--faq {
  background-color: #13171e;
  padding: 60px 20px;
  border-radius: 12px;
  margin-bottom: 40px;
}

.page-index-ok9-latest-promotions__faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-index-ok9-latest-promotions__faq-item {
  background-color: #0D1117;
  border: 1px solid #2e3540;
  border-radius: 8px;
  padding: 25px;
  transition: background-color 0.3s ease;
}

.page-index-ok9-latest-promotions__faq-item:hover {
  background-color: #1a1e26;
}

.page-index-ok9-latest-promotions__faq-question {
  font-size: 1.3em;
  color: #FFD700;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-index-ok9-latest-promotions__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-index-ok9-latest-promotions__faq-item.active .page-index-ok9-latest-promotions__faq-question::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-index-ok9-latest-promotions__faq-answer {
  color: #CCCCCC;
  font-size: 1em;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
  padding-top: 0;
}

.page-index-ok9-latest-promotions__faq-item.active .page-index-ok9-latest-promotions__faq-answer {
  max-height: 200px; /* Adjust as needed for content */
  padding-top: 15px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-index-ok9-latest-promotions__hero-title {
    font-size: 2.8em;
  }
  .page-index-ok9-latest-promotions__section-title {
    font-size: 2em;
  }
  .page-index-ok9-latest-promotions__promotion-card {
    flex-direction: column;
  }
  .page-index-ok9-latest-promotions__promotion-image {
    height: 200px;
  }
}

@media (max-width: 768px) {
  .page-index-ok9-latest-promotions__hero {
    padding: 60px 15px;
  }
  .page-index-ok9-latest-promotions__hero-title {
    font-size: 2.2em;
  }
  .page-index-ok9-latest-promotions__hero-subtitle {
    font-size: 1em;
  }
  .page-index-ok9-latest-promotions__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-index-ok9-latest-promotions__btn {
    width: 100%;
    padding: 12px 20px;
  }
  .page-index-ok9-latest-promotions__section {
    padding: 40px 15px;
  }
  .page-index-ok9-latest-promotions__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-index-ok9-latest-promotions__category-title {
    font-size: 1.6em;
  }
  .page-index-ok9-latest-promotions__promotion-name {
    font-size: 1.5em;
  }
  .page-index-ok9-latest-promotions__cta-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-index-ok9-latest-promotions__faq-question {
    font-size: 1.1em;
  }
}