.page-index-promotions-overview {
  color: #ffffff;
  background-color: #000000;
}

.page-index-promotions-overview__hero-promo-section {
  padding-top: 180px;
  padding-bottom: 80px;
  background: linear-gradient(135deg, var(--primary-color-darker), var(--secondary-color-darker));
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-index-promotions-overview__hero-promo-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.page-index-promotions-overview__main-title {
  font-size: 48px;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 25px;
  line-height: 1.2;
}

.page-index-promotions-overview__hero-promo-description {
  font-size: 18px;
  color: #f0f0f0;
  line-height: 1.6;
  margin-bottom: 40px;
}

.page-index-promotions-overview__hero-promo-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-index-promotions-overview__cta-button {
  display: inline-block;
  padding: 15px 40px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  text-align: center;
  white-space: nowrap;
}

.page-index-promotions-overview__cta-button--primary {
  background: var(--primary-color);
  color: #ffffff;
  border: 2px solid var(--primary-color);
}

.page-index-promotions-overview__cta-button--primary:hover {
  background: var(--primary-color-darker);
  border-color: var(--primary-color-darker);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.page-index-promotions-overview__cta-button--secondary {
  background: #ffffff;
  color: var(--primary-color);
  border: 2px solid #ffffff;
}

.page-index-promotions-overview__cta-button--secondary:hover {
  background: var(--primary-color-light);
  color: #ffffff;
  border-color: var(--primary-color-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.page-index-promotions-overview__section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-index-promotions-overview__section-title {
  font-size: 36px;
  font-weight: bold;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-index-promotions-overview__text-block {
  font-size: 17px;
  line-height: 1.8;
  color: #f0f0f0;
  margin-bottom: 25px;
  text-align: justify;
}

.page-index-promotions-overview__introduction-section {
  padding: 60px 0;
  background-color: #1a1a1a;
}

.page-index-promotions-overview__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-index-promotions-overview__feature-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-index-promotions-overview__feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-index-promotions-overview__feature-icon {
  width: 150px;
  height: auto;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
  object-fit: contain;
}

.page-index-promotions-overview__feature-title {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-index-promotions-overview__feature-description {
  font-size: 16px;
  color: #cccccc;
  line-height: 1.6;
}

.page-index-promotions-overview__game-overview-section {
  padding: 60px 0;
  background-color: #0d0d0d;
}

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

.page-index-promotions-overview__game-card-large {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.15);
  display: flex;
  flex-direction: column;
}

.page-index-promotions-overview__game-card-large:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-index-promotions-overview__game-card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.page-index-promotions-overview__game-card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-index-promotions-overview__game-card-title {
  font-size: 26px;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-index-promotions-overview__game-card-description {
  font-size: 16px;
  color: #cccccc;
  line-height: 1.6;
  margin-bottom: 20px;
}

.page-index-promotions-overview__promotions-section {
  padding: 60px 0;
  background-color: #1a1a1a;
}

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

.page-index-promotions-overview__promo-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.15);
  display: flex;
  flex-direction: column;
}

.page-index-promotions-overview__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-index-promotions-overview__promo-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.page-index-promotions-overview__promo-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-index-promotions-overview__promo-title {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-index-promotions-overview__promo-description {
  font-size: 16px;
  color: #cccccc;
  line-height: 1.6;
  margin-bottom: 20px;
}

.page-index-promotions-overview__latest-blog-section {
  padding: 60px 0;
  background-color: #0d0d0d;
}

.page-index-promotions-overview__blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-promotions-overview__blog-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.15);
  display: flex;
  flex-direction: column;
}

.page-index-promotions-overview__blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-index-promotions-overview__blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-index-promotions-overview__blog-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-index-promotions-overview__blog-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}

.page-index-promotions-overview__blog-link {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-index-promotions-overview__blog-link:hover {
  color: var(--primary-color-light);
  text-decoration: underline;
}

.page-index-promotions-overview__blog-excerpt {
  font-size: 15px;
  color: #cccccc;
  line-height: 1.6;
  margin-bottom: 15px;
}

.page-index-promotions-overview__blog-date {
  font-size: 14px;
  color: #888888;
}

.page-index-promotions-overview__view-all-button {
  text-align: center;
  margin-top: 40px;
}

.page-index-promotions-overview__faq-section {
  padding: 60px 0;
  background-color: #1a1a1a;
}

.page-index-promotions-overview__faq-list {
  margin-top: 40px;
}

.page-index-promotions-overview__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-index-promotions-overview__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 15px;
  opacity: 0;
  color: #f0f0f0;
  font-size: 16px;
  line-height: 1.7;
}

.page-index-promotions-overview__faq-item.active .page-index-promotions-overview__faq-answer {
  max-height: 2000px !important;
  padding: 20px 15px !important;
  opacity: 1;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 0 0 5px 5px;
}

.page-index-promotions-overview__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 5px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-index-promotions-overview__faq-question:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--primary-color);
}

.page-index-promotions-overview__faq-question:active {
  background: rgba(255, 255, 255, 0.2);
}

.page-index-promotions-overview__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none;
  color: #ffffff;
}

.page-index-promotions-overview__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: var(--primary-color);
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
}

.page-index-promotions-overview__faq-item.active .page-index-promotions-overview__faq-toggle {
  color: #ffffff;
  transform: rotate(45deg);
}

.page-index-promotions-overview__register-cta-section {
  padding: 60px 0;
  background-color: var(--secondary-color-darker);
  text-align: center;
}

.page-index-promotions-overview__dark-section .page-index-promotions-overview__section-title {
  color: #ffffff;
  text-shadow: none;
}

.page-index-promotions-overview__dark-section .page-index-promotions-overview__text-block {
  color: #f0f0f0;
}

.page-index-promotions-overview__text-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-index-promotions-overview__text-link:hover {
  color: var(--primary-color-light);
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-index-promotions-overview__hero-promo-section {
    padding-top: 140px;
    padding-bottom: 60px;
  }
  .page-index-promotions-overview__main-title {
    font-size: 40px;
  }
  .page-index-promotions-overview__section-title {
    font-size: 30px;
  }
  .page-index-promotions-overview__game-carousel,
  .page-index-promotions-overview__promo-grid,
  .page-index-promotions-overview__blog-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-index-promotions-overview__hero-promo-section {
    padding-top: 100px;
    padding-bottom: 40px;
  }
  .page-index-promotions-overview__main-title {
    font-size: 32px;
  }
  .page-index-promotions-overview__hero-promo-description {
    font-size: 16px;
  }
  .page-index-promotions-overview__hero-promo-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-index-promotions-overview__cta-button {
    padding: 12px 30px;
    font-size: 16px;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }
  .page-index-promotions-overview__section-title {
    font-size: 26px;
    margin-bottom: 30px;
  }
  .page-index-promotions-overview__text-block {
    font-size: 15px;
  }
  .page-index-promotions-overview__feature-card,
  .page-index-promotions-overview__game-card-large,
  .page-index-promotions-overview__promo-card,
  .page-index-promotions-overview__blog-card {
    padding: 20px;
  }
  .page-index-promotions-overview__feature-icon {
    width: 120px;
  }
  .page-index-promotions-overview__feature-title {
    font-size: 20px;
  }
  .page-index-promotions-overview__game-card-image,
  .page-index-promotions-overview__promo-image,
  .page-index-promotions-overview__blog-image {
    height: 180px;
  }
  .page-index-promotions-overview__game-card-title {
    font-size: 22px;
  }
  .page-index-promotions-overview__promo-title {
    font-size: 20px;
  }
  .page-index-promotions-overview__blog-title {
    font-size: 18px;
  }
  .page-index-promotions-overview__faq-question {
    padding: 15px;
    flex-wrap: wrap;
  }
  .page-index-promotions-overview__faq-question h3 {
    font-size: 15px;
    margin-bottom: 0;
    width: calc(100% - 40px);
  }
  .page-index-promotions-overview__faq-toggle {
    margin-left: 10px;
    width: 24px;
    height: 24px;
    font-size: 20px;
  }
  .page-index-promotions-overview__faq-answer {
    padding: 0 15px;
  }
  .page-index-promotions-overview__faq-item.active .page-index-promotions-overview__faq-answer {
    padding: 15px !important;
  }
}

@media (max-width: 480px) {
  .page-index-promotions-overview__main-title {
    font-size: 28px;
  }
  .page-index-promotions-overview__section-title {
    font-size: 22px;
  }
  .page-index-promotions-overview__text-block {
    font-size: 14px;
  }
  .page-index-promotions-overview__cta-button {
    font-size: 14px;
    padding: 10px 25px;
  }
  .page-index-promotions-overview__feature-card,
  .page-index-promotions-overview__game-card-large,
  .page-index-promotions-overview__promo-card,
  .page-index-promotions-overview__blog-card {
    padding: 15px;
  }
  .page-index-promotions-overview__game-card-title {
    font-size: 20px;
  }
  .page-index-promotions-overview__promo-title {
    font-size: 18px;
  }
  .page-index-promotions-overview__blog-title {
    font-size: 16px;
  }
  .page-index-promotions-overview__faq-question h3 {
    font-size: 14px;
  }
  .page-index-promotions-overview__faq-toggle {
    font-size: 18px;
    width: 22px;
    height: 22px;
  }
}