/* ===================================================
   SOMNATH BOOK - PREMIUM MOBILE CASINO LANDING PAGE
   Color Palette: Royal Crimson Red & Vegas Metallic Gold
   =================================================== */

:root {
  --color-bg-dark: #0f0205;
  --color-bg-card: #20040a;
  --color-bg-crimson: #5c040e;
  --color-crimson-bright: #9e0c1b;
  --color-gold-light: #fff2a3;
  --color-gold-main: #f5c542;
  --color-gold-dark: #b8860b;
  --color-gold-glow: rgba(245, 197, 66, 0.4);
  --color-whatsapp: #25d366;
  --color-whatsapp-dark: #128c7e;
  --color-whatsapp-glow: rgba(37, 211, 102, 0.5);
  --color-text-light: #ffffff;
  --color-text-muted: #e0d0d3;
  --font-royal: 'Cinzel', serif;
  --font-body: 'Outfit', sans-serif;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --shadow-gold: 0 0 20px rgba(245, 197, 66, 0.35);
  --shadow-red: 0 10px 30px rgba(158, 12, 27, 0.4);
  --shadow-wa: 0 6px 20px rgba(37, 211, 102, 0.45);
}

/* Reset & Box Sizing */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  background-color: #080103;
}

body {
  font-family: var(--font-body);
  color: var(--color-text-light);
  background: radial-gradient(circle at 50% 10%, #300309 0%, #0d0104 60%, #050002 100%);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.5;
  position: relative;
}

/* ===================================================
   AMBIENT BACKGROUND CASINO PARTICLES
   =================================================== */
.ambient-casino-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.floating-chip, .floating-coin, .floating-card {
  position: absolute;
  opacity: 0.18;
  filter: blur(1px);
  animation: floatOrb 12s ease-in-out infinite alternate;
}

.chip-red {
  width: 70px;
  height: 70px;
  background: radial-gradient(circle, #e60026 40%, #800010 100%);
  border: 4px dashed #ffffff;
  border-radius: 50%;
  top: 15%;
  left: 5%;
  animation-duration: 14s;
}

.chip-blue {
  width: 90px;
  height: 90px;
  background: radial-gradient(circle, #0088ff 40%, #003388 100%);
  border: 5px dashed #ffffff;
  border-radius: 50%;
  top: 55%;
  right: 4%;
  animation-duration: 18s;
  animation-delay: -3s;
}

.chip-gold {
  width: 60px;
  height: 60px;
  background: radial-gradient(circle, #ffd700 40%, #b8860b 100%);
  border: 4px dashed #fff;
  border-radius: 50%;
  bottom: 20%;
  left: 8%;
  animation-duration: 16s;
  animation-delay: -6s;
}

.coin-1 { font-size: 2.5rem; top: 30%; right: 8%; animation-duration: 11s; }
.coin-2 { font-size: 2.2rem; bottom: 35%; left: 12%; animation-duration: 15s; }
.card-1 { font-size: 3rem; top: 75%; right: 10%; animation-duration: 13s; }
.card-2 { font-size: 2.8rem; top: 5%; right: 15%; animation-duration: 17s; }

@keyframes floatOrb {
  0% { transform: translateY(0) rotate(0deg) scale(1); }
  50% { transform: translateY(-25px) rotate(15deg) scale(1.05); }
  100% { transform: translateY(20px) rotate(-15deg) scale(0.95); }
}

/* ===================================================
   PHONE SCREEN LAYOUT CONTAINER
   =================================================== */
.phone-wrapper {
  position: relative;
  z-index: 1;
  max-width: 480px; /* Optimized phone screen width */
  margin: 0 auto;
  background: linear-gradient(180deg, #220308 0%, #150205 30%, #100104 100%);
  min-height: 100vh;
  box-shadow: 0 0 50px rgba(0,0,0,0.8), 0 0 30px rgba(184, 134, 11, 0.2);
  border-left: 1px solid rgba(245, 197, 66, 0.2);
  border-right: 1px solid rgba(245, 197, 66, 0.2);
  overflow: hidden;
  padding-bottom: 20px;
}

/* ===================================================
   TOP TICKER BAR (Live Sports & WhatsApp status)
   =================================================== */
.top-marquee-bar {
  background: linear-gradient(90deg, #100003, #45030b, #100003);
  border-bottom: 1px solid rgba(245, 197, 66, 0.35);
  overflow: hidden;
  white-space: nowrap;
  padding: 8px 0;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.marquee-track {
  display: inline-flex;
  gap: 16px;
  animation: scrollMarquee 22s linear infinite;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #f7e6c4;
}

.marquee-divider {
  color: var(--color-gold-main);
  opacity: 0.6;
}

@keyframes scrollMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Common Color Helper Classes */
.text-gold { color: var(--color-gold-main) !important; }
.text-whatsapp { color: var(--color-whatsapp) !important; }
.text-green { color: #39e75f !important; }

/* ===================================================
   BRAND HEADER & LOGO WITH MARQUEE BULBS
   =================================================== */
.brand-header {
  position: relative;
  text-align: center;
  padding: 24px 16px 18px;
  background: radial-gradient(circle at 50% 40%, #52050e 0%, #200307 80%);
  border-bottom: 2px solid rgba(245, 197, 66, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.brand-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-gold-main), transparent);
}

/* Marquee Bulbs Ring */
.marquee-bulbs-ring {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin: 0 auto 14px;
}

.bulb {
  width: 8px;
  height: 8px;
  background: #ffeb99;
  border-radius: 50%;
  box-shadow: 0 0 8px #ffc83b, 0 0 14px #ff9900;
  animation: bulbBlink 1.2s infinite alternate;
}

.bulb:nth-child(even) {
  animation-delay: 0.6s;
  background: #ffcc00;
}

@keyframes bulbBlink {
  0% { opacity: 0.35; transform: scale(0.85); box-shadow: 0 0 3px #ff9900; }
  100% { opacity: 1; transform: scale(1.15); box-shadow: 0 0 12px #ffe600, 0 0 20px #ff7700; }
}

/* Centered Logo Box & Anchor Tag */
.logo-wrapper-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  text-align: center;
  width: 100%;
}

.logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  text-decoration: none;
  position: relative;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.logo-link:hover, .logo-link:active {
  transform: scale(1.03);
}

.logo-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.brand-logo {
  display: block;
  margin: 0 auto;
  max-width: 230px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 22px rgba(0,0,0,0.8)) drop-shadow(0 0 18px rgba(245, 197, 66, 0.45));
  animation: logoFloat 4s ease-in-out infinite;
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* Dual WhatsApp Numbers Badges Pinned to the Logo */
.logo-dual-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 8px auto 0;
  background: rgba(0, 0, 0, 0.55);
  border: 1.2px solid rgba(37, 211, 102, 0.5);
  border-radius: var(--radius-full);
  padding: 5px 14px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.logo-num-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: color 0.2s ease, transform 0.2s ease;
}

.logo-num-pill:hover, .logo-num-pill:active {
  color: #55ee8b;
  transform: scale(1.05);
}

.pill-divider {
  color: var(--color-gold-main);
  opacity: 0.6;
  font-weight: 700;
  font-size: 0.8rem;
}

/* Tagline & Headers */
.verified-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(245, 197, 66, 0.12);
  border: 1px solid rgba(245, 197, 66, 0.4);
  color: var(--color-gold-light);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-top: 10px;
}

.pulse-dot {
  width: 7px;
  height: 7px;
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 0 8px #25d366;
  animation: pulseDot 1.4s infinite;
}

@keyframes pulseDot {
  0%, 100% { transform: scale(0.9); opacity: 0.7; }
  50% { transform: scale(1.3); opacity: 1; }
}

.brand-title {
  font-family: var(--font-royal);
  font-size: 1.85rem;
  font-weight: 900;
  letter-spacing: 1.5px;
  background: linear-gradient(180deg, #ffffff 0%, #ffdf79 50%, #d4931a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: 4px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.brand-subtitle {
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffc83b;
  letter-spacing: 0.6px;
}

/* Direct Quick Agent Connect Buttons (Header) */
.quick-agent-bar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 16px;
}

.quick-agent-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-decoration: none;
  background: linear-gradient(135deg, #1c2e22, #0d1e13);
  border: 1.5px solid #25d366;
  padding: 9px 8px;
  border-radius: var(--radius-md);
  color: #fff;
  font-size: 0.76rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.15);
  transition: all 0.2s ease;
}

.quick-agent-btn i {
  font-size: 1.1rem;
  color: #25d366;
}

.quick-agent-btn .agent-name {
  font-weight: 700;
  color: #d8ffd8;
}

.quick-agent-btn .agent-num {
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.3px;
}

.online-tag {
  background: #25d366;
  color: #05200d;
  font-size: 0.55rem;
  font-weight: 900;
  padding: 1px 4px;
  border-radius: 4px;
}

.quick-agent-btn:active {
  transform: scale(0.97);
  box-shadow: 0 0 15px rgba(37, 211, 102, 0.6);
}

/* Quick Trust Indicators Grid */
.quick-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 14px;
}

.stat-pill {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(245, 197, 66, 0.2);
  border-radius: var(--radius-sm);
  padding: 8px 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.stat-pill i {
  font-size: 0.95rem;
}

.stat-meta {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.stat-val {
  font-size: 0.75rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
}

.stat-lbl {
  font-size: 0.6rem;
  color: #c9b4b8;
  font-weight: 500;
}

/* ===================================================
   SECTION CORE STYLES
   =================================================== */
.screen-section {
  padding: 24px 16px;
  position: relative;
}

.section-tag-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(90deg, #42060e, #290308);
  border: 1px solid rgba(245, 197, 66, 0.45);
  color: var(--color-gold-light);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.badge-jackpot {
  border-color: #ffd700;
  box-shadow: 0 0 12px rgba(255, 215, 0, 0.35);
}

/* Anime Visual Cards */
.visual-card {
  margin-bottom: 18px;
  position: relative;
}

.visual-img-link {
  display: block;
  text-decoration: none;
}

.visual-img-container {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid rgba(245, 197, 66, 0.5);
  box-shadow: 0 12px 30px rgba(0,0,0,0.6), 0 0 25px rgba(245, 197, 66, 0.25);
  background: #190206;
}

.anime-art {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.visual-img-link:hover .anime-art,
.visual-img-link:active .anime-art {
  transform: scale(1.03);
}

/* Badges floating on visual cards */
.floating-badge {
  position: absolute;
  background: linear-gradient(135deg, #ff0037, #b00022);
  color: #ffffff;
  font-weight: 900;
  font-size: 0.75rem;
  letter-spacing: 0.5px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 15px rgba(255, 0, 55, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.4);
  z-index: 2;
}

.badge-top-right {
  top: 12px;
  right: 12px;
}

.badge-top-left {
  top: 12px;
  left: 12px;
  background: linear-gradient(135deg, #f5a623, #d0021b);
}

.pulse-badge {
  animation: badgePulse 1.8s infinite;
}

@keyframes badgePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); box-shadow: 0 0 20px #ffcc00; }
}

/* Floating speech bubble */
.floating-bubble {
  position: absolute;
  bottom: 12px;
  background: rgba(14, 2, 5, 0.88);
  backdrop-filter: blur(8px);
  border: 1.5px solid var(--color-gold-main);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 15px rgba(0,0,0,0.6);
  z-index: 2;
}

.bubble-left { left: 12px; }
.bubble-right { right: 12px; }

/* Section Content & Headlines */
.section-headline {
  font-family: var(--font-royal);
  font-size: 1.45rem;
  font-weight: 900;
  line-height: 1.25;
  color: #ffffff;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
  background: linear-gradient(180deg, #ffffff 10%, #ffd976 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-body {
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--color-text-muted);
  margin-bottom: 16px;
}

.section-body strong {
  color: var(--color-gold-light);
}

.section-subtitle {
  font-size: 0.84rem;
  color: #e5cbd0;
  margin-bottom: 14px;
}

/* Special Offer Card */
.special-offer-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, rgba(235, 47, 47, 0.25), rgba(122, 9, 20, 0.4));
  border: 1.5px solid #ff4d4d;
  border-radius: var(--radius-md);
  padding: 12px 14px;
  margin-bottom: 14px;
  box-shadow: 0 4px 15px rgba(255, 77, 77, 0.2);
}

.offer-icon {
  width: 38px;
  height: 38px;
  background: #ff2a2a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.2rem;
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(255, 42, 42, 0.6);
  animation: flickerIcon 1.5s infinite alternate;
}

@keyframes flickerIcon {
  0% { transform: scale(1); }
  100% { transform: scale(1.1); box-shadow: 0 0 16px #ff5959; }
}

.offer-details {
  display: flex;
  flex-direction: column;
}

.offer-title {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #ff9999;
  letter-spacing: 0.5px;
}

.offer-highlight {
  font-size: 0.95rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
}

/* Countdown Strip */
.countdown-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0, 0, 0, 0.4);
  border: 1px dashed rgba(245, 197, 66, 0.4);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  margin-bottom: 16px;
  font-size: 0.78rem;
}

.countdown-label {
  color: #d1b8bc;
  display: flex;
  align-items: center;
  gap: 6px;
}

.countdown-timer {
  font-weight: 800;
  color: var(--color-gold-main);
  font-family: monospace;
  font-size: 0.95rem;
  letter-spacing: 1px;
}

.timer-segment {
  background: #38040b;
  padding: 2px 5px;
  border-radius: 4px;
  border: 1px solid rgba(245, 197, 66, 0.3);
}

/* ===================================================
   DUAL CTA BUTTONS ARCHITECTURE (For Both Numbers)
   =================================================== */
.cta-dual-wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 14px;
}

.cta-header-label {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--color-gold-light);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 2px;
}

.whatsapp-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  background: linear-gradient(135deg, #28d969 0%, #179e4d 100%);
  border: 2px solid #67ff9b;
  color: #ffffff;
  padding: 12px 14px;
  border-radius: var(--radius-md);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.35);
  overflow: hidden;
  transition: all 0.25s ease;
  cursor: pointer;
}

.whatsapp-btn:active {
  transform: translateY(2px) scale(0.98);
  box-shadow: 0 2px 10px rgba(37, 211, 102, 0.5);
}

/* Alternative VIP Styling for Agent 2 CTA */
.btn-agent-2 {
  background: linear-gradient(135deg, #1fa855 0%, #0e733b 100%);
  border-color: #55ee8b;
}

.btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-25deg);
  animation: btnShineAnim 3.5s infinite;
  pointer-events: none;
}

@keyframes btnShineAnim {
  0%, 60% { left: -100%; }
  100% { left: 160%; }
}

.pulse-glow {
  animation: pulseButton 2.2s infinite;
}

@keyframes pulseButton {
  0%, 100% {
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  }
  50% {
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.8), 0 0 12px rgba(255, 255, 255, 0.5);
  }
}

.btn-icon {
  font-size: 1.8rem;
  color: #ffffff;
  flex-shrink: 0;
  margin-right: 10px;
}

.btn-text-group {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  text-align: left;
}

.btn-primary-text {
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.2;
  color: #ffffff;
  letter-spacing: 0.2px;
}

.btn-sub-text {
  font-size: 0.72rem;
  font-weight: 600;
  color: #dcffd6;
  margin-top: 2px;
}

.btn-arrow {
  font-size: 1.1rem;
  color: #ffffff;
  opacity: 0.85;
  margin-left: 6px;
  flex-shrink: 0;
}

/* ===================================================
   CASINO DIVIDER
   =================================================== */
.casino-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 10px 16px;
  opacity: 0.75;
}

.divider-line {
  flex-grow: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245, 197, 66, 0.5), transparent);
}

.divider-icon {
  font-size: 0.85rem;
  letter-spacing: 3px;
}

/* ===================================================
   SECTION 2: PERKS & BENEFITS CARDS
   =================================================== */
.perks-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
}

.perk-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, rgba(58, 6, 14, 0.7), rgba(30, 3, 7, 0.85));
  border: 1.2px solid rgba(245, 197, 66, 0.25);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
}

.perk-link:active {
  transform: scale(0.98);
  border-color: var(--color-whatsapp);
  background: rgba(37, 211, 102, 0.1);
}

.perk-icon-wrap {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.icon-lightning { background: radial-gradient(circle, #ffb300, #ff6f00); color: #000; }
.icon-shield { background: radial-gradient(circle, #00c853, #007e33); color: #fff; }
.icon-gift { background: radial-gradient(circle, #ff1744, #b71c1c); color: #fff; }
.icon-sports { background: radial-gradient(circle, #2979ff, #0d47a1); color: #fff; }
.icon-vip { background: radial-gradient(circle, #ffd700, #e65100); color: #000; }

.perk-info {
  flex-grow: 1;
}

.perk-title {
  font-size: 0.86rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.25;
  margin-bottom: 2px;
}

.perk-desc {
  font-size: 0.72rem;
  color: #ccb6ba;
  line-height: 1.35;
}

.perk-arrow {
  font-size: 0.8rem;
  color: var(--color-gold-main);
  opacity: 0.6;
}

/* ===================================================
   SECTION 3: 3-STEP INSTANT ID FLOW & REMEMBER BOX
   =================================================== */
.steps-flow {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 16px 0;
}

.step-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(245, 197, 66, 0.22);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  text-decoration: none;
  color: #fff;
  transition: all 0.2s ease;
}

.step-link:active {
  border-color: #25d366;
  background: rgba(37, 211, 102, 0.08);
}

.step-num {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, #ffd700, #b8860b);
  color: #1a0206;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.step-text {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.step-text strong {
  font-size: 0.84rem;
  color: #fff;
}

.step-text span {
  font-size: 0.72rem;
  color: #bfa9ad;
}

.step-ext {
  font-size: 0.75rem;
  color: var(--color-gold-main);
  opacity: 0.7;
}

.remember-box {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(245, 197, 66, 0.1);
  border: 1px solid rgba(245, 197, 66, 0.4);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  margin-bottom: 16px;
  font-size: 0.78rem;
  color: #ffe6aa;
}

.remember-icon {
  color: var(--color-gold-main);
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ===================================================
   PAYMENT MODES STRIP
   =================================================== */
.payment-modes-strip {
  padding: 14px 16px;
  text-align: center;
  background: rgba(0, 0, 0, 0.35);
  border-top: 1px solid rgba(245, 197, 66, 0.15);
  border-bottom: 1px solid rgba(245, 197, 66, 0.15);
}

.payment-title {
  font-size: 0.72rem;
  color: var(--color-gold-light);
  font-weight: 700;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.payment-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.pay-tag {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-size: 0.72rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 5px;
  color: #fff;
}

/* ===================================================
   FOOTER
   =================================================== */
.phone-footer {
  text-align: center;
  padding: 24px 16px;
  border-top: 1px solid rgba(245, 197, 66, 0.2);
}

.footer-logo-link {
  display: inline-block;
  margin-bottom: 6px;
}

.footer-mini-logo {
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.5));
}

.footer-heading {
  font-family: var(--font-royal);
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--color-gold-main);
  letter-spacing: 1px;
}

.footer-copy {
  font-size: 0.75rem;
  color: #bfabb0;
  margin-bottom: 14px;
}

.footer-wa-pills {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 14px;
}

.footer-wa-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.4);
  color: #25d366;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: all 0.2s;
}

.footer-wa-pill:active {
  background: #25d366;
  color: #000;
}

.footer-legal {
  font-size: 0.7rem;
  color: #8c767b;
  margin-bottom: 6px;
}

.copyright {
  font-size: 0.65rem;
  color: #634d52;
}

.bottom-spacer {
  height: 80px; /* Space for sticky bar */
}

/* ===================================================
   FLOATING LIVE WINNER TOAST NOTIFICATION
   =================================================== */
.live-payout-toast {
  position: fixed;
  bottom: 84px; /* Sits directly above the sticky bottom bar */
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  width: calc(100% - 32px);
  max-width: 440px;
  background: rgba(22, 2, 6, 0.95);
  border: 1.5px solid #ffcc00;
  box-shadow: 0 8px 25px rgba(0,0,0,0.8), 0 0 15px rgba(255, 204, 0, 0.35);
  border-radius: var(--radius-md);
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
  z-index: 99;
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s;
  opacity: 0;
  pointer-events: none;
}

.live-payout-toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.toast-avatar {
  width: 34px;
  height: 34px;
  background: #00c853;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.toast-content {
  flex-grow: 1;
  overflow: hidden;
}

.toast-title {
  font-size: 0.78rem;
  font-weight: 800;
  color: #ffffff;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.toast-amount {
  font-size: 0.72rem;
  color: #ffda73;
  font-weight: 700;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.toast-badge {
  background: #ff0044;
  color: #ffffff;
  font-size: 0.58rem;
  font-weight: 900;
  padding: 2px 6px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  animation: liveFlicker 1.2s infinite alternate;
}

@keyframes liveFlicker {
  0% { opacity: 0.7; }
  100% { opacity: 1; }
}

/* ===================================================
   STICKY BOTTOM DUAL-AGENT WHATSAPP BAR
   =================================================== */
.sticky-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  pointer-events: none;
  padding: 8px 12px;
}

.sticky-bar-inner {
  width: 100%;
  max-width: 480px;
  pointer-events: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  background: rgba(14, 1, 4, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 8px 10px;
  border-radius: var(--radius-lg);
  border: 1.5px solid rgba(245, 197, 66, 0.4);
  box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.8), 0 0 20px rgba(37, 211, 102, 0.25);
}

.sticky-agent-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  background: linear-gradient(135deg, #25d366, #128c7e);
  border: 1.5px solid #79ffab;
  color: #ffffff;
  padding: 8px 8px;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35);
  transition: all 0.2s ease;
  position: relative;
}

.sticky-btn-2 {
  background: linear-gradient(135deg, #1fa855, #0d6e38);
}

.sticky-agent-btn i {
  font-size: 1.35rem;
}

.sticky-text-wrap {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.sticky-head {
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.1;
  color: #ffffff;
}

.sticky-num {
  font-size: 0.76rem;
  font-weight: 900;
  color: #d6ffd0;
  letter-spacing: 0.3px;
}

.sticky-live-dot {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 6px;
  height: 6px;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 0 6px #fff;
  animation: pulseDot 1.2s infinite;
}

.sticky-agent-btn:active {
  transform: scale(0.96);
}

/* ===================================================
   CONFETTI CANVAS (For Tap Reward)
   =================================================== */
#confettiCanvas {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 9999;
}

/* ===================================================
   RESPONSIVE OPTIMIZATIONS
   =================================================== */
@media (max-width: 360px) {
  .brand-title {
    font-size: 1.6rem;
  }
  .section-headline {
    font-size: 1.3rem;
  }
  .quick-agent-btn {
    font-size: 0.7rem;
    padding: 7px 4px;
  }
  .sticky-agent-btn {
    padding: 6px 4px;
    gap: 5px;
  }
  .sticky-num {
    font-size: 0.7rem;
  }
}

@media (min-width: 768px) {
  /* On tablets/desktop, present a lavish casino frame */
  body {
    padding: 30px 0 50px;
  }
  .phone-wrapper {
    border-radius: 36px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.95), 0 0 50px rgba(245, 197, 66, 0.25);
    border: 3px solid rgba(245, 197, 66, 0.4);
  }
}
