* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}

body {
  background: #272727;
  color: #fff;
}

.promo-header {
  background: #151253; /* keep current color; alternatives suggested below */
  color: #fff;
  position: sticky; /* lock header while scrolling */
  top: 0;
  z-index: 9999;
  transition: background-color 200ms ease, box-shadow 200ms ease;
}
.promo-header.scrolled { box-shadow: 0 6px 20px rgba(0,0,0,0.45); }
.promo-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 20px;
}
.promo-left .promo-title {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.05;
  color: #ffffff; /* yellow as requested */
}
.promo-left .promo-title strong { font-weight: 900; }

.promo-center { flex: 0 0 auto; }
.countdown { display: flex; gap: 10px; align-items: center; }
.count-box {
  background: #ffcc00;
  color: #000000;
  min-width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-weight: 800;
  font-size: 25px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.12);
}

.promo-right { flex: 0 0 auto; }
.promo-btn {
  display: inline-block;
  background: #169f16; /* white background */
  color: #ffffff; /* black text */
  padding: 12px 28px;
  font-weight: 900; /* big bold */
  border-radius: 28px;
  text-decoration: none;
  font-size: 18px;
  letter-spacing: 0.6px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
  border-color: #000;
}
  /* global styles only (section-specific styles moved to per-section files) */
  /* grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 30px;
} */

.icon-grid div {
  background: #000;
  padding: 20px;
  border: 1px solid #ffcc00;
}

.icon-grid i {
  color: #ffcc00;
  margin-right: 10px;
}

.carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 20px;
}

.carousel img {
  width: 220px;
  border-radius: 10px;
}

.bonus {
  background: #000;
  border: 1px solid #ffcc00;
  padding: 20px;
  margin: 20px auto;
  max-width: 700px;
}

.faq {
  max-width: 700px;
  margin: auto;
}

.faq-q {
  width: 100%;
  background: #ffcc00;
  color: #000;
  padding: 15px;
  border: none;
  text-align: left;
  font-weight: 700;
  margin-top: 10px;
  cursor: pointer;
}

.faq-a {
  display: none;
  padding: 15px;
  background: #111;
}

footer {
  background: #000;
  padding: 20px;
  text-align: center;
}

footer a {
  color: #ffcc00;
  margin: 0 10px;
  text-decoration: none;
}
footer a:hover {
  text-decoration: underline;
}