/* =============================================
   BAZOOKA MEGA GIVE AWAY — campaign.css
   Styled to match original site visual language
   ============================================= */

/* ---- FONT OVERRIDE: use original Hamburger Font ---- */
@font-face {
  font-family: "HamburgerFont";
  src: url('../fonts/7ee0934ea4a1e02cd4fe05c8654a6917-BeQYkAwk.woff') format("woff"),
       url('../fonts/7ee0934ea4a1e02cd4fe05c8654a6917-BNNnqanA.woff2') format("woff2");
  font-weight: 400;
  font-style: normal;
}

:root {
  /* ===== EXACT ORIGINAL BAZOOKA BRAND COLORS ===== */
  --blue:     #3694d3;   /* --color-blue from app-C81Kc8dX.css  */
  --blue-mid: #147abe;   /* --color-dark-blue                    */
  --blue-bg:  #1267d4;
  --red:      #e51f3a;   /* --color-red from app-C81Kc8dX.css   */
  --red-dk:   #c01530;
  --yellow:   #f5d623;
  --white:    #ffffff;
  --radius:   12px;
  --shadow:   0 6px 24px rgba(0,0,0,0.18);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', 'Tajawal', sans-serif;
  background: #e8f4ff;
  color: #1a1a2e;
  overflow-x: hidden;
}
html[dir="rtl"] body { font-family: 'Tajawal', 'Inter', sans-serif; }

/* ---- LANG BAR ---- */
.lang-bar {
  position: fixed;
  top: 14px;
  right: 20px;
  z-index: 200;
}
html[dir="rtl"] .lang-bar { right: auto; left: 20px; }
.lang-btn {
  background: rgba(255,255,255,0.18);
  border: 1.5px solid rgba(255,255,255,0.45);
  border-radius: 20px;
  color: #fff;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.5px;
  backdrop-filter: blur(8px);
  transition: background 0.2s;
}
.lang-btn:hover { background: rgba(255,255,255,0.28); }
.active-l { color: var(--yellow); }

/* ---- HEADER ---- */
.site-header {
  background-color: var(--blue);
  background-image: url('../img/header-CtygLW_p.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
  position: relative;
  overflow: hidden;
  min-height: 520px;
  padding-bottom: 48px;
}

/* Floating candies */
.candy-float {
  position: absolute;
  pointer-events: none;
  z-index: 2;
  animation: floatC 5s ease-in-out infinite;
}
.candy-float img { height: 56px; filter: drop-shadow(0 4px 8px rgba(0,0,0,0.35)); }
.c1 { top: 12%; left: 3%;  animation-delay: 0s;   }
.c2 { top: 8%;  right: 3%; animation-delay: 0.8s; }
.c3 { top: 40%; left: 2%;  animation-delay: 1.4s; }
.c4 { bottom: 28%; right: 2%; animation-delay: 0.4s; }
.c5 { bottom: 18%; left: 4%;  animation-delay: 2s;   }
.c6 { top: 55%; right: 4%; animation-delay: 1s;   }
.c7 { bottom: 40%; left: 6%; animation-delay: 1.6s; }
.c8 { top: 22%; right: 6%; animation-delay: 2.2s; }
@keyframes floatC {
  0%,100% { transform: translateY(0) rotate(0deg);   }
  50%      { transform: translateY(-14px) rotate(6deg); }
}

/* Desktop header layout */
.header-desktop {
  position: relative;
  z-index: 5;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 40px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: flex-end;
  gap: 0;
}
.hd-left { position: relative; }
.enter-to-win-img {
  width: 190px;
  position: relative;
  z-index: 10;
  margin-bottom: -40px;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.4));
}
.moose-img {
  width: 420px;
  max-width: 90%;
  position: relative;
  z-index: 8;
  margin-bottom: -4px;
  filter: drop-shadow(0 16px 40px rgba(0,0,0,0.45));
}
.partner-logo {
  position: absolute;
  bottom: 24px;
  left: 200px;
  color: rgba(255,255,255,0.85);
  font-size: 12px;
  font-weight: 600;
}
.hd-right {
  position: relative;
  left: -80px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 30px;
  z-index: 6;
}
.free-entry-btn-img {
  width: 200px;
  margin-bottom: 8px;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
}
.sweet-seats-img {
  width: 580px;
  max-width: 100%;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4));
}
.bazooka-logo-img {
  width: 320px;
  margin-top: -10px;
  margin-left: 80px;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.4));
}

/* Mobile header */
.header-mobile { display: none; }

@media (max-width: 900px) {
  .header-desktop { display: none; }
  .header-mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 20px 0;
    position: relative;
    z-index: 5;
  }
  .mob-free-entry { width: 180px; margin-bottom: 10px; }
  .mob-sweet-seats { width: 90%; max-width: 400px; }
  .mob-logo { width: 65%; max-width: 300px; margin-top: -10px; }
  .mob-moose {
    width: 80%;
    max-width: 320px;
    position: relative;
    margin-bottom: -60px;
  }
  .mob-enter-link { position: absolute; right: 16px; bottom: -30px; }
  .mob-enter-img { width: 120px; }
  .mob-partner { font-size: 11px; color: rgba(255,255,255,0.7); text-align: center; margin-top: 8px; }
}

/* ---- PROMO BAND (white section) ---- */
.promo-band {
  background: #fff;
  padding: 60px 24px 40px;
}
.promo-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.promo-title {
  font-size: clamp(22px, 3.5vw, 34px);
  font-weight: 900;
  color: var(--blue-mid);
  margin-bottom: 16px;
}
.promo-inner > p {
  font-size: 15px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 16px;
}
.prize-list {
  list-style: none;
  text-align: left;
  display: inline-block;
  margin-bottom: 28px;
  font-size: 15px;
  color: #333;
  line-height: 2;
}
html[dir="rtl"] .prize-list { text-align: right; }
.prize-list li { display: flex; align-items: center; gap: 8px; }

.promo-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.btn-red {
  background: var(--red);
  color: #fff;
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  font-family: inherit;
}
.btn-red:hover { background: var(--red-dk); }

/* Prize pics row */
.prize-pics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
}
.prize-pics img {
  width: 100%;
  border-radius: 12px;
  aspect-ratio: 1;
  object-fit: cover;
  box-shadow: var(--shadow);
}
@media (max-width: 600px) {
  .prize-pics { grid-template-columns: 1fr; }
}

/* ---- BAGS + WIN VIP SPLASH ---- */
.bags-section {
  background-color: var(--blue);
  background-image: url('../img/header-CtygLW_p.svg');
  background-size: cover;
  background-position: center bottom;
  padding: 60px 24px;
  position: relative;
  overflow: hidden;
}
.bags-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}
.bags-main-img {
  width: 100%;
  max-width: 820px;
  filter: drop-shadow(0 16px 40px rgba(0,0,0,0.35));
  margin-bottom: -10px;
}
.win-vip-txt {
  color: #fff;
  margin-top: 16px;
}
.win-word {
  font-size: clamp(80px, 14vw, 160px);
  font-weight: 900;
  line-height: 0.85;
  color: var(--yellow);
  text-shadow: 5px 5px 0 rgba(0,0,0,0.45), 0 0 60px rgba(245,214,35,0.4);
  letter-spacing: -3px;
  font-family: 'HamburgerFont', 'Inter', sans-serif;
}
.win-sub {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 12px;
}
.win-a { font-size: 40px; font-weight: 400; color: rgba(255,255,255,0.8); }
.win-vip {
  font-size: clamp(40px, 7vw, 80px);
  font-weight: 900;
  color: #fff;
  text-shadow: 3px 3px 0 rgba(0,0,0,0.4);
  font-family: 'HamburgerFont', 'Inter', sans-serif;
}
.win-desc {
  font-size: clamp(16px, 3vw, 28px);
  font-weight: 800;
  color: var(--yellow);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 6px;
}
.country-label {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
  font-size: clamp(18px, 3vw, 28px);
  font-weight: 800;
  color: #fff;
}
.country-label .vs {
  font-size: 24px;
  color: rgba(255,255,255,0.5);
}

/* ---- FORM SECTION ---- */
.form-section {
  background-color: var(--blue);
  background-image: url('../img/header-CtygLW_p.svg');
  background-size: cover;
  background-position: center;
  padding: 80px 24px;
  position: relative;
}
.form-inner {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.form-section-title {
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 900;
  color: #fff;
  text-align: center;
  margin-bottom: 8px;
  font-family: 'HamburgerFont', 'Inter', sans-serif;
  text-shadow: 2px 2px 0 rgba(0,0,0,0.4);
}
.form-section-sub {
  text-align: center;
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 32px;
}

/* Steps bar */
.steps-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 28px;
  flex-wrap: nowrap;
  overflow-x: auto;
}
.sbar-dot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  opacity: 0.4;
  transition: all 0.3s;
}
.sbar-dot.active, .sbar-dot.done { opacity: 1; }
.sbar-num {
  width: 30px; height: 30px;
  background: rgba(255,255,255,0.2);
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
.sbar-dot.active .sbar-num {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--blue);
  box-shadow: 0 0 0 4px rgba(245,214,35,0.3);
}
.sbar-dot.done .sbar-num { background: #22c55e; border-color: #22c55e; color: #fff; }
.sbar-lbl { font-size: 11px; color: rgba(255,255,255,0.7); font-weight: 600; }
.sbar-dot.active .sbar-lbl { color: var(--yellow); }
.sbar-line { width: 32px; height: 2px; background: rgba(255,255,255,0.2); flex-shrink: 0; }
.sbar-line.done { background: #22c55e; }

/* Form card */
.fstep {
  background: #fff;
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  display: none;
  animation: stepIn 0.35s ease;
}
.fstep.active { display: block; }
@keyframes stepIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Q labels */
.step-q {
  font-size: 17px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 16px;
  display: flex;
  gap: 8px;
}
.q-label {
  color: var(--red);
  font-weight: 900;
  font-size: 18px;
  flex-shrink: 0;
}
.step-hint {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
}

/* Country buttons */
.country-row { display: flex; gap: 14px; margin-bottom: 24px; }
.country-opt {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 18px 10px;
  border: 2.5px solid #dde3f0;
  border-radius: 12px;
  background: #f5f8ff;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  color: var(--blue);
  transition: all 0.2s;
  font-family: inherit;
}
.country-opt:hover { border-color: var(--blue-mid); background: #eaf0ff; }
.country-opt.selected {
  border-color: var(--blue-mid);
  background: #eaf0ff;
  box-shadow: 0 0 0 3px rgba(13,79,196,0.2);
  color: var(--blue);
}
.cflag { font-size: 36px; }

/* Text inputs */
.txt-input {
  width: 100%;
  border: 2px solid #dde3f0;
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 16px;
  font-family: inherit;
  outline: none;
  color: var(--blue);
  transition: border-color 0.2s;
}
.txt-input:focus { border-color: var(--blue-mid); }
.txt-input.valid  { border-color: #22c55e; }
.txt-input.invalid { border-color: var(--red); }

.phone-row { display: flex; gap: 10px; margin-bottom: 8px; }
.code-box {
  background: var(--blue);
  color: #fff;
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
  display: flex; align-items: center;
}

/* OTP */
.otp-row { display: flex; gap: 8px; justify-content: center; margin-bottom: 16px; }
.otp-box {
  width: 50px; height: 58px;
  border: 2px solid #dde3f0;
  border-radius: 10px;
  text-align: center;
  font-size: 22px;
  font-weight: 800;
  color: var(--blue);
  outline: none;
  font-family: inherit;
  transition: all 0.2s;
}
.otp-box:focus { border-color: var(--blue-mid); box-shadow: 0 0 0 3px rgba(13,79,196,0.15); }
.otp-box.filled { border-color: var(--blue-mid); background: #eaf0ff; }
.otp-sent-to { font-size: 13px; color: #666; margin-bottom: 16px; }
.otp-timer-row { text-align: center; font-size: 14px; color: #888; margin-bottom: 8px; }
.otp-timer-row strong { color: var(--blue); }
.resend-link {
  border: none; background: none; color: var(--blue-mid);
  font-size: 14px; font-weight: 700; cursor: pointer; text-decoration: underline;
  font-family: inherit; margin-left: 8px;
}
.resend-link:disabled { color: #bbb; text-decoration: none; cursor: not-allowed; }

.demo-note {
  background: #fffbeb; border: 1px solid #fde68a; border-radius: 8px;
  color: #92400e; font-size: 13px; font-weight: 600;
  padding: 10px 14px; text-align: center; margin-bottom: 14px;
}
.ferr { font-size: 13px; color: var(--red); font-weight: 600; min-height: 18px; margin-bottom: 6px; }

/* Profile fields */
.fields-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 16px; }

/* Checkbox */
.check-row {
  display: flex; gap: 10px; align-items: flex-start;
  cursor: pointer; font-size: 13px; color: #555;
  margin-bottom: 20px; line-height: 1.5;
}
.check-row input { margin-top: 2px; accent-color: var(--blue-mid); width: 16px; height: 16px; flex-shrink: 0; }

/* Buttons */
.btn-continue {
  display: block; width: 100%;
  background: var(--red);
  color: #fff; border: none;
  border-radius: 10px; padding: 15px;
  font-size: 17px; font-weight: 800;
  cursor: pointer; font-family: inherit;
  transition: all 0.2s; margin-bottom: 10px;
  box-shadow: 0 6px 20px rgba(224,32,32,0.35);
}
.btn-continue:disabled { background: #d1d5db; box-shadow: none; color: #9ca3af; cursor: not-allowed; }
.btn-continue:not(:disabled):hover { background: var(--red-dk); transform: translateY(-2px); }

.btn-submit {
  display: block; width: 100%;
  background: var(--red);
  color: #fff; border: none; border-radius: 10px;
  padding: 16px; font-size: 17px; font-weight: 800;
  cursor: pointer; font-family: inherit;
  transition: all 0.2s; margin-bottom: 10px;
  box-shadow: 0 6px 20px rgba(224,32,32,0.35);
  letter-spacing: 0.5px;
}
.btn-submit:disabled { background: #d1d5db; box-shadow: none; color: #9ca3af; cursor: not-allowed; }
.btn-submit:not(:disabled):hover { background: var(--red-dk); transform: translateY(-2px); }

.btn-back {
  display: block; width: 100%; background: none;
  border: 2px solid #dde3f0; border-radius: 10px;
  padding: 13px; font-size: 15px; font-weight: 600;
  color: #888; cursor: pointer; font-family: inherit;
  transition: all 0.2s;
}
.btn-back:hover { border-color: #9ca3af; color: #333; }

/* Success */
.entry-confirmed {
  background: linear-gradient(135deg, #ecfdf5, #d1fae5);
  border: 2px solid #6ee7b7;
  border-radius: 14px;
  padding: 24px;
  text-align: center;
  margin-bottom: 20px;
}
.confirmed-icon { font-size: 56px; margin-bottom: 10px; animation: popIn 0.5s cubic-bezier(0.34,1.56,0.64,1); }
@keyframes popIn { from { transform: scale(0); } to { transform: scale(1); } }
.entry-confirmed h3 { font-size: 26px; font-weight: 900; color: #064e3b; margin-bottom: 6px; }
.entry-confirmed p  { font-size: 14px; color: #065f46; margin-bottom: 16px; line-height: 1.6; }
.ticket-badge {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  background: var(--blue); border-radius: 10px; padding: 14px 20px;
  color: #fff; font-weight: 700; font-size: 15px;
  outline: 3px solid var(--yellow);
}
.boosted-ticket { outline-color: var(--yellow); background: var(--red); }

/* Boost box */
.boost-box {
  background: #fffbeb; border: 2px solid var(--yellow);
  border-radius: 14px; padding: 24px; margin-bottom: 20px;
}
.boost-header { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.fire-icon { font-size: 26px; }
.boost-header h4 { font-size: 18px; font-weight: 800; color: var(--blue); }
.boost-desc { font-size: 14px; color: #555; line-height: 1.7; margin-bottom: 16px; }

.upload-zone {
  border: 2.5px dashed var(--yellow);
  border-radius: 12px; padding: 24px 16px;
  text-align: center; background: #fff;
  cursor: pointer; transition: all 0.2s;
}
.upload-zone:hover { background: #fefce8; border-color: #c9a227; }
.upload-ico { font-size: 36px; margin-bottom: 6px; }
.upload-zone p { font-size: 15px; font-weight: 600; color: var(--blue); margin-bottom: 4px; }
.upload-note { font-size: 12px; color: #999 !important; font-weight: 400 !important; }

.file-ok {
  display: flex; align-items: center; gap: 8px;
  background: #ecfdf5; border-radius: 8px; padding: 10px 14px;
  font-weight: 600; font-size: 14px; color: #065f46; margin-bottom: 12px;
}
.boost-done { text-align: center; }
.boost-done h4 { font-size: 20px; font-weight: 900; color: var(--blue); margin-bottom: 14px; }

/* Share */
.share-row { text-align: center; padding-top: 14px; border-top: 2px solid #f0f4f8; }
.share-row p { font-size: 14px; color: #666; margin-bottom: 12px; }
.share-btns { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.btn-share {
  padding: 10px 20px; border-radius: 8px; font-size: 14px;
  font-weight: 700; cursor: pointer; border: none; font-family: inherit; transition: all 0.2s;
}
.btn-share:hover { transform: translateY(-2px); }
.btn-share.wa { background: #25d366; color: #fff; }
.btn-share.tw { background: #1da1f2; color: #fff; }
.btn-share.cp { background: #f3f4f6; color: var(--blue); border: 2px solid #e0e7ef; }

/* ---- BOOST BAND ---- */
.boost-band {
  background-color: var(--blue);
  background-image: url('../img/header-CtygLW_p.svg');
  background-size: cover;
  background-position: center;
  padding: 80px 24px;
  position: relative;
  z-index: 10;
}
.boost-float-img {
  position: absolute;
  z-index: 5;
  pointer-events: none;
}
.boost-bg-left {
  bottom: 0;
  left: 0;
  width: clamp(80px, 15vw, 120px);
  transform: translateY(40%) rotate(-10deg);
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.25));
}
.boost-bg-right {
  bottom: 0;
  right: -20px;
  width: clamp(130px, 20vw, 220px);
  transform: translateY(40%) rotate(-8deg);
  filter: drop-shadow(0 12px 25px rgba(0,0,0,0.35));
}
.boost-band-inner {
  max-width: 900px; margin: 0 auto;
  display: flex; gap: 32px; align-items: center; flex-wrap: wrap;
  position: relative;
  z-index: 3;
}
.boost-band-icon { font-size: 60px; flex-shrink: 0; text-shadow: 0 4px 12px rgba(0,0,0,0.3); }
.boost-band-text { flex: 1; min-width: 260px; }
.boost-band-text h3 {
  font-size: clamp(22px, 4vw, 36px); font-weight: 900;
  color: var(--yellow); margin-bottom: 24px;
  text-shadow: 2px 2px 0 rgba(0,0,0,0.4);
}
.boost-two-cols { display: flex; gap: 20px; flex-wrap: wrap; }
.bcol {
  flex: 1; min-width: 180px;
  display: flex; gap: 14px; align-items: flex-start;
  background: #fff; border-radius: 14px;
  padding: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  transition: transform 0.3s;
}
.bcol:hover { transform: translateY(-4px); }
.flag-big { font-size: 36px; flex-shrink: 0; filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1)); }
.bcol strong { color: var(--blue); font-size: 17px; font-weight: 800; display: block; margin-bottom: 6px; }
.bcol p { color: #555; font-size: 14px; line-height: 1.6; }
.btn-boost-cta {
  background: var(--red); color: #fff;
  padding: 16px 36px; border-radius: 12px;
  font-size: 18px; font-weight: 900; text-align: center;
  text-decoration: none; white-space: nowrap;
  box-shadow: 0 8px 24px rgba(229,31,58,0.4);
  transition: all 0.3s; flex-shrink: 0;
  letter-spacing: 0.5px;
}
.btn-boost-cta:hover { background: var(--red-dk); transform: translateY(-3px); box-shadow: 0 12px 30px rgba(229,31,58,0.5); }

/* ---- PRIZES SECTION ---- */
.prizes-section {
  background: #fff;
  padding: 72px 24px;
}
.prizes-inner { max-width: 1000px; margin: 0 auto; }
.section-heading {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 900; color: var(--blue);
  text-align: center; margin-bottom: 6px;
}
.section-heading.light { color: #fff; }
.section-sub {
  text-align: center; font-size: 16px;
  color: #666; font-weight: 500; margin-bottom: 40px;
}

.p-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}
.p-card {
  border: 2px solid #e8eff8;
  border-radius: 14px; padding: 28px 20px;
  text-align: center; position: relative;
  overflow: hidden; transition: all 0.3s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.07);
  background: #fafcff;
}
.p-card:hover { transform: translateY(-6px); box-shadow: 0 12px 36px rgba(0,0,0,0.15); }
.p-card.featured-p { border-color: var(--blue-mid); }
.p-card.grand-p { border-color: var(--yellow); background: linear-gradient(160deg, #fffef5, #fff8d0); }

.draw-tag {
  display: inline-block; background: var(--blue);
  color: #fff; font-size: 11px; font-weight: 800;
  padding: 4px 12px; border-radius: 20px;
  letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 14px;
}
.hot-tag  { background: var(--red); }
.grand-tag { background: linear-gradient(135deg, #b8860b, #f5d623); color: var(--blue); }

.p-icon { font-size: 52px; margin-bottom: 14px; }
.p-card h3 { font-size: 19px; font-weight: 800; color: var(--blue); margin-bottom: 5px; }
.p-card p  { font-size: 13px; color: #777; margin-bottom: 14px; }
.p-vals { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }
.p-vals span {
  padding: 4px 11px; border-radius: 20px;
  font-size: 12px; font-weight: 700;
}
.p-vals span:first-child { background: #fff3cd; color: #856404; }
.p-vals span:last-child  { background: #d1ecf1; color: #0c5460; }

/* ---- FAQ SECTION ---- */
.faq-section {
  background: #fff;
  padding: 100px 24px 72px;
}
.faq-inner { max-width: 700px; margin: 0 auto; }
.faq-inner .section-heading { color: var(--blue-mid); margin-bottom: 32px; }
.faq-list { display: flex; flex-direction: column; gap: 1px; }

.faq-item {
  background: #f8faff;
  border-bottom: 1px solid #e0e7f0;
}
.faq-item:first-child { border-radius: 10px 10px 0 0; }
.faq-item:last-child  { border-radius: 0 0 10px 10px; border-bottom: none; }

.faq-item summary {
  padding: 18px 20px;
  font-size: 15px; font-weight: 700;
  color: var(--blue-mid); cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  list-style: none; gap: 12px;
  transition: background 0.2s;
}
.faq-item summary:hover { background: #eef4ff; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-size: 22px; font-weight: 900;
  color: var(--red); flex-shrink: 0; transition: transform 0.2s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-item p {
  padding: 4px 20px 18px;
  font-size: 14px; color: #555;
  line-height: 1.7;
}

.faq-links {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 36px;
}

/* ---- FOOTER ---- */
.site-footer {
  background-image: url('../img/footer-waves-FSmpFGWA.png');
  background-color: #fff;
  background-size: cover;
  background-position: center bottom;
  padding: 10vw 24px 0;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
}
.footer-content {
  width: 100%;
  max-width: 1100px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; justify-content: center; position: relative;
}
.footer-moose { height: 320px; width: auto; position: relative; z-index: 1; margin-bottom: -50px; }
.footer-logo  { height: 120px; width: auto; position: relative; z-index: 2; margin-bottom: 30px; filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3)); }

.legal-footer {
  background: var(--red-dk);
  padding: 18px 24px; text-align: center;
}
.legal-inner { max-width: 600px; margin: 0 auto; }
.legal-footer p { color: rgba(255,255,255,0.85); font-size: 13px; margin-bottom: 5px; }
.legal-footer a { color: rgba(255,255,255,0.8); text-decoration: underline; font-size: 13px; }
.legal-footer a:hover { color: #fff; }

/* ---- RTL OVERRIDES ---- */
html[dir="rtl"] .partner-logo { left: auto; right: 200px; }
html[dir="rtl"] .hd-right { left: auto; right: -80px; }
html[dir="rtl"] .bazooka-logo-img { margin-left: 0; margin-right: 80px; }
html[dir="rtl"] .mob-enter-link { right: auto; left: 16px; }
html[dir="rtl"] .resend-link { margin-left: 0; margin-right: 8px; }
html[dir="rtl"] .boost-bg-left { left: auto; right: 0; transform: translateY(40%) rotate(10deg); }
html[dir="rtl"] .boost-bg-right { right: auto; left: -20px; transform: translateY(40%) rotate(8deg); }

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .promo-btns { flex-direction: column; align-items: center; }
  .boost-band-inner { flex-direction: column; align-items: flex-start; }
  .boost-two-cols  { flex-direction: column; }
  .p-grid { grid-template-columns: 1fr 1fr; }
  .footer-content { gap: 0; }
  .footer-moose { height: 200px; margin-bottom: -30px; }
  .footer-logo { height: 90px; }
  .otp-box { width: 42px; height: 50px; font-size: 20px; }
  .country-row { flex-direction: row; }
}
@media (max-width: 480px) {
  .p-grid { grid-template-columns: 1fr; }
  .win-word { font-size: 80px; }
}

/* ---- TERMS & CONDITIONS PAGE ---- */
.tc-page {
  background-color: #fff;
  color: #333;
}
.tc-header {
  background-color: var(--blue);
  background-image: url('../img/header-CtygLW_p.svg');
  background-size: cover;
  background-position: center;
  padding: 30px 24px;
  text-align: left;
}
html[dir="rtl"] .tc-header { text-align: right; }
.tc-logo {
  height: 60px;
  width: auto;
}
.tc-main {
  padding: 50px 24px;
}
.tc-container {
  max-width: 800px;
  margin: 0 auto;
}
.tc-title {
  color: var(--blue-mid);
  font-size: clamp(28px, 5vw, 36px);
  font-weight: 900;
  margin-bottom: 40px;
}
.tc-content h3 {
  font-size: 20px;
  font-weight: 800;
  color: #444;
  margin-top: 32px;
  margin-bottom: 16px;
}
.tc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.tc-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}
html[dir="rtl"] .tc-list li {
  padding-left: 0;
  padding-right: 20px;
}
.tc-list li::before {
  content: '•';
  color: var(--red);
  font-size: 24px;
  position: absolute;
  left: 0;
  top: -4px;
}
html[dir="rtl"] .tc-list li::before {
  left: auto;
  right: 0;
}
.tc-back-row {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid #eaeaea;
  text-align: center;
}
.btn-back-tc {
  display: inline-block;
  background: #f0f4f8;
  color: var(--blue-mid);
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-back-tc:hover {
  background: #e1e7ee;
}
.tc-red-footer {
  background-color: var(--red-dk);
  padding: 24px;
  color: rgba(255,255,255,0.9);
  font-size: 13px;
  text-align: center;
}
.tc-rf-inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.circle-icon {
  background: var(--blue);
  color: #fff;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 20px;
}
.foot-txt-row a {
  color: #fff;
  text-decoration: underline;
}
@media (max-width: 600px) {
  .tc-rf-inner { flex-direction: column; gap: 12px; }
}

.receipts-list { list-style:none; padding:0; margin:0; }
.receipts-list li { display:flex; justify-content:space-between; align-items:center; background:#f0f4f8; border:1px solid #d1d5db; padding:12px 14px; border-radius:8px; margin-bottom:8px; font-size:15px; color:#1a1a2e; }
.receipt-status { font-weight:600; padding:2px 8px; border-radius:12px; font-size:12px; }
.status-pending { background:#fef3c7; color:#d97706; }
.status-verified { background:#d1fae5; color:#059669; }
.status-rejected { background:#fee2e2; color:#dc2626; }
