.page-promo {
  color: #ffffff; /* Text color for the main page content, assuming dark background */
  padding-top: var(--header-offset, 120px); /* Space for fixed header */
  background-color: #000000; /* Main background color for the page content */
}

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

.page-promo__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 80px 20px;
  background-color: #000000;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.page-promo__hero-content {
  z-index: 1;
  max-width: 800px;
}

.page-promo__main-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FCBC45;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(252, 188, 69, 0.5);
}

.page-promo__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  line-height: 1.6;
  color: #f0f0f0;
}

.page-promo__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 40px;
}

.page-promo__register-btn {
  background-color: #FFFFFF;
  color: #000000;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

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

.page-promo__login-btn {
  background-color: #FCBC45;
  color: #000000;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(252, 188, 69, 0.4);
}

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

.page-promo__hero-image-wrapper {
  width: 100%;
  max-width: 1200px;
  margin-top: 40px;
}

.page-promo__hero-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  min-width: 200px;
  min-height: 200px;
}

.page-promo__current-promotions,
.page-promo__details-list-section,
.page-promo__why-taya777,
.page-promo__cta-section {
  padding: 60px 0;
  background-color: #000000;
  color: #ffffff;
}

.page-promo__section-title {
  font-size: 2.8em;
  text-align: center;
  margin-bottom: 20px;
  color: #FCBC45;
  text-shadow: 0 0 8px rgba(252, 188, 69, 0.3);
}

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

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

.page-promo__promo-card {
  background-color: #1a1a1a;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-promo__promo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.8);
}

.page-promo__card-image {
  width: 100%;
  height: auto;
  max-height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 25px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  min-width: 200px;
  min-height: 200px;
}

.page-promo__card-title {
  font-size: 1.8em;
  color: #FCBC45;
  margin-bottom: 15px;
}

.page-promo__card-text {
  font-size: 1em;
  line-height: 1.5;
  color: #cccccc;
  flex-grow: 1;
  margin-bottom: 25px;
}

.page-promo__card-btn {
  display: inline-block;
  background-color: #FCBC45;
  color: #000000;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

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

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

.page-promo__details-item {
  background-color: #1a1a1a;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
}

.page-promo__details-item:hover {
  transform: translateY(-5px);
}

.page-promo__details-title {
  font-size: 1.6em;
  color: #FCBC45;
  margin-bottom: 15px;
}

.page-promo__details-title a {
  color: #FCBC45;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-promo__details-title a:hover {
  color: #FFFFFF;
}

.page-promo__details-description {
  font-size: 0.95em;
  line-height: 1.6;
  color: #cccccc;
  margin-bottom: 20px;
}

.page-promo__details-btn {
  display: inline-block;
  background-color: #FFFFFF;
  color: #000000;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

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

.page-promo__why-taya777 {
  background-color: #0a0a0a;
}

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

.page-promo__feature-item {
  background-color: #1a1a1a;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

.page-promo__feature-icon {
  width: 100%; /* Ensure images are responsive within their containers */
  height: auto;
  max-width: 200px; /* Ensure icon-like images don't get too big */
  max-height: 150px;
  object-fit: contain;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

.page-promo__feature-title {
  font-size: 1.5em;
  color: #FCBC45;
  margin-bottom: 10px;
}

.page-promo__feature-text {
  font-size: 0.95em;
  line-height: 1.6;
  color: #cccccc;
}

.page-promo__cta-section {
  padding: 80px 0;
  background: linear-gradient(45deg, #000000, #333333);
  text-align: center;
}

.page-promo__cta-content {
  max-width: 800px;
}

.page-promo__cta-title {
  font-size: 3em;
  color: #FCBC45;
  margin-bottom: 20px;
  text-shadow: 0 0 12px rgba(252, 188, 69, 0.6);
}

.page-promo__cta-description {
  font-size: 1.2em;
  color: #f0f0f0;
  margin-bottom: 40px;
  line-height: 1.6;
}

.page-promo__cta-btn {
  display: inline-block;
  background-color: #FCBC45;
  color: #000000;
  padding: 18px 40px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.3em;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 6px 20px rgba(252, 188, 69, 0.5);
}

.page-promo__cta-btn:hover {
  background-color: #e0a331;
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 10px 30px rgba(252, 188, 69, 0.7);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-promo__main-title {
    font-size: 3em;
  }
  .page-promo__section-title {
    font-size: 2.5em;
  }
  .page-promo__cta-title {
    font-size: 2.5em;
  }
}

@media (max-width: 768px) {
  .page-promo__hero-section {
    padding: 60px 20px;
  }
  .page-promo__main-title {
    font-size: 2.5em;
  }
  .page-promo__hero-description {
    font-size: 1em;
  }
  .page-promo__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-promo__register-btn, .page-promo__login-btn {
    width: 80%;
    max-width: 300px;
  }
  .page-promo__current-promotions, .page-promo__details-list-section, .page-promo__why-taya777, .page-promo__cta-section {
    padding: 40px 0;
  }
  .page-promo__section-title {
    font-size: 2em;
  }
  .page-promo__section-description {
    font-size: 0.95em;
  }
  .page-promo__promo-card, .page-promo__details-item, .page-promo__feature-item {
    padding: 25px;
  }
  .page-promo__card-title {
    font-size: 1.5em;
  }
  .page-promo__details-title {
    font-size: 1.4em;
  }
  .page-promo__feature-title {
    font-size: 1.3em;
  }
  .page-promo__cta-title {
    font-size: 2em;
  }
  .page-promo__cta-btn {
    padding: 15px 30px;
    font-size: 1.1em;
  }
  .page-promo__promo-grid, .page-promo__details-grid, .page-promo__feature-list {
    grid-template-columns: 1fr;
  }
  .page-promo__container {
    padding: 0 15px;
  }
  /* CRITICAL: Mobile content area images must be constrained */
  .page-promo img {
    max-width: 100%;
    height: auto;
  }
  .page-promo__feature-icon {
    max-width: 100%; /* Ensure feature icons also scale down */
    height: auto;
    min-width: 200px;
    min-height: 200px;
  }
}

@media (max-width: 480px) {
  .page-promo__main-title {
    font-size: 2em;
  }
  .page-promo__section-title {
    font-size: 1.8em;
  }
  .page-promo__cta-title {
    font-size: 1.8em;
  }
}