*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-user-select: none; /* Safari */
  -moz-user-select: none;    /* Firefox */
  -ms-user-select: none;     /* IE10+/Edge */
  user-select: none;         /* Standard */
}

input, textarea {
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}

:root {
  --bg: #f5f7fb;
  --text: #1e293b;

  /* Brand colors */
  --diwa-theme: #00b14b;
  --wecoin-theme: #0062ff;
  --uno-theme: #ff004c;
  --dd-theme: #ff2396;
  --come-theme: #7200ff;
  --shakti-theme: #ff5500;
  --alpha-theme: #7200ff;
  --jd-theme: #0052ff;
  --fc-theme: #10b981;
  --sathi-theme: #ff004c;
  --ajay-theme: #7200ff;
  --redbull-theme: #ff5500;
  --link-theme: #0066ff;
  --win-theme: #cc7a00;
  --wynnpay-theme: #4f46e5;
  --onepay-theme: #ff004c;

  --radius: 28px;
  --shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  display: flex;
  justify-content: center;
}

.page {
  width: 100%;
  max-width: 480px;
  padding: 14px 14px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ── Header ── */
.header {
  display: flex;
  gap: 10px;
  margin-bottom: 2px;
}

.header-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 50px;
  font-size: 9.5px;
  font-weight: 400;
  text-decoration: none;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.header-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.35),
      transparent);
  transform: translateX(-150%) skewX(-20deg);
  transition: none;
  pointer-events: none;
  z-index: 2;
}

.header-btn:hover::after {
  transform: translateX(300%) skewX(-20deg);
  transition: transform 0.8s ease-in-out;
}

.header-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.header-btn:active {
  transform: translateY(1px) scale(0.97);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.support-btn {
  background: linear-gradient(135deg, #00e676 0%, #00a152 100%);
}

.support-btn:hover {}

.telegram-btn {
  background: linear-gradient(135deg, #00b0ff 0%, #0088cc 100%);
  box-shadow: 0 4px 15px rgba(0, 176, 255, 0.3);
}

.telegram-btn:hover {
  box-shadow: 0 8px 25px rgba(0, 176, 255, 0.45);
}

.pulse-dot {
  width: 7px;
  height: 7px;
  background: #ffffff;
  border-radius: 50%;
  display: inline-block;
  animation: pulse 1.5s infinite ease-in-out;
}

@keyframes pulse {
  0% {
    transform: scale(0.85);
    opacity: 0.6;
  }

  50% {
    transform: scale(1.15);
    opacity: 1;
  }

  100% {
    transform: scale(0.85);
    opacity: 0.6;
  }
}

.telegram-icon,
.support-icon {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}

/* ── Top Kiara Advani Banner ── */
.top-banner-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.5);
  margin-bottom: 4px;
  perspective: 1500px;
  aspect-ratio: 16 / 6;
}

.banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slideshow-inner {
  position: relative;
  overflow: hidden;
  width: 100%;
}

/* ── Page Flip 3D Transition Styles ── */
.page-flip-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 5;
  perspective: 1500px;
}

.page-flip-left-static,
.page-flip-right-static {
  position: absolute;
  top: 0;
  height: 100%;
  background-size: 200% 100%;
  background-repeat: no-repeat;
}

.page-flip-left-static {
  left: 0;
  width: 50%;
  background-position: left center;
}

.page-flip-right-static {
  left: 50%;
  width: 50%;
  background-position: right center;
}

.page-flip-pane {
  position: absolute;
  top: 0;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 6;
}

/* Direction-specific pane setup */
.page-flip-pane.flip-forward {
  left: 50%;
  width: 50%;
  transform-origin: left center;
}

.page-flip-pane.flip-backward {
  left: 0;
  width: 50%;
  transform-origin: right center;
}

.page-flip-face {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  background-size: 200% 100%;
  background-repeat: no-repeat;
}

/* Front & Back placement for forward flip */
.flip-forward .page-flip-front {
  background-position: right center;
}

.flip-forward .page-flip-back {
  background-position: left center;
  transform: rotateY(180deg);
}

/* Front & Back placement for backward flip */
.flip-backward .page-flip-front {
  background-position: left center;
}

.flip-backward .page-flip-back {
  background-position: right center;
  transform: rotateY(-180deg);
}

/* ── Slideshow Indicator Dots ── */
.slideshow-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 10;
}

.slide-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.slide-dot:hover {
  background: rgba(255, 255, 255, 0.8);
}

.slide-dot.active {
  width: 14px;
  border-radius: 3px;
  background: #ffffff;
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.6), 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Make slideshow-dots smaller for mobile users */
@media (max-width: 767px) {
  .slideshow-dots {
    bottom: 8px;
    gap: 4px;
  }
  
  .slide-dot {
    width: 5px;
    height: 5px;
  }
  
  .slide-dot.active {
    width: 10px;
    border-radius: 2px;
  }
}

/* ── App Cards ── */
.cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
  perspective: 1000px;
}

.app-card {
  position: relative;
  border-radius: var(--radius);
  padding: 18px 16px 16px;
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.8);
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

/* Scroll-based dynamic slide animations */
.app-card.scroll-slide {
  opacity: 0;
  transform: translateY(60px) scale(0.93) rotateX(4deg);
  transform-origin: center bottom;
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, opacity;
}

.app-card.scroll-slide.revealed {
  opacity: 1;
  transform: translateY(0) scale(1) rotateX(0deg);
}

/* Card Themes backgrounds */
.theme-diwa {
  background: linear-gradient(135deg, #eafaf1 0%, #f7fdfa 50%, #ffffff 100%);
}

.theme-wecoin {
  background: linear-gradient(135deg, #eff6ff 0%, #f8fafc 50%, #ffffff 100%);
}

.theme-uno {
  background: linear-gradient(135deg, #fff1f3 0%, #fffbfc 50%, #ffffff 100%);
}

.theme-dd {
  background: linear-gradient(135deg, #fff1f8 0%, #fffbfe 50%, #ffffff 100%);
}

.theme-come {
  background: linear-gradient(135deg, #f4f0ff 0%, #faf9ff 50%, #ffffff 100%);
}

.theme-shakti {
  background: linear-gradient(135deg, #fff7ed 0%, #fffdfa 50%, #ffffff 100%);
}

.theme-alpha {
  background: linear-gradient(135deg, #f4f0ff 0%, #faf9ff 50%, #ffffff 100%);
}

.theme-jd {
  background: linear-gradient(135deg, #eff6ff 0%, #f8fafc 50%, #ffffff 100%);
}

.theme-fc {
  background: linear-gradient(135deg, #ecfdf5 0%, #f8fafc 50%, #ffffff 100%);
}

.theme-sathi {
  background: linear-gradient(135deg, #fff1f3 0%, #fffbfc 50%, #ffffff 100%);
}

.theme-ajay {
  background: linear-gradient(135deg, #f4f0ff 0%, #faf9ff 50%, #ffffff 100%);
}

.theme-redbull {
  background: linear-gradient(135deg, #fff7ed 0%, #fffdfa 50%, #ffffff 100%);
}

.theme-link {
  background: linear-gradient(135deg, #f0f7ff 0%, #fafcff 50%, #ffffff 100%);
}

.theme-win {
  background: linear-gradient(135deg, #fffbeb 0%, #fffdf5 50%, #ffffff 100%);
}

.theme-wynnpay {
  background: linear-gradient(135deg, #eef2ff 0%, #faf5ff 50%, #ffffff 100%);
}

.theme-onepay {
  background: linear-gradient(135deg, #fff1f3 0%, #fffbfc 50%, #ffffff 100%);
}

/* Organic Background Wave Curves */
.card-waves {
  position: absolute;
  top: 0;
  right: 0;
  width: 280px;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.card-waves svg {
  width: 100%;
  height: 100%;
  transform: scaleX(1);
}

.theme-diwa .card-waves {
  color: var(--diwa-theme);
}

.theme-wecoin .card-waves {
  color: var(--wecoin-theme);
}

.theme-uno .card-waves {
  color: var(--uno-theme);
}

.theme-dd .card-waves {
  color: var(--dd-theme);
}

.theme-come .card-waves {
  color: var(--come-theme);
}

.theme-shakti .card-waves {
  color: var(--shakti-theme);
}

.theme-alpha .card-waves {
  color: var(--alpha-theme);
}

.theme-jd .card-waves {
  color: var(--jd-theme);
}

.theme-fc .card-waves {
  color: var(--fc-theme);
}

.theme-sathi .card-waves {
  color: var(--sathi-theme);
}

.theme-ajay .card-waves {
  color: var(--ajay-theme);
}

.theme-redbull .card-waves {
  color: var(--redbull-theme);
}

.theme-link .card-waves {
  color: var(--link-theme);
}

.theme-win .card-waves {
  color: var(--win-theme);
}

.theme-wynnpay .card-waves {
  color: var(--wynnpay-theme);
}

.theme-onepay .card-waves {
  color: var(--onepay-theme);
}

.wave-1 {
  opacity: 0.04;
}

.wave-2 {
  opacity: 0.06;
}

.wave-3 {
  opacity: 0.08;
}

/* ── Card Header ── */
.card-top {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
}

.app-logo {
  width: 58px;
  height: 58px;
  background: #ffffff;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
  flex-shrink: 0;
  overflow: hidden;
  /* clip the logo image */
}

.img-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.app-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.app-name {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.4px;
  color: #0f172a;
  line-height: 1.1;
}

.app-subtitle {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.8px;
  margin-top: 3px;
  text-transform: uppercase;
}

.theme-diwa .app-subtitle {
  color: var(--diwa-theme);
}

.theme-wecoin .app-subtitle {
  color: var(--wecoin-theme);
}

.theme-uno .app-subtitle {
  color: var(--uno-theme);
}

.theme-dd .app-subtitle {
  color: var(--dd-theme);
}

.theme-come .app-subtitle {
  color: var(--come-theme);
}

.theme-shakti .app-subtitle {
  color: var(--shakti-theme);
}

.theme-alpha .app-subtitle {
  color: var(--alpha-theme);
}

.theme-jd .app-subtitle {
  color: var(--jd-theme);
}

.theme-fc .app-subtitle {
  color: var(--fc-theme);
}

.theme-sathi .app-subtitle {
  color: var(--sathi-theme);
}

.theme-ajay .app-subtitle {
  color: var(--ajay-theme);
}

.theme-redbull .app-subtitle {
  color: var(--redbull-theme);
}

.theme-link .app-subtitle {
  color: var(--link-theme);
}

.theme-win .app-subtitle {
  color: var(--win-theme);
}

.theme-wynnpay .app-subtitle {
  color: var(--wynnpay-theme);
}

.theme-onepay .app-subtitle {
  color: var(--onepay-theme);
}

/* DD PAY specific register code row styling */
.register-code-row {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 600;
  color: #64748b;
  margin-top: 3px;
}

.reg-value {
  font-family: monospace;
  font-weight: 800;
  padding: 1px 6px;
  border-radius: 4px;
  font-size: 10px;
}

.copy-btn-mini {
  border: none;
  background: transparent;
  cursor: pointer;
  color: #94a3b8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px;
  border-radius: 4px;
  transition: background 0.15s, color 0.15s;
}

.copy-btn-mini:hover {
  background: rgba(0, 0, 0, 0.04);
}

/* Register code row themes */
.theme-diwa .reg-value {
  background: rgba(0, 177, 75, 0.08);
  color: var(--diwa-theme);
}

.theme-diwa .copy-btn-mini:hover {
  color: var(--diwa-theme);
}

.theme-wecoin .reg-value {
  background: rgba(0, 98, 255, 0.08);
  color: var(--wecoin-theme);
}

.theme-wecoin .copy-btn-mini:hover {
  color: var(--wecoin-theme);
}

.theme-uno .reg-value {
  background: rgba(255, 0, 76, 0.08);
  color: var(--uno-theme);
}

.theme-uno .copy-btn-mini:hover {
  color: var(--uno-theme);
}

.theme-dd .reg-value {
  background: rgba(255, 35, 150, 0.08);
  color: var(--dd-theme);
}

.theme-dd .copy-btn-mini:hover {
  color: var(--dd-theme);
}

.theme-come .reg-value {
  background: rgba(114, 0, 255, 0.08);
  color: var(--come-theme);
}

.theme-come .copy-btn-mini:hover {
  color: var(--come-theme);
}

.theme-shakti .reg-value {
  background: rgba(255, 85, 0, 0.08);
  color: var(--shakti-theme);
}

.theme-shakti .copy-btn-mini:hover {
  color: var(--shakti-theme);
}

.theme-alpha .reg-value {
  background: rgba(114, 0, 255, 0.08);
  color: var(--alpha-theme);
}

.theme-alpha .copy-btn-mini:hover {
  color: var(--alpha-theme);
}

.theme-jd .reg-value {
  background: rgba(0, 82, 255, 0.08);
  color: var(--jd-theme);
}

.theme-jd .copy-btn-mini:hover {
  color: var(--jd-theme);
}

.theme-fc .reg-value {
  background: rgba(16, 185, 129, 0.08);
  color: var(--fc-theme);
}

.theme-fc .copy-btn-mini:hover {
  color: var(--fc-theme);
}

.theme-sathi .reg-value {
  background: rgba(255, 0, 76, 0.08);
  color: var(--sathi-theme);
}

.theme-sathi .copy-btn-mini:hover {
  color: var(--sathi-theme);
}

.theme-ajay .reg-value {
  background: rgba(114, 0, 255, 0.08);
  color: var(--ajay-theme);
}

.theme-ajay .copy-btn-mini:hover {
  color: var(--ajay-theme);
}

.theme-redbull .reg-value {
  background: rgba(255, 85, 0, 0.08);
  color: var(--redbull-theme);
}

.theme-redbull .copy-btn-mini:hover {
  color: var(--redbull-theme);
}

.theme-link .reg-value {
  background: rgba(0, 102, 255, 0.08);
  color: var(--link-theme);
}

.theme-link .copy-btn-mini:hover {
  color: var(--link-theme);
}

.theme-win .reg-value {
  background: rgba(255, 170, 0, 0.08);
  color: var(--win-theme);
}

.theme-win .copy-btn-mini:hover {
  color: var(--win-theme);
}

.theme-wynnpay .reg-value {
  background: rgba(79, 70, 229, 0.08);
  color: var(--wynnpay-theme);
}

.theme-wynnpay .copy-btn-mini:hover {
  color: var(--wynnpay-theme);
}

.theme-onepay .reg-value {
  background: rgba(255, 0, 76, 0.08);
  color: var(--onepay-theme);
}

.theme-onepay .copy-btn-mini:hover {
  color: var(--onepay-theme);
}

.copy-btn-mini.copied {
  color: #10b981;
}

/* Badges */
.badge-group {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
}

.badge {
  border-radius: 50px;
  padding: 4px 10px;
  font-size: 9px;
  font-weight: 900;
  display: flex;
  align-items: center;
  gap: 4px;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.badge-high-deposit {
  background: #0f172a;
  color: #ffffff;
  border-radius: 50px;
  padding: 4px 10px;
  font-size: 8.5px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 5px;
  letter-spacing: 0.6px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.badge-high-deposit .verified-icon {
  width: 11px;
  height: 11px;
  flex-shrink: 0;
  transition: color 0.3s ease, filter 0.3s ease;
}

/* Theme specific glow borders & verified icons for HIGH DEPOSIT badge */
.theme-diwa .badge-high-deposit {
  border-color: rgba(0, 177, 75, 0.35);
  box-shadow: 0 4px 12px rgba(0, 177, 75, 0.08), 0 0 0 1px rgba(0, 177, 75, 0.1);
}

.theme-diwa .badge-high-deposit .verified-icon {
  color: #00e676;
  filter: drop-shadow(0 0 3px rgba(0, 230, 118, 0.5));
}

.theme-wecoin .badge-high-deposit {
  border-color: rgba(0, 98, 255, 0.35);
  box-shadow: 0 4px 12px rgba(0, 98, 255, 0.08), 0 0 0 1px rgba(0, 98, 255, 0.1);
}

.theme-wecoin .badge-high-deposit .verified-icon {
  color: #00b0ff;
  filter: drop-shadow(0 0 3px rgba(0, 176, 255, 0.5));
}

.badge-viral {
  background: linear-gradient(135deg, #ff4e00 0%, #ec9f05 100%);
  color: #ffffff;
}

.badge-fastest {
  background: linear-gradient(135deg, #0046ff 0%, #00a3ff 100%);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 4px 12px rgba(0, 70, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.badge-fastest::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(255, 255, 255, 0.15) 50%,
      transparent 100%);
  background-size: 200% 100%;
  animation: bg-track 1.8s infinite linear;
  pointer-events: none;
}

@keyframes bg-track {
  0% {
    background-position: 150% 0;
  }

  100% {
    background-position: -150% 0;
  }
}

.theme-wecoin {
  perspective: 1200px;
  transform-style: preserve-3d;
}

.rocket-wrapper {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 24px;
  height: 24px;
  z-index: 100;
  pointer-events: none;
  transform-style: preserve-3d;
}

.rocket-svg {
  width: 24px;
  height: 24px;
  transform-origin: center center;
  animation: rocket-3d-fly 5.5s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

.rocket-flame-outer {
  transform-origin: 12px 17px;
  animation: flame-flicker 0.12s infinite alternate ease-in-out;
}

.rocket-flame-inner {
  transform-origin: 12px 17px;
  animation: flame-flicker 0.08s infinite alternate-reverse ease-in-out;
}

@keyframes flame-flicker {

  0%,
  100% {
    transform: scaleY(1) scaleX(1);
    opacity: 0.95;
  }

  50% {
    transform: scaleY(1.4) scaleX(0.85);
    opacity: 1;
  }
}

@keyframes rocket-3d-fly {
  0% {
    transform: translate3d(0, 0, 0) rotate(-45deg) scale(1);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
  }

  /* Swooping down-left closer to user */
  25% {
    transform: translate3d(-80px, 45px, 70px) rotate(-70deg) scale(1.7);
    filter: drop-shadow(0 15px 25px rgba(0, 98, 255, 0.35));
  }

  /* Zooming closest to user near the logo */
  50% {
    transform: translate3d(-230px, 25px, 120px) rotate(-110deg) scale(1.9);
    filter: drop-shadow(0 25px 35px rgba(0, 98, 255, 0.45));
  }

  /* Flying away up-left, slightly back in depth */
  70% {
    transform: translate3d(-270px, -15px, 40px) rotate(-165deg) scale(1.3);
    filter: drop-shadow(0 8px 15px rgba(0, 98, 255, 0.25));
  }

  /* Heading deep into background, looping back */
  85% {
    transform: translate3d(-170px, -45px, -80px) rotate(-260deg) scale(0.6);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    opacity: 0.85;
  }

  93% {
    transform: translate3d(-60px, -20px, -40px) rotate(-325deg) scale(0.85);
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.12));
    opacity: 0.95;
  }

  100% {
    transform: translate3d(0, 0, 0) rotate(-405deg) scale(1);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
    opacity: 1;
  }
}

.badge-trending-blue {
  background: linear-gradient(135deg, #00c6ff 0%, #0072ff 100%);
  color: #ffffff;
}

.badge-trending-pink {
  background: linear-gradient(135deg, #ff416c 0%, #ff4b2b 100%);
  color: #ffffff;
}

.badge-beta {
  background: #f1c40f;
  color: #000000;
  border-radius: 50px;
  padding: 4px 10px;
  font-size: 9px;
  font-weight: 900;
  display: flex;
  align-items: center;
  gap: 4px;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 10px rgba(241, 196, 15, 0.2);
}

.badge-no-deposit {
  background: linear-gradient(135deg, #ff3b30 0%, #d32f2f 100%);
  color: #ffffff;
  border-radius: 50px;
  padding: 4px 10px;
  font-size: 9px;
  font-weight: 900;
  display: flex;
  align-items: center;
  gap: 5px;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 10px rgba(211, 47, 47, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.25);
}


.icon-maintenance {
  width: 10px;
  height: 10px;
  flex-shrink: 0;
  animation: wrench-wiggle 2s infinite ease-in-out;
  transform-origin: center center;
}

@keyframes wrench-wiggle {

  0%,
  100% {
    transform: rotate(0deg);
  }

  25% {
    transform: rotate(-15deg);
  }

  50% {
    transform: rotate(15deg);
  }

  75% {
    transform: rotate(-5deg);
  }
}

.badge-dot {
  width: 5px;
  height: 5px;
  background: #000000;
  border-radius: 50%;
}

/* ── Card Stats Row ── */
.card-stats {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 2;
  width: 100%;
}

.stat-pill {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 50px;
  padding: 5px 6px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.01);
}

.pill-icon-container {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #ffffff;
}

.theme-diwa .pill-icon-container {
  background: var(--diwa-theme);
}

.theme-wecoin .pill-icon-container {
  background: var(--wecoin-theme);
}

.theme-uno .pill-icon-container {
  background: var(--uno-theme);
}

.theme-dd .pill-icon-container {
  background: var(--dd-theme);
}

.theme-come .pill-icon-container {
  background: var(--come-theme);
}

.theme-shakti .pill-icon-container {
  background: var(--shakti-theme);
}

.theme-alpha .pill-icon-container {
  background: var(--alpha-theme);
}

.theme-jd .pill-icon-container {
  background: var(--jd-theme);
}

.theme-fc .pill-icon-container {
  background: var(--fc-theme);
}

.theme-sathi .pill-icon-container {
  background: var(--sathi-theme);
}

.theme-ajay .pill-icon-container {
  background: var(--ajay-theme);
}

.theme-redbull .pill-icon-container {
  background: var(--redbull-theme);
}

.theme-link .pill-icon-container {
  background: var(--link-theme);
}

.theme-win .pill-icon-container {
  background: var(--win-theme);
}

.theme-wynnpay .pill-icon-container {
  background: var(--wynnpay-theme);
}

.theme-onepay .pill-icon-container {
  background: var(--onepay-theme);
}

.icon-pill {
  width: 12px;
  height: 12px;
}

.pill-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
}

.pill-value {
  font-size: 10px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.1;
  white-space: nowrap;
}

.pill-label {
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.3px;
  line-height: 1;
  margin-top: 1px;
}

.theme-diwa .pill-label {
  color: var(--diwa-theme);
}

.theme-wecoin .pill-label {
  color: var(--wecoin-theme);
}

.theme-uno .pill-label {
  color: var(--uno-theme);
}

.theme-dd .pill-label {
  color: var(--dd-theme);
}

.theme-come .pill-label {
  color: var(--come-theme);
}

.theme-shakti .pill-label {
  color: var(--shakti-theme);
}

.theme-alpha .pill-label {
  color: var(--alpha-theme);
}

.theme-jd .pill-label {
  color: var(--jd-theme);
}

.theme-fc .pill-label {
  color: var(--fc-theme);
}

.theme-sathi .pill-label {
  color: var(--sathi-theme);
}

.theme-ajay .pill-label {
  color: var(--ajay-theme);
}

.theme-redbull .pill-label {
  color: var(--redbull-theme);
}

.theme-link .pill-label {
  color: var(--link-theme);
}

.theme-win .pill-label {
  color: var(--win-theme);
}

.theme-wynnpay .pill-label {
  color: var(--wynnpay-theme);
}

.theme-onepay .pill-label {
  color: var(--onepay-theme);
}

/* USDT Button */
.usdt-btn {
  position: relative;
  overflow: hidden;
  flex: 1.1;
  border: none;
  outline: none;
  display: flex;
  align-items: center;
  gap: 5px;
  border-radius: 50px;
  padding: 5px 6px;
  cursor: pointer;
  color: #ffffff;
  transition: transform 0.15s, box-shadow 0.15s;
}

.usdt-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 45%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.45),
      transparent);
  animation: glass-shine 3.5s ease-in-out infinite;
  pointer-events: none;
}

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

.theme-diwa .usdt-btn {
  background: linear-gradient(135deg, #3df182 0%, var(--diwa-theme) 100%);
  box-shadow: 0 4px 12px rgba(0, 177, 75, 0.3);
}

.theme-wecoin .usdt-btn {
  background: linear-gradient(135deg, #60a5fa 0%, var(--wecoin-theme) 100%);
  box-shadow: 0 4px 12px rgba(0, 98, 255, 0.3);
}

.theme-uno .usdt-btn {
  background: linear-gradient(135deg, #ff608c 0%, var(--uno-theme) 100%);
  box-shadow: 0 4px 12px rgba(255, 0, 76, 0.3);
}

.theme-dd .usdt-btn {
  background: linear-gradient(135deg, #ff7fc3 0%, var(--dd-theme) 100%);
  box-shadow: 0 4px 12px rgba(255, 35, 150, 0.3);
}

.theme-come .usdt-btn {
  background: linear-gradient(135deg, #c088ff 0%, var(--come-theme) 100%);
  box-shadow: 0 4px 12px rgba(114, 0, 255, 0.3);
}

.theme-shakti .usdt-btn {
  background: linear-gradient(135deg, #ffa252 0%, var(--shakti-theme) 100%);
  box-shadow: 0 4px 12px rgba(255, 85, 0, 0.3);
}

.theme-alpha .usdt-btn {
  background: linear-gradient(135deg, #c088ff 0%, var(--alpha-theme) 100%);
  box-shadow: 0 4px 12px rgba(114, 0, 255, 0.3);
}

.theme-jd .usdt-btn {
  background: linear-gradient(135deg, #78b4ff 0%, var(--jd-theme) 100%);
  box-shadow: 0 4px 12px rgba(0, 82, 255, 0.3);
}

.theme-fc .usdt-btn {
  background: linear-gradient(135deg, #3df182 0%, var(--fc-theme) 100%);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.theme-sathi .usdt-btn {
  background: linear-gradient(135deg, #ff608c 0%, var(--sathi-theme) 100%);
  box-shadow: 0 4px 12px rgba(255, 0, 76, 0.3);
}

.theme-ajay .usdt-btn {
  background: linear-gradient(135deg, #c088ff 0%, var(--ajay-theme) 100%);
  box-shadow: 0 4px 12px rgba(114, 0, 255, 0.3);
}

.theme-redbull .usdt-btn {
  background: linear-gradient(135deg, #ffa252 0%, var(--redbull-theme) 100%);
  box-shadow: 0 4px 12px rgba(255, 85, 0, 0.3);
}

.theme-link .usdt-btn {
  background: linear-gradient(135deg, #5ea2ff 0%, var(--link-theme) 100%);
  box-shadow: 0 4px 12px rgba(0, 102, 255, 0.3);
}

.theme-win .usdt-btn {
  background: linear-gradient(135deg, #ffe082 0%, var(--win-theme) 100%);
  box-shadow: 0 4px 12px rgba(255, 170, 0, 0.3);
}

.theme-wynnpay .usdt-btn {
  background: linear-gradient(135deg, #818cf8 0%, var(--wynnpay-theme) 100%);
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

.theme-onepay .usdt-btn {
  background: linear-gradient(135deg, #ff608c 0%, var(--onepay-theme) 100%);
  box-shadow: 0 4px 12px rgba(255, 0, 76, 0.3);
}

.usdt-icon-container {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.usdt-dollar {
  font-size: 11px;
  font-weight: 900;
}

.theme-diwa .usdt-dollar {
  color: var(--diwa-theme);
}

.theme-wecoin .usdt-dollar {
  color: var(--wecoin-theme);
}

.theme-uno .usdt-dollar {
  color: var(--uno-theme);
}

.theme-dd .usdt-dollar {
  color: var(--dd-theme);
}

.theme-come .usdt-dollar {
  color: var(--come-theme);
}

.theme-shakti .usdt-dollar {
  color: var(--shakti-theme);
}

.theme-alpha .usdt-dollar {
  color: var(--alpha-theme);
}

.theme-jd .usdt-dollar {
  color: var(--jd-theme);
}

.theme-fc .usdt-dollar {
  color: var(--fc-theme);
}

.theme-sathi .usdt-dollar {
  color: var(--sathi-theme);
}

.theme-ajay .usdt-dollar {
  color: var(--ajay-theme);
}

.theme-redbull .usdt-dollar {
  color: var(--redbull-theme);
}

.theme-link .usdt-dollar {
  color: var(--link-theme);
}

.theme-win .usdt-dollar {
  color: var(--win-theme);
}

.theme-wynnpay .usdt-dollar {
  color: var(--wynnpay-theme);
}

.theme-onepay .usdt-dollar {
  color: var(--onepay-theme);
}

.usdt-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  overflow: hidden;
}

.usdt-value {
  font-size: 11px;
  font-weight: 800;
  line-height: 1.1;
  white-space: nowrap;
}

.usdt-label {
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.3px;
  line-height: 1;
}

/* ── Telegram Channel Button ── */
.telegram-btn-container {
  margin: 12px 0 2px;
  display: flex;
  justify-content: center;
}

.telegram-channel-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 8px 12px;
  border-radius: 50px;
  background: linear-gradient(135deg, #2f80ed 0%, #0088cc 100%);
  color: #ffffff;
  font-size: 9.5px;
  font-weight: 400;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 3px 10px rgba(47, 128, 237, 0.2);
  border: none;
  cursor: pointer;
  z-index: 1;
}

.telegram-channel-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 30%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.4),
      transparent);
  transform: translateX(-150%) skewX(-20deg);
  transition: none;
  pointer-events: none;
  z-index: 2;
}

.telegram-channel-btn:hover::after {
  transform: translateX(400%) skewX(-20deg);
  transition: transform 1.2s ease-in-out;
}

.telegram-channel-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(47, 128, 237, 0.3);
}

.telegram-channel-btn:active {
  transform: translateY(1px) scale(0.98);
  box-shadow: 0 3px 8px rgba(47, 128, 237, 0.15);
}

.telegram-btn-icon {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}

/* ── Bottom Banner Container ── */
.bottom-banner-container {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.5);
  margin-top: 4px;
  aspect-ratio: 16 / 6;
}

/* ── Bottom Actions (Instagram & Remove Risk) ── */
.bottom-actions-container {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}

.bottom-action-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 50px;
  font-size: 9.5px;
  font-weight: 400;
  text-decoration: none;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.bottom-action-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.35),
      transparent);
  transform: translateX(-150%) skewX(-20deg);
  transition: none;
  pointer-events: none;
  z-index: 2;
}

.bottom-action-btn:hover::after {
  transform: translateX(300%) skewX(-20deg);
  transition: transform 0.8s ease-in-out;
}

.bottom-action-btn:hover {
  transform: translateY(-2px);
}

.bottom-action-btn:active {
  transform: translateY(1px) scale(0.97);
}

.instagram-btn {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  box-shadow: 0 3px 10px rgba(220, 39, 67, 0.2);
}

.instagram-btn:hover {
  box-shadow: 0 6px 15px rgba(220, 39, 67, 0.35);
}

.risk-btn {
  background: linear-gradient(135deg, #ff004c 0%, #cc0000 100%);
  box-shadow: 0 3px 10px rgba(255, 0, 76, 0.2);
}

.risk-btn:hover {
  box-shadow: 0 6px 15px rgba(255, 0, 76, 0.35);
}

.instagram-icon,
.risk-icon {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}

/* Shine animation container */
.shine-container {
  position: relative;
  overflow: hidden;
}

.shine {
  display: none;
}

@keyframes glass-shine {
  0% {
    transform: translateX(-150%) skewX(-20deg);
  }

  55%,
  100% {
    transform: translateX(250%) skewX(-20deg);
  }
}

/* ── Animated Badges ── */
.badge-viral svg {
  animation: bounce-viral 1.5s infinite ease-in-out;
}

@keyframes bounce-viral {

  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-1.5px) scale(1.1);
  }
}

.badge-trending-pink svg,
.badge-trending-blue svg {
  animation: pulse-trending 1.5s infinite ease-in-out;
}

@keyframes pulse-trending {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.2) translate(1px, -1px);
  }
}

.badge-dot {
  width: 5px;
  height: 5px;
  background: #000000;
  border-radius: 50%;
  animation: pulse-dot-beta 1.2s infinite ease-in-out;
}

@keyframes pulse-dot-beta {
  0% {
    transform: scale(0.85);
    opacity: 0.5;
  }

  50% {
    transform: scale(1.25);
    opacity: 1;
  }

  100% {
    transform: scale(0.85);
    opacity: 0.5;
  }
}



/* ── Responsive Spacing ── */
@media (min-width: 400px) {

  .stat-pill,
  .usdt-btn {
    padding: 6px 8px;
    gap: 6px;
  }

  .pill-icon-container,
  .usdt-icon-container {
    width: 26px;
    height: 26px;
  }

  .pill-value,
  .usdt-value {
    font-size: 11px;
  }

  .pill-label,
  .usdt-label {
    font-size: 8px;
  }
}

/* ── Leaderboard Section ── */
.leaderboard-container {
  background: linear-gradient(185deg, #ffffff 0%, #f8fafc 60%, #f1f5f9 100%);
  border-radius: 32px;
  padding: 32px 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(15, 23, 42, 0.04);
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 12px;
  position: relative;
  overflow: hidden;
}

/* Header */
.leaderboard-header-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.leaderboard-header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.trophy-box-purple {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, #6D5BFF 0%, #4F46E5 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.25);
}

.icon-trophy-gold {
  width: 22px;
  height: 22px;
  color: #FFB800;
  filter: drop-shadow(0 2px 4px rgba(255, 184, 0, 0.4));
}

.header-text-block {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.leaderboard-title {
  font-size: 14px;
  font-weight: 800;
  color: #0f172a;
  margin: 0;
  letter-spacing: 0.5px;
}

.leaderboard-subtitle {
  font-size: 10px;
  font-weight: 600;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 5px;
}

.sub-dot {
  color: #22C55E;
  font-size: 10px;
}

.leaderboard-header-right {
  display: flex;
  align-items: center;
}

.badge-live-update {
  background: rgba(34, 197, 94, 0.06);
  border: 1px solid rgba(34, 197, 94, 0.15);
  color: #16A34A;
  font-size: 9px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.3px;
}

.live-dot-pulse {
  width: 6px;
  height: 6px;
  background-color: #22C55E;
  border-radius: 50%;
  display: inline-block;
  position: relative;
}

.live-dot-pulse::after {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #22C55E;
  opacity: 0;
  animation: pulse-ring 1.5s infinite ease-out;
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.5);
    opacity: 1;
  }

  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

/* Podium Cards Grid */
.cards-podium-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 8px;
  margin-top: 14px;
}

.podium-card-item {
  flex: 1;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 8px 12px 8px;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
    box-shadow 0.4s ease,
    border-color 0.4s ease,
    background 0.4s ease;
  z-index: 1;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.02);
}

/* Glass reflection effect on cards */
.podium-card-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.25) 0%, transparent 100%);
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  pointer-events: none;
}

/* Card hover lift & glow */
.podium-card-item:hover {
  transform: translateY(-8px) scale(1.02);
  z-index: 3;
}

.rank-1-card {
  height: 235px;
  background: rgba(254, 243, 199, 0.55);
  border: 1.5px solid rgba(245, 158, 11, 0.45);
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.08);
  padding-top: 28px;
  z-index: 2;
}

.rank-1-card:hover {
  background: rgba(254, 243, 199, 0.7);
  border-color: rgba(245, 158, 11, 0.7);
  box-shadow: 0 15px 40px rgba(245, 158, 11, 0.25),
    0 0 20px rgba(255, 184, 0, 0.3);
}

.rank-2-card {
  height: 215px;
  background: rgba(239, 246, 255, 0.55);
  border: 1.5px solid rgba(59, 130, 246, 0.35);
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.05);
}

.rank-2-card:hover {
  background: rgba(239, 246, 255, 0.7);
  border-color: rgba(59, 130, 246, 0.6);
  box-shadow: 0 12px 30px rgba(59, 130, 246, 0.18),
    0 0 15px rgba(79, 70, 229, 0.2);
}

.rank-3-card {
  height: 205px;
  background: rgba(253, 242, 248, 0.65);
  border: 1.5px solid rgba(236, 72, 153, 0.3);
  box-shadow: 0 8px 24px rgba(236, 72, 153, 0.04);
}

.rank-3-card:hover {
  background: rgba(253, 242, 248, 0.8);
  border-color: rgba(236, 72, 153, 0.55);
  box-shadow: 0 12px 30px rgba(236, 72, 153, 0.18),
    0 0 15px rgba(233, 30, 99, 0.2);
}

/* Avatar wrappers */
.podium-avatar-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 8px;
}

/* Webp laurels badge replacement */
.podium-laurels-img {
  position: absolute;
  top: -32px;
  left: 50%;
  transform: translateX(-50%);
  width: 76px;
  height: 76px;
  object-fit: contain;
  pointer-events: none;
  z-index: 2;
  transition: transform 0.4s ease;
}

.podium-card-item:hover .podium-laurels-img {
  transform: translateX(-50%) scale(1.05);
}

/* Leaderboard Link Card (CTA) */
.leaderboard-link-card {
  position: relative;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border-radius: 24px;
  border: 1px solid rgba(79, 70, 229, 0.08);
  box-shadow: 0 10px 30px rgba(79, 70, 229, 0.03), 0 1px 3px rgba(0, 0, 0, 0.01);
  padding: 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  margin-top: 12px;
}

.leaderboard-link-card:hover {
  transform: translateY(-4px);
  border-color: rgba(79, 70, 229, 0.2);
  box-shadow: 0 15px 35px rgba(79, 70, 229, 0.08), 0 5px 15px rgba(0, 0, 0, 0.03);
}

.link-card-glow-bg {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(109, 91, 255, 0.05) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}

.link-card-content {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 12px;
}

.link-card-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.trophy-badge-pulse {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, #6D5BFF 0%, #4F46E5 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.25);
  position: relative;
}

.trophy-badge-pulse::after {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border: 2.5px solid #6D5BFF;
  border-radius: 17px;
  opacity: 0;
  animation: pulse-ring 1.8s infinite ease-out;
}

.link-card-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.link-card-title {
  font-size: 13px;
  font-weight: 850;
  color: #0f172a;
  letter-spacing: 0.3px;
}

.link-card-desc {
  font-size: 9.5px;
  font-weight: 500;
  color: #64748b;
  line-height: 1.3;
}

.link-card-btn {
  background: linear-gradient(135deg, #6D5BFF 0%, #4F46E5 100%);
  color: #ffffff;
  padding: 9px 15px;
  border-radius: 50px;
  font-size: 9.5px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.2);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.link-card-btn:hover {
  background: linear-gradient(135deg, #7c6cff 0%, #5d54ed 100%);
  box-shadow: 0 6px 16px rgba(79, 70, 229, 0.3);
  transform: translateX(2px);
}

.link-card-arrow {
  width: 9px;
  height: 9px;
  transition: transform 0.3s ease;
}

.link-card-btn:hover .link-card-arrow {
  transform: translateX(3px);
}

.podium-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 800;
  font-size: 13px;
  border: 3px solid #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 1;
}

/* Avatar theme gradients */
.green-avatar-theme {
  background: linear-gradient(135deg, #22C55E 0%, #16A34A 100%);
  box-shadow: 0 0 10px rgba(34, 197, 94, 0.2);
}

.blue-avatar-theme {
  background: linear-gradient(135deg, #6D5BFF 0%, #4F46E5 100%);
  box-shadow: 0 0 10px rgba(79, 70, 229, 0.2);
}

.pink-avatar-theme {
  background: linear-gradient(135deg, #FF4D8D 0%, #E91E63 100%);
  box-shadow: 0 0 10px rgba(233, 30, 99, 0.2);
}

/* Texts & blocks inside cards */
.podium-username {
  font-size: 11px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 4px 0;
  max-width: 90px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex-shrink: 0;
}

.podium-app-badge {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  background: #f8fafc;
  border: 0.5px solid rgba(15, 23, 42, 0.06);
  padding: 2.5px 7px;
  border-radius: 6px;
  font-size: 8px;
  font-weight: 700;
  color: #64748b;
  margin-bottom: 12px;
  flex-shrink: 0;
}

.icon-card-app {
  width: 8px;
  height: 8px;
  flex-shrink: 0;
}

/* Provider badge gradient styling */
.provider-diwa {
  color: #16A34A;
  background: rgba(34, 197, 94, 0.04);
  border-color: rgba(34, 197, 94, 0.1);
}

.provider-diwa svg {
  fill: #16A34A;
}

.provider-wecoin {
  color: #4F46E5;
  background: rgba(79, 70, 229, 0.04);
  border-color: rgba(79, 70, 229, 0.1);
}

.provider-wecoin svg {
  stroke: #4F46E5;
}

.provider-uno {
  color: #E91E63;
  background: rgba(233, 30, 99, 0.04);
  border-color: rgba(233, 30, 99, 0.1);
}

.provider-uno svg {
  fill: #E91E63;
}

.podium-earnings-block {
  width: 100%;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 4px;
  color: #ffffff;
  margin-top: auto;
  flex-shrink: 0;
}

.diwa-footer-gradient {
  background: linear-gradient(135deg, #FDBA2D 0%, #F59E0B 100%);
}

.wecoin-footer-gradient {
  background: linear-gradient(135deg, #6D5BFF 0%, #4F46E5 100%);
}

.uno-footer-gradient {
  background: linear-gradient(135deg, #FF4D8D 0%, #E91E63 100%);
}

.block-label {
  font-size: 7px;
  font-weight: 700;
  opacity: 0.85;
  letter-spacing: 0.3px;
}

.block-amount {
  font-size: 11px;
  font-weight: 800;
  margin-top: 1px;
  letter-spacing: -0.1px;
}

/* ── Top List Section (Ranks 4 & 5) ── */
.top-list-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}

.list-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.list-header-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.list-icon-bg {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: rgba(109, 91, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6D5BFF;
  flex-shrink: 0;
}

.list-icon-svg {
  width: 13px;
  height: 13px;
}

.list-title {
  font-size: 11px;
  font-weight: 800;
  color: #6D5BFF;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.view-all-link {
  font-size: 10px;
  font-weight: 700;
  color: #4F46E5;
  cursor: default;
  display: flex;
  align-items: center;
  gap: 3px;
  opacity: 0.8;
}

.arrow-blue {
  font-size: 8px;
}

.list-rows-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.earner-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  padding: 12px 16px;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.04);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.01);
  transition: all 0.3s ease;
}

.earner-row:hover {
  transform: translateY(-2px);
  border-color: rgba(109, 91, 255, 0.15);
  box-shadow: 0 6px 16px rgba(109, 91, 255, 0.06);
}

.row-rank-num {
  font-size: 11px;
  font-weight: 850;
  color: #6D5BFF;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(109, 91, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.row-left-content {
  display: flex;
  align-items: center;
  gap: 12px;
}

.row-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  flex-shrink: 0;
}

.purple-avatar {
  background: linear-gradient(135deg, #a55eea 0%, #6D5BFF 100%);
}

.orange-avatar {
  background: linear-gradient(135deg, #ff9f43 0%, #FF4D8D 100%);
}

.avatar-silhouette {
  width: 15px;
  height: 15px;
  opacity: 0.95;
}

.row-name-app {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.row-username {
  font-size: 11px;
  font-weight: 800;
  color: #0f172a;
}

.row-app-capsule {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 1.5px 6px;
  border-radius: 4px;
  font-size: 8px;
  font-weight: 700;
  width: fit-content;
}

.green-capsule {
  background: rgba(34, 197, 94, 0.06);
  color: #16A34A;
  border: 0.5px solid rgba(34, 197, 94, 0.1);
}

.blue-capsule {
  background: rgba(79, 70, 229, 0.06);
  color: #4F46E5;
  border: 0.5px solid rgba(79, 70, 229, 0.1);
}

.app-crown-icon {
  width: 7px;
  height: 7px;
  color: #16A34A;
}

.app-trend-icon {
  width: 7px;
  height: 7px;
  color: #4F46E5;
}

.row-right-content {
  display: flex;
  align-items: center;
  gap: 8px;
}

.row-amount-trend {
  display: flex;
  align-items: center;
  gap: 2px;
}

.trend-up-arrow {
  width: 10px;
  height: 10px;
  color: #22C55E;
  stroke-width: 3.5px;
}

.row-earned-amount {
  font-size: 11px;
  font-weight: 850;
  color: #0f172a;
}

.trend-pct-badge {
  background: rgba(34, 197, 94, 0.06);
  color: #22C55E;
  font-size: 8px;
  font-weight: 750;
  padding: 2.5px 6px;
  border-radius: 4px;
}

/* ── Bottom Live Activity Alert Ticker ── */
.live-activity-bar {
  background: rgba(34, 197, 94, 0.04);
  border: 1px solid rgba(34, 197, 94, 0.08);
  border-radius: 16px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
}

.activity-left {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  overflow: hidden;
}

.activity-lightning-circle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, #22C55E 0%, #16A34A 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(34, 197, 94, 0.2);
}

.lightning-icon {
  width: 12px;
  height: 12px;
  fill: currentColor;
}

.activity-sparkle {
  font-size: 10px;
  flex-shrink: 0;
}

.activity-ticker-content {
  font-size: 10px;
  font-weight: 600;
  color: #475569;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: opacity 0.3s ease-in-out;
}

.activity-status-btn {
  background: rgba(34, 197, 94, 0.05);
  color: #16A34A;
  font-size: 8px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 6px;
  border: 1.5px solid #ffffff;
  flex-shrink: 0;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.02);
}

/* ── Footer ── */
.footer {
  margin-top: 24px;
  padding: 20px 0 10px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.footer-links {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.footer-link {
  font-size: 11px;
  color: var(--text);
  opacity: 0.6;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
  position: relative;
}

.footer-link:hover {
  opacity: 1;
  color: #ff5500;
}

.footer-copy {
  font-size: 10px;
  color: var(--text);
  opacity: 0.4;
  margin: 0;
}

/* ── Check Salary Button & Modal Styles ── */
.check-salary-btn {
  background: linear-gradient(135deg, #6D5BFF 0%, #4F46E5 100%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  cursor: pointer;
  color: #ffffff;
  font-family: inherit;
  font-size: 9.5px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(109, 91, 255, 0.25), inset 0 1px 1px rgba(255, 255, 255, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.check-salary-btn:hover {
  background: linear-gradient(135deg, #7c6cff 0%, #5d54ed 100%);
  box-shadow: 0 6px 18px rgba(109, 91, 255, 0.35), inset 0 1px 1px rgba(255, 255, 255, 0.3);
  transform: translateY(-1.5px);
}

.check-salary-btn:active {
  transform: translateY(0.5px);
  box-shadow: 0 2px 6px rgba(109, 91, 255, 0.2);
}

.check-salary-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.35),
      transparent);
  transform: translateX(-150%) skewX(-20deg);
  transition: none;
  pointer-events: none;
  z-index: 2;
}

.check-salary-btn:hover::after {
  transform: translateX(300%) skewX(-20deg);
  transition: transform 0.8s ease-in-out;
}

.salary-icon {
  width: 13px;
  height: 13px;
  stroke-width: 2.5;
}

/* Modal Backdrop */
.salary-modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 16px;
}

.salary-modal-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

/* Modal Card */
.salary-modal-card {
  background: #ffffff;
  border-radius: 28px;
  width: 100%;
  max-width: 400px;
  padding: 32px 24px 24px 24px;
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.2);
  border: 1px solid rgba(15, 23, 42, 0.05);
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.salary-modal-backdrop.active .salary-modal-card {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  font-size: 26px;
  color: #64748b;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s ease;
}

.modal-close-btn:hover {
  color: #0f172a;
}

/* Modal Content */
.modal-header {
  text-align: center;
  margin-bottom: 4px;
}

.modal-title {
  font-size: 15px;
  font-weight: 850;
  color: #0f172a;
  letter-spacing: -0.2px;
  margin-bottom: 6px;
}

.modal-desc {
  font-size: 10.5px;
  font-weight: 600;
  color: #64748b;
  line-height: 1.45;
  background: rgba(79, 70, 229, 0.03);
  border: 1px dashed rgba(79, 70, 229, 0.15);
  padding: 8px 12px;
  border-radius: 12px;
}

/* Form Styles */
.modal-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.app-selector-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.selector-label {
  font-size: 8.5px;
  font-weight: 800;
  color: #64748b;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.app-selector-options {
  display: flex;
  gap: 10px;
  width: 100%;
}

.app-selector-option {
  flex: 1;
  cursor: pointer;
  position: relative;
}

.app-selector-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.option-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1.5px solid #e2e8f0;
  background: #f8fafc;
  font-size: 11px;
  font-weight: 750;
  color: #475569;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.app-selector-option input[type="radio"]:checked+.option-card {
  border-color: #6D5BFF;
  background: rgba(109, 91, 255, 0.04);
  color: #6D5BFF;
  box-shadow: 0 4px 12px rgba(109, 91, 255, 0.1);
}

.option-check {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1.5px solid #cbd5e1;
  display: inline-block;
  position: relative;
  transition: all 0.25s ease;
  flex-shrink: 0;
}

.app-selector-option input[type="radio"]:checked+.option-card .option-check {
  border-color: #6D5BFF;
  background: #6D5BFF;
}

.app-selector-option input[type="radio"]:checked+.option-card .option-check::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #ffffff;
}

.upload-dropzone {
  border: 2px dashed rgba(79, 70, 229, 0.25);
  border-radius: 16px;
  padding: 24px 16px;
  text-align: center;
  cursor: pointer;
  background: rgba(79, 70, 229, 0.01);
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.upload-dropzone:hover {
  border-color: #4F46E5;
  background: rgba(79, 70, 229, 0.04);
}

.dropzone-icon {
  width: 36px;
  height: 36px;
  color: #6d5bff;
  transition: transform 0.2s ease;
}

.upload-dropzone:hover .dropzone-icon {
  transform: translateY(-3px);
}

.dropzone-text {
  font-size: 11px;
  font-weight: 750;
  color: #334155;
}

.dropzone-subtext {
  font-size: 8px;
  color: #94a3b8;
  font-weight: 550;
}

.file-input {
  display: none;
}

/* File Preview Area */
.file-preview {
  display: none;
  align-items: center;
  gap: 10px;
  background: rgba(34, 197, 94, 0.04);
  border: 1.5px solid rgba(34, 197, 94, 0.15);
  padding: 10px 14px;
  border-radius: 12px;
}

.file-preview-icon {
  width: 20px;
  height: 20px;
  color: #16A34A;
  flex-shrink: 0;
}

.file-info {
  flex: 1;
  min-width: 0;
}

.file-name {
  font-size: 10.5px;
  font-weight: 750;
  color: #1e293b;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.file-size {
  font-size: 8px;
  font-weight: 550;
  color: #64748b;
  margin-top: 1px;
}

.remove-file-btn {
  background: none;
  border: none;
  color: #ef4444;
  font-size: 18px;
  cursor: pointer;
  line-height: 1;
  padding: 4px;
}

/* Submit Button */
.modal-submit-btn {
  background: linear-gradient(135deg, #6d5bff 0%, #4f46e5 100%);
  color: #ffffff;
  border: none;
  padding: 12.5px;
  border-radius: 14px;
  font-size: 11.5px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.2);
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.modal-submit-btn:hover:not(:disabled) {
  background: linear-gradient(135deg, #7c6cff 0%, #5d54ed 100%);
  box-shadow: 0 6px 16px rgba(79, 70, 229, 0.3);
}

.modal-submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn-spinner {
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #ffffff;
  animation: spin 0.8s infinite linear;
  display: none;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Success View */
.modal-success-content {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: 8px 0;
}

.success-icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #22C55E;
}

.success-icon-circle svg {
  width: 28px;
  height: 28px;
}

.success-title {
  font-size: 15px;
  font-weight: 850;
  color: #0f172a;
}

.success-desc {
  font-size: 10.5px;
  color: #64748b;
  line-height: 1.45;
}

.telegram-channel-box {
  background: rgba(0, 136, 204, 0.04);
  border: 1px solid rgba(0, 136, 204, 0.15);
  border-radius: 12px;
  padding: 12px 14px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  box-sizing: border-box;
}

.tg-box-label {
  font-size: 8px;
  font-weight: 700;
  color: #64748b;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.tg-channel-link {
  color: #0088cc;
  font-size: 11.5px;
  font-weight: 800;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: opacity 0.2s ease;
}

.tg-channel-link:hover {
  opacity: 0.8;
}

.tg-box-icon {
  width: 12px;
  height: 12px;
}

.ticket-box {
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, 0.05);
  padding: 12px 18px;
  border-radius: 12px;
  width: 100%;
}

.ticket-label {
  font-size: 8px;
  font-weight: 700;
  color: #64748b;
  letter-spacing: 0.3px;
  margin-bottom: 2px;
}

.ticket-num {
  font-size: 14px;
  font-weight: 900;
  color: #4F46E5;
  letter-spacing: 0.5px;
}

.success-ok-btn {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #ffffff;
  border: none;
  padding: 12px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
  width: 100%;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.15);
  transition: all 0.2s ease;
}

.success-ok-btn:hover {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  box-shadow: 0 6px 16px rgba(16, 185, 129, 0.25);
}

.check-salary-btn-inline {
  background: linear-gradient(135deg, #6D5BFF 0%, #4F46E5 100%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  cursor: pointer;
  color: #ffffff;
  font-family: inherit;
  font-size: 9px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 14px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(109, 91, 255, 0.25), inset 0 1px 1px rgba(255, 255, 255, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  position: relative;
  z-index: 1;
  letter-spacing: 0.3px;
}

.check-salary-btn-inline:hover {
  background: linear-gradient(135deg, #7c6cff 0%, #5d54ed 100%);
  box-shadow: 0 6px 18px rgba(109, 91, 255, 0.35), inset 0 1px 1px rgba(255, 255, 255, 0.3);
  transform: translateY(-1.5px);
}

.check-salary-btn-inline:active {
  transform: translateY(0.5px);
  box-shadow: 0 2px 6px rgba(109, 91, 255, 0.2);
}

.check-salary-btn-inline::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.35),
      transparent);
  transform: translateX(-150%) skewX(-20deg);
  transition: none;
  pointer-events: none;
  z-index: 2;
}

.check-salary-btn-inline:hover::after {
  transform: translateX(300%) skewX(-20deg);
  transition: transform 0.8s ease-in-out;
}

/* ── Extra Earning Orange Crystal Button ── */
.extra-earning-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 10px 14px;
  border-radius: 50px;
  background: linear-gradient(135deg, #ff9233 0%, #ff5e00 100%);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(255, 94, 0, 0.35), inset 0 1px 1px rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.15);
  cursor: pointer;
  z-index: 1;
  letter-spacing: 0.5px;
}

.extra-earning-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 30%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.55),
      transparent);
  transform: translateX(-150%) skewX(-20deg);
  transition: none;
  pointer-events: none;
  z-index: 2;
}

.extra-earning-btn:hover::after {
  transform: translateX(450%) skewX(-20deg);
  transition: transform 1.2s ease-in-out;
}

.extra-earning-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 94, 0, 0.55), inset 0 1px 2px rgba(255, 255, 255, 0.4);
  background: linear-gradient(135deg, #ffa352 0%, #ff6c14 100%);
}

.extra-earning-btn:active {
  transform: translateY(1px) scale(0.98);
  box-shadow: 0 4px 10px rgba(255, 94, 0, 0.25);
}

/* ── PC & Desktop Responsiveness (min-width: 768px) ── */
@media (min-width: 768px) {

  /* Expand the main container max-width on PC */
  .page {
    max-width: 1000px;
    padding: 24px 20px;
    gap: 20px;
  }

  /* Grid layout for app list: 2 columns on tablets/small PCs */
  .cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  /* Top banner margin correction */
  .top-banner-container {
    margin-bottom: 8px;
  }

  /* Center action elements at the bottom on PC */
  .telegram-btn-container {
    max-width: 440px;
    margin: 16px auto 0;
    width: 100%;
  }

  .leaderboard-link-card {
    max-width: 600px;
    margin: 12px auto 0;
    width: 100%;
  }

  /* Leaderboard Page: Center podium cards wrapper and ranks */
  .leaderboard-container {
    max-width: 850px;
    margin: 16px auto 0;
    width: 100%;
    padding: 32px 24px;
  }

  .cards-podium-wrapper {
    max-width: 600px;
    margin: 16px auto 0;
    width: 100%;
  }

  .top-list-section {
    max-width: 600px;
    margin: 20px auto 0;
    width: 100%;
  }

  .live-activity-bar {
    max-width: 600px;
    margin: 16px auto 0;
    width: 100%;
  }

  /* Earnmafia Page: Center instructions and invite panels */
  .steps-card,
  .share-container {
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
  }
}

/* ── Full Desktop Responsiveness (min-width: 1024px) ── */
@media (min-width: 1024px) {

  /* Main container max-width on full desktop */
  .page {
    max-width: 1140px;
  }

  /* Grid layout for app list: 3 columns on large PC screens */
  .cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

/* ==========================================================================
   ── Earnmafia Page Custom Themes & Variables (Moved from Earnmafia.html) ──
   ========================================================================== */

/* Earnmafia Custom Variables & Theme Overrides */
:root {
  --mafia-theme: #ff5e00;
  --mafia-glow: rgba(255, 94, 0, 0.25);
  --mafia-glow-hover: rgba(255, 94, 0, 0.45);
}

.theme-mafia {
  background: linear-gradient(135deg, #fff7ed 0%, #fffdfa 50%, #ffffff 100%) !important;
  border: 1px solid rgba(255, 94, 0, 0.12) !important;
  box-shadow: var(--shadow) !important;
}

.theme-mafia:hover {
  box-shadow: 0 15px 35px rgba(255, 94, 0, 0.08) !important;
  border-color: rgba(255, 94, 0, 0.25) !important;
}

.theme-mafia .card-waves {
  color: var(--mafia-theme);
}

/* ── SuperMoney #4d43fe Theme Styling & Animations ── */
.theme-supermoney {
  background: linear-gradient(135deg, #f5f4ff 0%, #faf9ff 50%, #ffffff 100%) !important;
  border: 1px solid rgba(77, 67, 254, 0.15) !important;
  box-shadow: var(--shadow) !important;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
  animation: card-glow-pulse 4s infinite ease-in-out;
}

.theme-supermoney:hover {
  transform: translateY(-5px) scale(1.015) !important;
  border-color: rgba(77, 67, 254, 0.45) !important;
  box-shadow: 0 15px 35px rgba(77, 67, 254, 0.15), 0 0 15px rgba(77, 67, 254, 0.1) !important;
}

.theme-supermoney .card-waves {
  color: #4d43fe !important;
}

.theme-supermoney .app-subtitle {
  color: #4d43fe !important;
}

@keyframes card-glow-pulse {

  0%,
  100% {
    box-shadow: 0 10px 30px rgba(77, 67, 254, 0.05);
  }

  50% {
    box-shadow: 0 10px 30px rgba(77, 67, 254, 0.12), inset 0 0 8px rgba(77, 67, 254, 0.03);
    border-color: rgba(77, 67, 254, 0.25);
  }
}

/* Payout Tag Highlighting & Pulsing Animation */
.payout-tag.highlight-reward {
  background: linear-gradient(135deg, #7c73ff 0%, #4d43fe 100%) !important;
  color: #ffffff !important;
  box-shadow: 0 0 12px rgba(77, 67, 254, 0.45) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.35) !important;
  padding: 5px 12px !important;
  font-size: 9.5px !important;
  font-weight: 900 !important;
  animation: reward-pulse 2s infinite ease-in-out;
}

@keyframes reward-pulse {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 12px rgba(77, 67, 254, 0.45);
  }

  50% {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(77, 67, 254, 0.7);
  }
}

/* Blue CTA Button & Glow Animation */
.download-action-btn.blue-btn {
  background: linear-gradient(135deg, #7c73ff 0%, #4d43fe 100%) !important;
  box-shadow: 0 6px 15px rgba(77, 67, 254, 0.3) !important;
  animation: btn-glow 2.5s infinite ease-in-out;
}

.download-action-btn.blue-btn:hover {
  background: linear-gradient(135deg, #938cff 0%, #5a50ff 100%) !important;
  box-shadow: 0 10px 22px rgba(77, 67, 254, 0.45) !important;
}

@keyframes btn-glow {

  0%,
  100% {
    box-shadow: 0 6px 15px rgba(77, 67, 254, 0.3);
  }

  50% {
    box-shadow: 0 6px 20px rgba(77, 67, 254, 0.55), 0 0 10px rgba(77, 67, 254, 0.25);
  }
}

/* ── NAVI #10b981 Theme Styling & Animations ── */
.theme-navi {
  background: linear-gradient(135deg, #ecfdf5 0%, #f6fdfa 50%, #ffffff 100%) !important;
  border: 1px solid rgba(16, 185, 129, 0.15) !important;
  box-shadow: var(--shadow) !important;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
  animation: card-glow-pulse-green 4s infinite ease-in-out;
}

.theme-navi:hover {
  transform: translateY(-5px) scale(1.015) !important;
  border-color: rgba(16, 185, 129, 0.45) !important;
  box-shadow: 0 15px 35px rgba(16, 185, 129, 0.15), 0 0 15px rgba(16, 185, 129, 0.1) !important;
}

.theme-navi .card-waves {
  color: #10b981 !important;
}

.theme-navi .app-subtitle {
  color: #10b981 !important;
}

@keyframes card-glow-pulse-green {

  0%,
  100% {
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.05);
  }

  50% {
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.12), inset 0 0 8px rgba(16, 185, 129, 0.03);
    border-color: rgba(16, 185, 129, 0.25);
  }
}

/* Green Payout Tag Highlighting & Pulsing Animation */
.payout-tag.highlight-reward-green {
  background: linear-gradient(135deg, #34d399 0%, #10b981 100%) !important;
  color: #ffffff !important;
  box-shadow: 0 0 12px rgba(16, 185, 129, 0.45) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.35) !important;
  padding: 5px 12px !important;
  font-size: 9.5px !important;
  font-weight: 900 !important;
  animation: reward-pulse-green 2s infinite ease-in-out;
}

@keyframes reward-pulse-green {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 12px rgba(16, 185, 129, 0.45);
  }

  50% {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.7);
  }
}

/* Green CTA Button & Glow Animation */
.download-action-btn.green-btn {
  background: linear-gradient(135deg, #34d399 0%, #10b981 100%) !important;
  box-shadow: 0 6px 15px rgba(16, 185, 129, 0.3) !important;
  animation: btn-glow-green 2.5s infinite ease-in-out;
}

.download-action-btn.green-btn:hover {
  background: linear-gradient(135deg, #6ee7b7 0%, #059669 100%) !important;
  box-shadow: 0 10px 22px rgba(16, 185, 129, 0.45) !important;
}

@keyframes btn-glow-green {

  0%,
  100% {
    box-shadow: 0 6px 15px rgba(16, 185, 129, 0.3);
  }

  50% {
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.55), 0 0 10px rgba(16, 185, 129, 0.25);
  }
}

/* Steps Layout */
.steps-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 20px;
  box-shadow: var(--shadow);
  border: 1px solid #f1f5f9;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.steps-title {
  font-size: 13px;
  font-weight: 800;
  color: #0f172a;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.steps-indicator {
  width: 6px;
  height: 12px;
  background: var(--mafia-theme);
  border-radius: 2px;
  display: inline-block;
}

.step-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.step-number {
  background: rgba(255, 94, 0, 0.1);
  color: var(--mafia-theme);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 900;
  flex-shrink: 0;
}

.step-text h4 {
  font-size: 12px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 2px;
}

.step-text p {
  font-size: 10px;
  color: #64748b;
  line-height: 1.4;
}

/* Payout Banner */
.payout-tag {
  background: linear-gradient(135deg, #ff9040 0%, #ff5e00 100%);
  color: #ffffff;
  font-size: 9px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 4px 10px rgba(255, 94, 0, 0.2);
}

/* Download Action Button */
.download-action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px;
  border-radius: 16px;
  background: linear-gradient(135deg, #ff9040 0%, #ff5e00 100%);
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 8px 20px rgba(255, 94, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  text-align: center;
  letter-spacing: 0.5px;
}

.download-action-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(255, 94, 0, 0.45);
  background: linear-gradient(135deg, #ffa352 0%, #ff6c14 100%);
}

.download-action-btn:active {
  transform: translateY(1px);
  box-shadow: 0 6px 12px rgba(255, 94, 0, 0.2);
}

/* ── Countdown Box Styling ── */
.countdown-container {
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  border: 1px solid rgba(77, 67, 254, 0.12);
  box-shadow: var(--shadow);
  border-radius: 24px;
  padding: 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.countdown-title {
  font-size: 11px;
  font-weight: 850;
  color: #4d43fe;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
}

.countdown-timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.timer-segment {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 58px;
}

.timer-num {
  font-size: 32px;
  font-weight: 900;
  color: #0f172a;
  font-family: monospace;
  line-height: 1.1;
  letter-spacing: -1px;
  text-shadow: 0 2px 10px rgba(77, 67, 254, 0.1);
}

.timer-label {
  font-size: 8px;
  font-weight: 800;
  color: #64748b;
  letter-spacing: 0.5px;
  margin-top: 3px;
}

.timer-colon {
  font-size: 26px;
  font-weight: 900;
  color: #4d43fe;
  opacity: 0.6;
  line-height: 1;
  margin-top: -12px;
  animation: flash-colon 1.5s infinite ease-in-out;
}

@keyframes flash-colon {

  0%,
  100% {
    opacity: 0.2;
  }

  50% {
    opacity: 0.8;
  }
}

/* On PC screens, center the countdown box properly */
@media (min-width: 768px) {
  .countdown-container {
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
    padding: 24px;
  }

  .timer-num {
    font-size: 38px;
  }
}

/* ── BHIM UPI #0654a4 Theme Styling & Animations ── */
.theme-bhim {
  background: linear-gradient(135deg, #eff6ff 0%, #f8fafc 50%, #ffffff 100%) !important;
  border: 1px solid rgba(6, 84, 164, 0.15) !important;
  box-shadow: var(--shadow) !important;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
  animation: card-glow-pulse-blue 4s infinite ease-in-out;
}

.theme-bhim:hover {
  transform: translateY(-5px) scale(1.015) !important;
  border-color: rgba(6, 84, 164, 0.45) !important;
  box-shadow: 0 15px 35px rgba(6, 84, 164, 0.15), 0 0 15px rgba(6, 84, 164, 0.1) !important;
}

.theme-bhim .card-waves {
  color: #0654a4 !important;
}

.theme-bhim .app-subtitle {
  color: #0654a4 !important;
}

@keyframes card-glow-pulse-blue {

  0%,
  100% {
    box-shadow: 0 10px 30px rgba(6, 84, 164, 0.05);
  }

  50% {
    box-shadow: 0 10px 30px rgba(6, 84, 164, 0.12), inset 0 0 8px rgba(6, 84, 164, 0.03);
    border-color: rgba(6, 84, 164, 0.25);
  }
}

.payout-tag.highlight-reward-blue {
  background: linear-gradient(135deg, #3b82f6 0%, #0654a4 100%) !important;
  color: #ffffff !important;
  box-shadow: 0 0 12px rgba(6, 84, 164, 0.45) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.35) !important;
  padding: 5px 12px !important;
  font-size: 9.5px !important;
  font-weight: 900 !important;
  animation: reward-pulse-blue 2s infinite ease-in-out;
}

@keyframes reward-pulse-blue {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 12px rgba(6, 84, 164, 0.45);
  }

  50% {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(6, 84, 164, 0.7);
  }
}

.download-action-btn.blue-bhim-btn {
  background: linear-gradient(135deg, #3b82f6 0%, #0654a4 100%) !important;
  box-shadow: 0 6px 15px rgba(6, 84, 164, 0.3) !important;
  animation: btn-glow-blue 2.5s infinite ease-in-out;
}

.download-action-btn.blue-bhim-btn:hover {
  background: linear-gradient(135deg, #60a5fa 0%, #1d4ed8 100%) !important;
  box-shadow: 0 10px 22px rgba(6, 84, 164, 0.45) !important;
}

@keyframes btn-glow-blue {

  0%,
  100% {
    box-shadow: 0 6px 15px rgba(6, 84, 164, 0.3);
  }

  50% {
    box-shadow: 0 6px 20px rgba(6, 84, 164, 0.55), 0 0 10px rgba(6, 84, 164, 0.25);
  }
}

/* ── Kotak811 #e81f26 Theme Styling & Animations ── */
.theme-kotak {
  background: linear-gradient(135deg, #fff5f5 0%, #fffbfb 50%, #ffffff 100%) !important;
  border: 1px solid rgba(232, 31, 38, 0.15) !important;
  box-shadow: var(--shadow) !important;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
  animation: card-glow-pulse-red 4s infinite ease-in-out;
}

.theme-kotak:hover {
  transform: translateY(-5px) scale(1.015) !important;
  border-color: rgba(232, 31, 38, 0.45) !important;
  box-shadow: 0 15px 35px rgba(232, 31, 38, 0.15), 0 0 15px rgba(232, 31, 38, 0.1) !important;
}

.theme-kotak .card-waves {
  color: #e81f26 !important;
}

.theme-kotak .app-subtitle {
  color: #e81f26 !important;
}

@keyframes card-glow-pulse-red {

  0%,
  100% {
    box-shadow: 0 10px 30px rgba(232, 31, 38, 0.05);
  }

  50% {
    box-shadow: 0 10px 30px rgba(232, 31, 38, 0.12), inset 0 0 8px rgba(232, 31, 38, 0.03);
    border-color: rgba(232, 31, 38, 0.25);
  }
}

.payout-tag.highlight-reward-red {
  background: linear-gradient(135deg, #ff5b5b 0%, #e81f26 100%) !important;
  color: #ffffff !important;
  box-shadow: 0 0 12px rgba(232, 31, 38, 0.45) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.35) !important;
  padding: 5px 12px !important;
  font-size: 9.5px !important;
  font-weight: 900 !important;
  animation: reward-pulse-red 2s infinite ease-in-out;
}

@keyframes reward-pulse-red {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 12px rgba(232, 31, 38, 0.45);
  }

  50% {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(232, 31, 38, 0.7);
  }
}

.download-action-btn.red-btn {
  background: linear-gradient(135deg, #ff5b5b 0%, #e81f26 100%) !important;
  box-shadow: 0 6px 15px rgba(232, 31, 38, 0.3) !important;
  animation: btn-glow-red 2.5s infinite ease-in-out;
}

.download-action-btn.red-btn:hover {
  background: linear-gradient(135deg, #ff7878 0%, #cf1118 100%) !important;
  box-shadow: 0 10px 22px rgba(232, 31, 38, 0.45) !important;
}

@keyframes btn-glow-red {

  0%,
  100% {
    box-shadow: 0 6px 15px rgba(232, 31, 38, 0.3);
  }

  50% {
    box-shadow: 0 6px 20px rgba(232, 31, 38, 0.55), 0 0 10px rgba(232, 31, 38, 0.25);
  }
}

/* Kotak811 Responsive & Layout Improvements */
.theme-kotak .register-code-row {
  flex-wrap: wrap !important;
  row-gap: 4px !important;
}

.theme-kotak .badge-zero-balance {
  white-space: nowrap !important;
  display: inline-block !important;
}

.theme-kotak .pill-value {
  white-space: normal !important;
  font-size: 8.5px !important;
  line-height: 1.2 !important;
  word-break: break-word !important;
}

.theme-kotak .stat-pill {
  min-height: 38px !important;
  align-items: center !important;
}

@media (max-width: 420px) {
  .theme-kotak .card-top {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: flex-start !important;
    gap: 8px !important;
  }

  .theme-kotak .app-info {
    flex: 1 1 150px !important;
  }

  .theme-kotak .payout-tag.highlight-reward-red {
    flex-shrink: 0 !important;
    margin-left: 66px !important;
    margin-top: 4px !important;
  }

  .theme-kotak .app-name {
    font-size: 18px !important;
  }

  .theme-kotak .app-subtitle {
    font-size: 8.5px !important;
    letter-spacing: 0.4px !important;
  }

  .theme-kotak .badge-zero-balance {
    font-size: 7.5px !important;
    padding: 2px 6px !important;
  }
}

/* ── Airtel Payments Bank #e30613 Theme Styling & Animations ── */
.theme-airtel {
  background: linear-gradient(135deg, #fff5f5 0%, #fffbfb 50%, #ffffff 100%) !important;
  border: 1px solid rgba(227, 6, 19, 0.15) !important;
  box-shadow: var(--shadow) !important;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
  animation: card-glow-pulse-airtel 4s infinite ease-in-out;
}

.theme-airtel:hover {
  transform: translateY(-5px) scale(1.015) !important;
  border-color: rgba(227, 6, 19, 0.45) !important;
  box-shadow: 0 15px 35px rgba(227, 6, 19, 0.15), 0 0 15px rgba(227, 6, 19, 0.1) !important;
}

.theme-airtel .card-waves {
  color: #e30613 !important;
}

.theme-airtel .app-subtitle {
  color: #e30613 !important;
}

@keyframes card-glow-pulse-airtel {

  0%,
  100% {
    box-shadow: 0 10px 30px rgba(227, 6, 19, 0.05);
  }

  50% {
    box-shadow: 0 10px 30px rgba(227, 6, 19, 0.12), inset 0 0 8px rgba(227, 6, 19, 0.03);
    border-color: rgba(227, 6, 19, 0.25);
  }
}

.payout-tag.highlight-reward-airtel {
  background: linear-gradient(135deg, #ff5b5b 0%, #e30613 100%) !important;
  color: #ffffff !important;
  box-shadow: 0 0 12px rgba(227, 6, 19, 0.45) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.35) !important;
  padding: 5px 12px !important;
  font-size: 9.5px !important;
  font-weight: 900 !important;
  animation: reward-pulse-airtel 2s infinite ease-in-out;
}

@keyframes reward-pulse-airtel {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 12px rgba(227, 6, 19, 0.45);
  }

  50% {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(227, 6, 19, 0.7);
  }
}

.download-action-btn.airtel-btn {
  background: linear-gradient(135deg, #ff5b5b 0%, #e30613 100%) !important;
  box-shadow: 0 6px 15px rgba(227, 6, 19, 0.3) !important;
  animation: btn-glow-airtel 2.5s infinite ease-in-out;
}

.download-action-btn.airtel-btn:hover {
  background: linear-gradient(135deg, #ff7878 0%, #cf1118 100%) !important;
  box-shadow: 0 10px 22px rgba(227, 6, 19, 0.45) !important;
}

@keyframes btn-glow-airtel {

  0%,
  100% {
    box-shadow: 0 6px 15px rgba(227, 6, 19, 0.3);
  }

  50% {
    box-shadow: 0 6px 20px rgba(227, 6, 19, 0.55), 0 0 10px rgba(227, 6, 19, 0.25);
  }
}

/* Airtel Payments Bank Responsive & Layout Improvements */
.theme-airtel .register-code-row {
  flex-wrap: wrap !important;
  row-gap: 4px !important;
}

.theme-airtel .badge-zero-balance {
  white-space: nowrap !important;
  display: inline-block !important;
}

.theme-airtel .pill-value {
  white-space: normal !important;
  font-size: 8.5px !important;
  line-height: 1.2 !important;
  word-break: break-word !important;
}

.theme-airtel .stat-pill {
  min-height: 38px !important;
  align-items: center !important;
}

@media (max-width: 420px) {
  .theme-airtel .card-top {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: flex-start !important;
    gap: 8px !important;
  }

  .theme-airtel .app-info {
    flex: 1 1 150px !important;
  }

  .theme-airtel .payout-tag.highlight-reward-airtel {
    flex-shrink: 0 !important;
    margin-left: 66px !important;
    margin-top: 4px !important;
  }

  .theme-airtel .app-name {
    font-size: 18px !important;
  }

  .theme-airtel .app-subtitle {
    font-size: 8.5px !important;
    letter-spacing: 0.4px !important;
  }

  .theme-airtel .badge-zero-balance {
    font-size: 7.5px !important;
    padding: 2px 6px !important;
  }
}

/* ── SBM Novio Credit Card Theme Styling & Animations ── */
.theme-novio {
  background: linear-gradient(135deg, #f5f3ff 0%, #faf9ff 50%, #ffffff 100%) !important;
  border: 1px solid rgba(99, 102, 241, 0.15) !important;
  box-shadow: var(--shadow) !important;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
  animation: card-glow-pulse-novio 4s infinite ease-in-out;
}

.theme-novio:hover {
  transform: translateY(-5px) scale(1.015) !important;
  border-color: rgba(99, 102, 241, 0.45) !important;
  box-shadow: 0 15px 35px rgba(99, 102, 241, 0.15), 0 0 15px rgba(99, 102, 241, 0.1) !important;
}

.theme-novio .card-waves {
  color: #6366f1 !important;
}

.theme-novio .app-subtitle {
  color: #4f46e5 !important;
}

.theme-novio .reg-value {
  color: #4f46e5 !important;
  background: rgba(79, 70, 229, 0.08) !important;
}

.theme-novio .badge-zero-balance {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%) !important;
  color: #ffffff !important;
  box-shadow: 0 2px 5px rgba(245, 158, 11, 0.25) !important;
}

@keyframes card-glow-pulse-novio {
  0%, 100% {
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.08);
  }
  50% {
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.18), inset 0 0 8px rgba(99, 102, 241, 0.05);
    border-color: rgba(99, 102, 241, 0.35);
  }
}

.payout-tag.highlight-reward-novio {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%) !important;
  color: #ffffff !important;
  box-shadow: 0 0 12px rgba(245, 158, 11, 0.45) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.35) !important;
  padding: 5px 12px !important;
  font-size: 9.5px !important;
  font-weight: 900 !important;
  animation: reward-pulse-novio 2s infinite ease-in-out;
}

@keyframes reward-pulse-novio {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 12px rgba(245, 158, 11, 0.45);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.7);
  }
}

.download-action-btn.novio-btn {
  background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%) !important;
  box-shadow: 0 6px 15px rgba(79, 70, 229, 0.3) !important;
  animation: btn-glow-novio 2.5s infinite ease-in-out;
}

.download-action-btn.novio-btn:hover {
  background: linear-gradient(135deg, #818cf8 0%, #4338ca 100%) !important;
  box-shadow: 0 10px 22px rgba(79, 70, 229, 0.45) !important;
}

@keyframes btn-glow-novio {
  0%, 100% {
    box-shadow: 0 6px 15px rgba(79, 70, 229, 0.3);
  }
  50% {
    box-shadow: 0 6px 20px rgba(79, 70, 229, 0.55), 0 0 10px rgba(79, 70, 229, 0.25);
  }
}

/* SBM Novio Responsive Layout Improvements */
.theme-novio .register-code-row {
  flex-wrap: wrap !important;
  row-gap: 4px !important;
}

.theme-novio .badge-zero-balance {
  white-space: nowrap !important;
  display: inline-block !important;
}

.theme-novio .pill-value {
  white-space: normal !important;
  font-size: 8.5px !important;
  line-height: 1.2 !important;
  word-break: break-word !important;
}

.theme-novio .stat-pill {
  min-height: 38px !important;
  align-items: center !important;
}

@media (max-width: 420px) {
  .theme-novio .card-top {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: flex-start !important;
    gap: 8px !important;
  }

  .theme-novio .app-info {
    flex: 1 1 150px !important;
  }

  .theme-novio .payout-tag.highlight-reward-novio {
    flex-shrink: 0 !important;
    margin-left: 66px !important;
    margin-top: 4px !important;
  }

  .theme-novio .app-name {
    font-size: 18px !important;
  }

  .theme-novio .app-subtitle {
    font-size: 8.5px !important;
    letter-spacing: 0.4px !important;
  }

  .theme-novio .badge-zero-balance {
    font-size: 7.5px !important;
    padding: 2px 6px !important;
  }
}

/* ── Earnmafia Grid View Card Alignment ── */
.cards.grid-view .app-card {
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
}

.cards.grid-view .card-stats {
  margin-top: auto !important;
}

/* ── Earnmafia Mobile Grid View ── */
@media (max-width: 767px) {
  .cards.grid-view {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }

  .cards.grid-view .app-card {
    padding: 14px 12px 12px !important;
    gap: 12px !important;
    border-radius: 20px !important;
  }

  .cards.grid-view .card-top {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 8px !important;
    margin-bottom: 0px !important;
  }

  .cards.grid-view .app-logo {
    width: 48px !important;
    height: 48px !important;
    border-radius: 12px !important;
  }

  .cards.grid-view .app-name {
    font-size: 14px !important;
    line-height: 1.2 !important;
  }

  .cards.grid-view .app-subtitle {
    font-size: 8px !important;
    letter-spacing: 0.3px !important;
  }

  .cards.grid-view .register-code-row {
    font-size: 8.5px !important;
    margin-top: 2px !important;
    gap: 3px !important;
  }

  .cards.grid-view .reg-value {
    font-size: 8.5px !important;
    padding: 1px 4px !important;
  }

  .cards.grid-view .payout-tag {
    font-size: 8.5px !important;
    padding: 3px 8px !important;
    align-self: flex-start !important;
    margin-top: 4px !important;
  }

  .cards.grid-view .badge-zero-balance {
    font-size: 7.5px !important;
    padding: 2px 6px !important;
  }

  .cards.grid-view .card-stats {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 6px !important;
    margin-bottom: 0px !important;
  }

  .cards.grid-view .stat-pill {
    padding: 4px 6px !important;
    gap: 4px !important;
    border-radius: 20px !important;
    min-height: auto !important;
  }

  .cards.grid-view .pill-icon-container {
    width: 20px !important;
    height: 20px !important;
  }

  .cards.grid-view .icon-pill {
    width: 10px !important;
    height: 10px !important;
  }

  .cards.grid-view .pill-value {
    font-size: 8px !important;
    white-space: nowrap !important;
  }

  .cards.grid-view .pill-label {
    font-size: 6px !important;
  }

  .cards.grid-view .download-action-btn {
    padding: 10px !important;
    font-size: 10px !important;
    border-radius: 12px !important;
    gap: 6px !important;
  }

  .cards.grid-view .download-action-btn svg {
    width: 10px !important;
    height: 10px !important;
  }
}