/* =============================
   ZEDBET — EXACT IMAGE MATCH
   ============================= */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: #111111;
  color: #ffffff;
  font-family: 'Segoe UI', Arial, sans-serif;
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: #111; }
::-webkit-scrollbar-thumb { background: #f5820d; border-radius: 3px; }

/* ===== NAVBAR ===== */
.zb-nav {
  background: #1E1D21;
  height: 80px;
  position: sticky;
  top: 0;
  z-index: 100;
  /* border-bottom: 1px solid #2D2B35; */
  display: flex;
  align-items: center;
}

.zb-nav .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.zb-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.logo-img {
  width: 201px;
  height: 50px;
  object-fit: contain;
}

.btn-login {
  background: linear-gradient(90deg, #C67E07 0%, #E10A07 100%);
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-family: 'Poppins';
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
  width: 171px;
  height: 47px;
}
.btn-login:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

/* ===== HERO SECTION ===== */
.hero-wrap {
  background: #111111;
  padding: 18px 0 10px;
}

.hero-inner {
  border-radius: 20px;
  overflow: hidden;
}

/* ===== BANNER BASE ===== */
.banner {
  height: 330px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.ban-body {
  position: relative;
  z-index: 2;
  display: flex;
  width: 100%;
  align-items: center;
  padding: 0 36px;
  gap: 20px;
}

.ban-left { flex: 1; }
.ban-right { flex: 0 0 200px; display: flex; align-items: center; justify-content: center; }

/* Slide 1 — Aviatrix */
.banner-aviatrix {
  background: url(images/image.png) center/cover no-repeat;
}

.ban-glow {
  position: absolute;
  top: -40px; right: -40px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,80,160,0.35), transparent 70%);
  z-index: 1;
}
.ban-glow-purple {
  background: radial-gradient(circle, rgba(120,60,220,0.4), transparent 70%);
  top: -60px; right: 60px;
}

/* Slide 2 — Bonus */
.banner-bonus {
  background: linear-gradient(120deg, #0a0030 0%, #1e0080 30%, #4400bb 60%, #6600cc 85%, #8800aa 100%);
}

/* Slide 3 — Jackpot */
.banner-jackpot {
  background: linear-gradient(120deg, #0d1a00 0%, #1a3000 35%, #2d4a00 65%, #1a2a00 100%);
}

/* Slide 4 — Sports */
.banner-sports {
  background: linear-gradient(120deg, #001a30 0%, #002a50 35%, #004080 65%, #002a50 100%);
}

/* Banner Text */
.ban-sub-text {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.ban-main {
  font-size: 1.3rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.ban-gold-big {
  font-size: 2.4rem;
  font-weight: 900;
  color: #ffd700;
  text-shadow: 0 0 30px rgba(255,215,0,0.6), 2px 2px 0 rgba(180,100,0,0.5);
  line-height: 1.1;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.ban-gold-huge {
  font-size: 4rem;
  font-weight: 900;
  color: #ffd700;
  text-shadow: 0 0 40px rgba(255,215,0,0.7), 3px 3px 0 rgba(150,80,0,0.6);
  line-height: 1;
  margin-bottom: 4px;
}

.ban-brand-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.ban-brand {
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
  font-style: italic;
  letter-spacing: -0.5px;
}
.ban-arrived {
  font-size: 0.85rem;
  font-weight: 800;
  color: rgba(255,255,255,0.85);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  align-self: flex-end;
  margin-bottom: 3px;
}

.ban-instant-label {
  font-size: 1.1rem;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: rgba(255,255,255,0.12);
  display: inline-block;
  padding: 2px 12px;
  border-radius: 4px;
  margin-bottom: 4px;
}
.ban-deposit-bar {
  font-size: 0.85rem;
  font-weight: 800;
  color: #ffd700;
  text-transform: uppercase;
  letter-spacing: 3px;
  background: rgba(0,0,0,0.3);
  display: inline-block;
  padding: 2px 16px;
  border-radius: 4px;
  border: 1px solid rgba(255,215,0,0.4);
}

.btn-playnow {
  background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
  color: #ffd700;
  border: 2px solid #ffd700;
  padding: 8px 26px;
  border-radius: 6px;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.25s;
  display: inline-block;
  margin-top: 10px;
  text-transform: uppercase;
}
.btn-playnow:hover {
  background: #ffd700;
  color: #111;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,215,0,0.4);
}

.ban-tc {
  display: block;
  font-size: 0.65rem;
  color: rgba(255,255,255,0.5);
  margin-top: 6px;
}

/* Plane graphic */
.plane-wrap { position: relative; }
.plane-icon {
  font-size: 5rem;
  color: rgba(255,255,255,0.85);
  filter: drop-shadow(0 0 20px rgba(255,200,100,0.5));
  transform: rotate(-20deg);
  animation: floatPlane 3s ease-in-out infinite;
  display: block;
}
@keyframes floatPlane {
  0%, 100% { transform: rotate(-20deg) translateY(0); }
  50% { transform: rotate(-15deg) translateY(-12px); }
}
.plane-glow {
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,200,100,0.2), transparent 70%);
}

/* Gift graphic */
.gift-wrap { position: relative; }
.gift-icon {
  font-size: 5rem;
  color: #ffd700;
  filter: drop-shadow(0 0 25px rgba(255,215,0,0.6));
  animation: floatGift 2.5s ease-in-out infinite;
  display: block;
}
@keyframes floatGift {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-10px) scale(1.05); }
}
.gift-glow {
  position: absolute;
  inset: -30px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,215,0,0.15), transparent 70%);
}

/* Carousel dots */
.zb-dots {
  position: relative !important;
  bottom: auto !important;
  display: flex !important;
  justify-content: center;
  gap: 6px;
  padding: 14px 0 4px;
}
.zb-dots button {
  width: 10px !important;
  height: 10px !important;
  border-radius: 50% !important;
  background: #444 !important;
  border: none !important;
  opacity: 1 !important;
  margin: 0 !important;
  transition: all 0.3s !important;
  flex-shrink: 0;
}
.zb-dots button.active {
  background: #f5820d !important;
  width: 28px !important;
  border-radius: 5px !important;
}

/* ===== WHY CHOOSE — RED CARDS (Image 1) ===== */
.why-section {
  background: #111111;
  padding: 50px 0 40px;
}

.sec-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 32px;
  line-height: 40px;
  letter-spacing: 0px;
  text-align: center;
  color: #E5E1EA;
  margin-bottom: 32px;
}
.sec-orange {
  color: #f5820d;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 32px;
  line-height: 40px;
  letter-spacing: 0px;
}

.red-card {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px;
  gap: 16px;
  height: 270px;
  background: #9F1B17;
  border: 1px solid #C53D39;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.5);
  border-radius: 12px;
}

.rc-icon-box {
  width: 64px;
  height: 64px;
  background: rgba(255, 180, 168, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.rc-icon-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.rc-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  color: #E5E1EA;
  margin: 0;
}

.rc-desc {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #E4BEB8;
  margin: 0;
}

/* ===== HOW IT WORKS — HORIZONTAL (Image 2) ===== */
.how-section {
  background: #0f0f0f;
  padding: 50px 0 55px;
}

.steps-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.step-wrap {
  flex: 1;
  position: relative;
  padding-top: 64px;
}

.step-icon-circle {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 128px;
  height: 128px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.step-icon-img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.step-card {
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0px 0px 4px rgba(0, 0, 0, 0.25);
  border-radius: 16px;
  height: 266px;
  padding: 88px 33px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  -webkit-mask-image: radial-gradient(circle 66px at 50% 0%, transparent 65px, #000 66px);
  mask-image: radial-gradient(circle 66px at 50% 0%, transparent 65px, #000 66px);
}

.step-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0.02em;
  text-transform: capitalize;
  color: #E4A030;
  margin: 0;
}

.step-desc {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.02em;
  text-transform: capitalize;
  color: #E3E3E3;
  margin: 0;
}

.step-arrow {
  flex: 0 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.2);
  font-size: 1.2rem;
  margin-top: 128px;
}

/* ===== WINNER TICKER ===== */
.winner-ticker-wrap {
  box-sizing: border-box;
  background: #0E0D13;
  border-top: 1px solid #2D2B35;
  border-bottom: 1px solid #2D2B35;
  padding: 8px 60px;
  height: 42px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.winner-ticker-track {
  display: flex;
  align-items: center;
  gap: 48px;
  white-space: nowrap;
  animation: tickerScroll 30s linear infinite;
  width: max-content;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  line-height: 24px;
  padding: 0;
}
.ticker-item .t-name {
  font-weight: 700;
  color: #FFB4A8;
}
.ticker-item .t-won {
  font-weight: 400;
  color: #E5E1EA;
}
.ticker-item .t-amt {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 16px;
  color: #FFD700;
}
.ticker-item .t-on {
  font-weight: 400;
  color: #E5E1EA;
}
.ticker-item .t-game {
  font-weight: 400;
  color: #E5E1EA;
}

@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===== WE ACCEPT ===== */
.accept-section {
  background: #0f0f0f;
  padding: 52px 0 44px;
}

.accept-box {
  box-sizing: border-box;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  padding: 0 40px;
}

.pay-logo-group {
  height: 50px;
  object-fit: contain;
  max-width: 100%;
}

/* ===== CTA ===== */
.cta-section {
  background: #0f0f0f;
  padding: 20px 0 60px;
}

.cta-box {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 64px;
  gap: 24px;
  background: #1E1D21;
  border: 1px solid #343337;
  border-radius: 32px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.cta-heading {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 48px;
  line-height: 1;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #FFFFFF;
  margin: 0;
  text-align: center;
}

.cta-heading .sec-orange {
  font-weight: 900;
  font-style: italic;
  font-size: 48px;
  line-height: 1;
  letter-spacing: 1px;
}

.cta-sub {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0px;
  color: #E4BEB8;
  text-align: center;
  margin: 0;
  padding-bottom: 16px;
}

.btn-claim {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 48px;
  width: 276px;
  height: 73px;
  background: linear-gradient(269.92deg, #E10A07 0.21%, #C67E07 100.33%);
  border-radius: 12px;
  box-shadow: 0px 25px 50px -12px rgba(0, 0, 0, 0.25);
  border: none;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 22px;
  line-height: 33px;
  color: #FFFFFF;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
}
.btn-claim:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.cta-tc {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  color: #FFFFFF;
  opacity: 0.5;
  text-align: center;
  margin: 0;
}

/* ===== AUTH MODAL ===== */
.zb-modal {
  background: #0f0e1c;
  border: 1px solid #1e1d30;
  border-radius: 16px;
  color: #fff;
  overflow: hidden;
}

.auth-tabs {
  display: flex;
  gap: 0;
  background: #1a192b;
  border-radius: 10px;
  padding: 5px;
  flex: 1;
  margin-right: 12px;
}
.auth-tab {
  flex: 1;
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.45);
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 10px 0;
  border-radius: 7px;
  cursor: pointer;
  transition: all 0.2s;
}
.auth-tab.active {
  background: linear-gradient(90deg, #C67E07 0%, #E10A07 100%);
  color: #fff;
}

.zb-input {
  background: #0a0917 !important;
  border: 1px solid #2a2845 !important;
  color: #fff !important;
  border-radius: 8px !important;
  padding: 14px 16px !important;
  font-family: 'Poppins', sans-serif !important;
  font-size: 0.9rem !important;
  height: 50px;
}
.zb-input:focus {
  border-color: #E10A07 !important;
  box-shadow: 0 0 0 2px rgba(225,10,7,0.15) !important;
  outline: none !important;
}
.zb-input::placeholder { color: #4a4870 !important; }

.zb-eye-btn {
  background: #0a0917;
  border: 1px solid #2a2845;
  border-left: none;
  color: #666;
  border-radius: 0 8px 8px 0 !important;
}
.zb-eye-btn:hover { color: #f5820d; }

.input-group .zb-input { border-radius: 8px 0 0 8px !important; }

.modal-forgot {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 1.35rem;
  color: #f5820d;
  text-decoration: none;
  text-align: right;
  display: block;
  transition: opacity 0.2s;
}
.modal-forgot:hover { opacity: 0.8; color: #f5820d; }

.btn-modal-submit {
  background: linear-gradient(90deg, #C67E07 0%, #E10A07 100%);
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.25s;
  letter-spacing: 0.3px;
}
.btn-modal-submit:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.modal-switch-link {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 1.35rem;
  color: #f5820d;
  text-decoration: none;
  cursor: pointer;
  display: block;
  text-align: center;
}
.modal-switch-link:hover { opacity: 0.8; color: #f5820d; }

.modal-header { padding: 20px 20px 14px; }
.modal-body { padding: 4px 20px 24px; }

/* ===== RESPONSIVE ===== */

/* Tablet */
@media (max-width: 991px) {
  .steps-row { gap: 10px; }
  .step-card { padding: 80px 16px 20px; }
  .step-title { font-size: 16px; }
  .step-desc { font-size: 13px; }
  .cta-heading { font-size: 36px; }
}

/* Mobile landscape / large phones */
@media (max-width: 768px) {
  /* Navbar */
  .logo-img { height: 32px; }
  .btn-login { width: auto; min-width: unset; height: auto; padding: 8px 14px; font-size: 0.8rem; }

  /* Banner */
  .banner { height: 220px; }
  .ban-body { padding: 0 20px; }
  .ban-gold-big { font-size: 1.6rem; }
  .ban-gold-huge { font-size: 2.8rem; }
  .ban-main { font-size: 1rem; }
  .ban-right { display: none; }

  /* Section titles */
  .sec-title { font-size: 24px; margin-bottom: 24px; }
  .sec-orange { font-size: 24px; line-height: 32px; }

  /* Why Choose cards */
  .red-card { height: auto; min-height: 200px; }
  .rc-title { font-size: 16px; }
  .rc-desc { font-size: 12px; }

  /* How it Works */
  .how-section { padding: 40px 0 48px; }
  .steps-row { flex-direction: column; gap: 48px; align-items: center; }
  .step-wrap { width: 85%; margin: 0 auto; padding-top: 56px; }
  .step-icon-circle { width: 96px; height: 96px; }
  .step-icon-img { width: 60px; height: 60px; }
  .step-card {
    height: auto;
    min-height: 220px;
    padding: 68px 24px 24px;
    -webkit-mask-image: radial-gradient(circle 50px at 50% 0%, transparent 49px, #000 50px);
    mask-image: radial-gradient(circle 50px at 50% 0%, transparent 49px, #000 50px);
  }
  .step-title { font-size: 18px; }
  .step-desc { font-size: 14px; }
  .step-arrow { display: none; }

  /* Winner Ticker */
  .winner-ticker-wrap { padding: 8px 16px; height: auto; }
  .ticker-item { font-size: 12px; gap: 5px; }
  .ticker-item .t-amt { font-size: 12px; }

  /* We Accept */
  .accept-section { padding: 36px 0 28px; }
  .accept-box { height: auto; padding: 20px 16px; }
  .pay-logo-group { height: 30px; }

  /* CTA */
  .cta-section { padding: 20px 0 40px; }
  .cta-box { padding: 40px 24px; gap: 16px; border-radius: 20px; }
  .cta-heading { font-size: 28px; line-height: 36px; }
  .cta-heading .sec-orange { font-size: 28px; line-height: 36px; }
  .cta-sub { font-size: 15px; }
  .btn-claim { width: 100%; max-width: 280px; height: auto; padding: 16px 24px; font-size: 18px; }
}

/* Small mobile */
@media (max-width: 480px) {
  /* Banner */
  .banner { height: 180px; }

  /* Why Choose */
  .why-section { padding: 36px 0 28px; }
  .rc-icon-box { width: 48px; height: 48px; font-size: 1.1rem; }
  .rc-title { font-size: 15px; }

  /* How it Works */
  .step-wrap { width: 92%; padding-top: 48px; }
  .step-icon-circle { width: 80px; height: 80px; }
  .step-icon-img { width: 50px; height: 50px; }
  .step-card {
    padding: 56px 20px 20px;
    -webkit-mask-image: radial-gradient(circle 42px at 50% 0%, transparent 41px, #000 42px);
    mask-image: radial-gradient(circle 42px at 50% 0%, transparent 41px, #000 42px);
  }
  .step-title { font-size: 16px; }
  .step-desc { font-size: 13px; }

  /* Ticker */
  .winner-ticker-track { gap: 24px; }

  /* CTA */
  .cta-heading { font-size: 24px; line-height: 30px; }
  .cta-heading .sec-orange { font-size: 24px; line-height: 30px; }
  .cta-sub { font-size: 13px; }
}
