:root {
  --viebet-primary: #11A84E;
  --viebet-secondary: #22C768;
  --viebet-btn-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --viebet-card-bg: #11271B;
  --viebet-bg: #08160F;
  --viebet-text-main: #F2FFF6;
  --viebet-text-secondary: #A7D9B8;
  --viebet-border: #2E7A4E;
  --viebet-glow: #57E38D;
  --viebet-gold: #F2C14E;
  --viebet-divider: #1E3A2A;
  --viebet-deep-green: #0A4B2C;
}

.page-promotions {
  background-color: var(--viebet-bg);
  color: var(--viebet-text-main);
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-promotions__section-spacing {
  padding: 60px 0;
}

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

.page-promotions__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0; /* body handles padding-top, this is decorative */
  background-color: var(--viebet-deep-green);
  overflow: hidden;
}

.page-promotions__hero-image-wrapper {
  width: 100%;
  max-height: 500px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
}

.page-promotions__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  min-width: 200px;
  min-height: 200px;
}

.page-promotions__hero-content {
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
}

.page-promotions__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--viebet-gold);
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.page-promotions__hero-description {
  font-size: 1.2rem;
  color: var(--viebet-text-secondary);
  margin-bottom: 30px;
}

.page-promotions__cta-button {
  display: inline-block;
  background: var(--viebet-btn-gradient);
  color: var(--viebet-text-main);
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: background 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-promotions__cta-button:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
}

.page-promotions__cta-button--center {
  display: block;
  margin: 30px auto 0 auto;
}

.page-promotions__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--viebet-gold);
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
}

.page-promotions__section-description {
  font-size: 1.1rem;
  color: var(--viebet-text-secondary);
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

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

.page-promotions__promotion-card {
  background-color: var(--viebet-card-bg);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--viebet-border);
}

.page-promotions__promotion-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.page-promotions__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  min-width: 200px;
  min-height: 200px;
}

.page-promotions__card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-promotions__card-title {
  font-size: 1.5rem;
  color: var(--viebet-text-main);
  margin-bottom: 15px;
  font-weight: 600;
}

.page-promotions__card-text {
  font-size: 1rem;
  color: var(--viebet-text-secondary);
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promotions__btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--viebet-primary);
  border: 2px solid var(--viebet-primary);
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-promotions__btn-secondary:hover {
  background: var(--viebet-primary);
  color: var(--viebet-text-main);
  transform: translateY(-2px);
}

.page-promotions__dark-section {
  background-color: var(--viebet-deep-green);
}

.page-promotions__guide-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 900px;
  counter-reset: guide-step;
}

.page-promotions__guide-item {
  background-color: var(--viebet-card-bg);
  border-radius: 10px;
  padding: 25px 30px;
  margin-bottom: 20px;
  position: relative;
  padding-left: 70px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--viebet-border);
  color: var(--viebet-text-secondary);
}

.page-promotions__guide-item::before {
  counter-increment: guide-step;
  content: "0" counter(guide-step);
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--viebet-btn-gradient);
  color: var(--viebet-text-main);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 1.2rem;
}

.page-promotions__guide-item strong {
  color: var(--viebet-text-main);
  font-size: 1.1rem;
}

.page-promotions__text-link {
  color: var(--viebet-gold);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-promotions__text-link:hover {
  color: var(--viebet-primary);
}

.page-promotions__highlight-text {
  color: var(--viebet-gold);
  font-weight: bold;
}

.page-promotions__feature-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1000px;
}

.page-promotions__feature-item {
  display: flex;
  align-items: flex-start;
  background-color: var(--viebet-card-bg);
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--viebet-border);
}

.page-promotions__feature-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  margin-right: 20px;
  object-fit: contain;
  min-width: 60px;
  min-height: 60px;
}

.page-promotions__feature-content {
  flex-grow: 1;
}

.page-promotions__feature-title {
  font-size: 1.3rem;
  color: var(--viebet-text-main);
  margin-top: 0;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-promotions__feature-text {
  font-size: 0.95rem;
  color: var(--viebet-text-secondary);
  margin-bottom: 0;
}

.page-promotions__light-text-bg {
  background-color: var(--viebet-bg);
}

.page-promotions__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-promotions__faq-item {
  background-color: var(--viebet-card-bg);
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  border: 1px solid var(--viebet-border);
}

.page-promotions__faq-item summary {
  list-style: none;
}

.page-promotions__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  background-color: var(--viebet-deep-green);
  color: var(--viebet-text-main);
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-promotions__faq-question:hover {
  background-color: #0A5B35;
}

.page-promotions__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  color: var(--viebet-gold);
}

.page-promotions__faq-item[open] .page-promotions__faq-toggle {
  content: "−";
}

.page-promotions__faq-answer {
  padding: 20px 25px;
  background-color: var(--viebet-card-bg);
  color: var(--viebet-text-secondary);
  font-size: 1rem;
  border-top: 1px solid var(--viebet-border);
}

.page-promotions__cta-final-content {
  text-align: center;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-promotions__hero-image-wrapper {
    max-height: 400px;
  }
}

@media (max-width: 768px) {
  .page-promotions {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-promotions__section-spacing {
    padding: 40px 0;
  }

  .page-promotions__container {
    padding: 0 15px;
  }

  .page-promotions__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
  }

  .page-promotions__hero-image-wrapper {
    max-height: 300px;
    margin-bottom: 20px;
  }

  .page-promotions__main-title {
    font-size: clamp(2rem, 8vw, 2.5rem);
    margin-bottom: 15px;
  }

  .page-promotions__hero-description {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .page-promotions__cta-button {
    padding: 12px 25px;
    font-size: 1rem;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-promotions__section-title {
    font-size: clamp(1.8rem, 6vw, 2.2rem);
    margin-bottom: 15px;
  }

  .page-promotions__section-description {
    font-size: 0.95rem;
    margin-bottom: 30px;
  }

  .page-promotions__promotion-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-promotions__card-image {
    height: 180px;
  }

  .page-promotions__card-title {
    font-size: 1.3rem;
  }

  .page-promotions__card-text {
    font-size: 0.9rem;
  }

  .page-promotions__btn-secondary {
    padding: 10px 20px;
    font-size: 0.95rem;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-promotions__guide-item {
    padding: 20px 25px;
    padding-left: 60px;
    font-size: 0.95rem;
  }

  .page-promotions__guide-item::before {
    width: 35px;
    height: 35px;
    font-size: 1rem;
    left: 15px;
  }

  .page-promotions__feature-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-promotions__feature-item {
    padding: 20px;
  }

  .page-promotions__feature-icon {
    width: 50px;
    height: 50px;
    margin-right: 15px;
    min-width: 50px;
    min-height: 50px;
  }

  .page-promotions__feature-title {
    font-size: 1.15rem;
  }

  .page-promotions__feature-text {
    font-size: 0.85rem;
  }

  .page-promotions__faq-question {
    padding: 18px 20px;
    font-size: 1.1rem;
  }

  .page-promotions__faq-answer {
    padding: 15px 20px;
    font-size: 0.9rem;
  }

  /* Mobile image and container responsive rules */
  .page-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-promotions__section,
  .page-promotions__card,
  .page-promotions__container,
  .page-promotions__hero-section,
  .page-promotions__promotion-card,
  .page-promotions__guide-item,
  .page-promotions__feature-item,
  .page-promotions__faq-item,
  .page-promotions__cta-final-content {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-promotions__hero-section .page-promotions__hero-content {
    padding-left: 0;
    padding-right: 0;
  }

  .page-promotions__promotion-grid,
  .page-promotions__feature-list {
    padding-left: 0;
    padding-right: 0;
  }

  .page-promotions__cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .page-promotions__main-title {
    font-size: clamp(1.8rem, 10vw, 2.2rem);
  }
  .page-promotions__section-title {
    font-size: clamp(1.6rem, 8vw, 2rem);
  }
  .page-promotions__cta-button, .page-promotions__btn-secondary {
    font-size: 0.9rem;
    padding: 10px 20px;
  }
  .page-promotions__feature-item {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .page-promotions__feature-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }
}