/* Funky Neo-Pop Component Styles for CLUBR */

/* Gamified Header & Mode Switcher */
.header-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mode-toggle-pill {
  display: flex;
  background: var(--panel2);
  border: 1.5px solid var(--line);
  border-radius: 99px;
  padding: 3px;
  cursor: pointer;
  user-select: none;
}

.mode-btn {
  padding: 6px 12px;
  border-radius: 99px;
  font-size: 11px;
  font-weight: 850;
  color: var(--muted);
  transition: all var(--transition-fast);
}

.mode-btn.active {
  background: var(--pink);
  color: #fff;
  box-shadow: 0 0 14px var(--pink-glow);
}

/* Gamify Streak & Coin Bar (Cyber Yellow & Flame Red) */
.gamify-bar {
  display: flex;
  gap: 10px;
  margin-bottom: 22px;
}

.streak-pill {
  flex: 1;
  background: linear-gradient(135deg, #2a1114, #180d10);
  border: 1.5px solid var(--red);
  box-shadow: 0 4px 16px var(--red-glow);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: transform var(--transition-fast);
}

.streak-pill:active {
  transform: scale(0.97);
}

.streak-pill.claimed {
  border-color: var(--green);
  box-shadow: 0 4px 16px var(--green-glow);
  background: linear-gradient(135deg, #092116, #0e1512);
}

.flame-icon {
  font-size: 22px;
  filter: drop-shadow(0 0 8px rgba(255, 56, 56, 0.6));
}

.streak-info {
  display: flex;
  flex-direction: column;
}

.streak-info b {
  font-size: 13px;
  font-weight: 900;
  color: #fff;
}

.streak-info small {
  font-size: 11px;
  font-weight: 800;
  color: var(--yellow);
}

.streak-pill.claimed small {
  color: var(--green);
}

.wallet-pill {
  background: linear-gradient(135deg, #2b220a, #18150c);
  border: 1.5px solid var(--yellow);
  box-shadow: 0 4px 16px var(--yellow-glow);
  border-radius: var(--radius-md);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: default;
}

.coin-icon {
  font-size: 20px;
  animation: coinBounce 2s infinite ease-in-out;
}

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

.wallet-pill b {
  font-size: 14px;
  font-weight: 950;
  color: var(--yellow);
}

/* Sachet Micro-Drops (₹9 / ₹19 Unlocks with Blurred Curiosity Teaser) */
.sachet-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 26px;
}

.sachet-card {
  background: var(--panel);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.sachet-card:hover {
  border-color: var(--pink);
  box-shadow: 0 8px 30px rgba(255, 46, 147, 0.2);
}

.sachet-media {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.sachet-media.locked .blurred-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: blur(16px);
  transform: scale(1.18);
}

.lock-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 8, 14, 0.65);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  z-index: 2;
}

.lock-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.75);
  border: 2px solid var(--pink);
  display: grid;
  place-items: center;
  font-size: 24px;
  box-shadow: 0 0 20px var(--pink-glow);
}

.social-proof-tag {
  background: rgba(0, 0, 0, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  padding: 5px 12px;
  border-radius: 99px;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.02em;
}

.pass-duration-badge {
  background: var(--red-dark);
  border: 1px solid var(--red);
  color: #ff8a8a;
  padding: 4px 10px;
  border-radius: 99px;
  font-size: 10px;
  font-weight: 900;
  box-shadow: 0 0 10px var(--red-glow);
}

.sachet-media.unlocked img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.unlocked-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--green);
  color: #042517;
  padding: 5px 12px;
  border-radius: 99px;
  font-size: 11px;
  font-weight: 950;
  box-shadow: 0 0 14px var(--green-glow);
  z-index: 3;
}

.countdown-badge {
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
  background: rgba(7, 8, 14, 0.88);
  border: 1.5px solid var(--red);
  box-shadow: 0 0 16px var(--red-glow);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  padding: 7px 12px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 900;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 3;
}

.timer-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 10px var(--red);
  animation: pulse 1s infinite alternate;
}

@keyframes pulse {
  from { opacity: 0.4; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1.3); }
}

.sachet-content {
  padding: 16px;
}

.sachet-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.creator-tag {
  font-size: 13px;
  font-weight: 900;
  color: var(--pink);
  text-shadow: 0 0 10px var(--pink-glow);
}

.type-tag {
  font-size: 10px;
  font-weight: 800;
  color: var(--yellow);
  background: var(--panel2);
  border: 1px solid var(--line-light);
  padding: 3px 8px;
  border-radius: 6px;
}

.sachet-title {
  font-size: 16px;
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 4px;
  color: #ffffff;
}

.sachet-desc {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.4;
  margin-bottom: 12px;
}

/* 5-Second Voice Teaser Audio Bar */
.teaser-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 46, 147, 0.1);
  border: 1px dashed var(--pink);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  margin-bottom: 12px;
}

.teaser-btn {
  background: var(--pink);
  color: #fff;
  border-radius: 99px;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 850;
  display: flex;
  align-items: center;
  gap: 4px;
  box-shadow: 0 0 10px var(--pink-glow);
}

.sound-wave {
  display: flex;
  align-items: center;
  gap: 2px;
}

.sound-wave span {
  width: 3px;
  height: 12px;
  background: var(--yellow);
  border-radius: 99px;
  animation: wave 1s infinite alternate ease-in-out;
}

.sound-wave span:nth-child(2) { animation-delay: 0.2s; height: 18px; }
.sound-wave span:nth-child(3) { animation-delay: 0.4s; height: 10px; }
.sound-wave span:nth-child(4) { animation-delay: 0.1s; height: 16px; }

@keyframes wave {
  0% { transform: scaleY(0.4); }
  100% { transform: scaleY(1.2); }
}

.access-notice {
  font-size: 11px;
  font-weight: 750;
  color: var(--red);
  background: rgba(255, 56, 56, 0.12);
  border: 1px dashed rgba(255, 56, 56, 0.35);
  padding: 6px 10px;
  border-radius: 6px;
  margin-bottom: 12px;
}

.expired-alert {
  font-size: 11px;
  font-weight: 800;
  color: var(--yellow);
  background: rgba(255, 230, 0, 0.14);
  border: 1px solid rgba(255, 230, 0, 0.4);
  padding: 8px 12px;
  border-radius: 8px;
  margin-bottom: 12px;
}

.sachet-actions {
  display: flex;
  gap: 10px;
}

.btn-upi-unlock {
  flex: 1.3;
  height: 46px;
  background: linear-gradient(135deg, var(--pink), #e01278);
  color: #fff;
  font-size: 13px;
  font-weight: 950;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 18px var(--pink-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.btn-upi-unlock:hover {
  filter: brightness(1.1);
}

.btn-coin-unlock {
  flex: 0.8;
  height: 46px;
  background: var(--yellow-dark);
  border: 1.5px solid var(--yellow);
  color: var(--yellow);
  font-size: 13px;
  font-weight: 900;
  border-radius: var(--radius-md);
  box-shadow: 0 0 12px var(--yellow-glow);
}

.sachet-open-btn {
  width: 100%;
  height: 46px;
  background: #ffffff;
  color: #07080e;
  font-size: 13px;
  font-weight: 950;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 18px rgba(255, 255, 255, 0.25);
}

/* Quick Micro-Tips Shelf (Funky Colors) */
.tip-shelf-card {
  background: var(--panel);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 18px;
  margin-bottom: 24px;
}

.tip-shelf-header h3 {
  font-size: 16px;
  font-weight: 900;
  color: #fff;
}

.tip-shelf-header p {
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 2px;
  margin-bottom: 14px;
}

.tip-buttons-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.tip-btn {
  background: var(--panel2);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-md);
  padding: 12px 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.tip-btn:nth-child(1):hover { border-color: var(--yellow); box-shadow: 0 0 12px var(--yellow-glow); }
.tip-btn:nth-child(2):hover { border-color: var(--pink); box-shadow: 0 0 12px var(--pink-glow); }
.tip-btn:nth-child(3):hover { border-color: var(--red); box-shadow: 0 0 12px var(--red-glow); }
.tip-btn:nth-child(4):hover { border-color: var(--green); box-shadow: 0 0 12px var(--green-glow); }

.tip-btn:active {
  transform: scale(0.92);
}

.tip-icon {
  font-size: 24px;
}

.tip-name {
  font-size: 11px;
  font-weight: 800;
  color: var(--text-secondary);
}

.tip-price {
  font-size: 12px;
  font-weight: 950;
  color: var(--yellow);
}

/* Top Supporters / Deewane Leaderboard */
.leaderboard-card {
  background: var(--panel);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 18px;
  margin-bottom: 24px;
}

.leaderboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.leaderboard-header h3 {
  font-size: 15px;
  font-weight: 900;
  color: #fff;
}

.leaderboard-header span {
  font-size: 11px;
  color: var(--yellow);
  font-weight: 900;
  text-shadow: 0 0 8px var(--yellow-glow);
}

.fans-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fan-row {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--panel2);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 10px 14px;
}

.fan-rank {
  font-size: 13px;
  font-weight: 950;
  width: 24px;
  text-align: center;
}

.fan-rank.rank-1 { color: var(--yellow); text-shadow: 0 0 8px var(--yellow-glow); }
.fan-rank.rank-2 { color: #e2e8f0; }
.fan-rank.rank-3 { color: #f97316; }

.fan-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #252e42;
  border: 1.5px solid var(--line-light);
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 13px;
  color: #fff;
  flex-shrink: 0;
}

.fan-details {
  flex: 1;
  min-width: 0;
}

.fan-name-row {
  display: flex;
  align-items: center;
  gap: 6px;
}

.fan-name-row b {
  font-size: 13px;
  font-weight: 850;
  color: #fff;
}

.fan-city {
  font-size: 10px;
  color: var(--muted);
}

.fan-badge {
  display: block;
  font-size: 10px;
  color: var(--blue-verified);
  font-weight: 800;
}

.fan-amount {
  font-size: 14px;
  font-weight: 950;
  color: var(--green);
  text-shadow: 0 0 10px var(--green-glow);
}

/* Floating Reaction Emojis */
.floating-emoji {
  position: fixed;
  bottom: 90px;
  font-size: 32px;
  pointer-events: none;
  z-index: 9999;
  animation: floatUp 2s forwards cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes floatUp {
  0% { transform: translateY(0) scale(0.6); opacity: 1; }
  80% { opacity: 0.9; }
  100% { transform: translateY(-380px) scale(1.4); opacity: 0; }
}

/* Scratch & Win Surprise Card */
.scratch-box {
  background: linear-gradient(135deg, #181c28, #0e111a);
  border: 2px solid var(--yellow);
  box-shadow: 0 0 30px var(--yellow-glow);
  border-radius: var(--radius-xl);
  padding: 24px 20px;
  text-align: center;
  margin: 16px 0;
  position: relative;
  overflow: hidden;
}

.scratch-box h3 {
  font-size: 18px;
  font-weight: 950;
  color: var(--yellow);
  margin-bottom: 6px;
}

.scratch-reward {
  font-size: 26px;
  font-weight: 950;
  color: #fff;
  margin: 14px 0;
}

/* Base Club Scroller & Cards */
.clubScroller {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 6px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.clubScroller::-webkit-scrollbar { display: none; }

.club {
  min-width: 152px;
  max-width: 152px;
  background: var(--panel);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 10px;
  cursor: pointer;
  transition: transform var(--transition-fast), border-color var(--transition-fast);
  flex-shrink: 0;
}

.club:hover {
  border-color: var(--pink);
  transform: translateY(-2px);
}

.club:active { transform: scale(0.98); }

.club-cover {
  height: 100px;
  border-radius: var(--radius-md);
  background-size: cover;
  background-position: center;
  margin-bottom: 10px;
  position: relative;
  overflow: hidden;
}

.club-cover::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(7, 8, 14, 0.75));
}

.clubtop {
  display: flex;
  gap: 8px;
  align-items: center;
}

.avatar-mini {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid var(--line-light);
  object-fit: cover;
  flex-shrink: 0;
  background: var(--panel2);
}

.clubtop b {
  font-size: 12px;
  font-weight: 800;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #fff;
}

.verified-tag {
  font-size: 10px;
  color: var(--blue-verified);
  margin-top: 2px;
  display: flex;
  align-items: center;
  gap: 3px;
  font-weight: 700;
}

.badge-new {
  margin-left: auto;
  background: var(--pink-dark);
  color: var(--pink);
  border: 1px solid var(--pink);
  font-size: 9px;
  font-weight: 900;
  padding: 2px 6px;
  border-radius: 6px;
  box-shadow: 0 0 8px var(--pink-glow);
}

/* Featured Drop Banner */
.drop {
  background: var(--panel);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 16px;
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 24px;
  transition: border-color var(--transition-fast);
}

.drop:hover {
  border-color: var(--pink);
}

.dropicon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #3d1424, #1c0e16);
  border: 1px solid var(--pink);
  display: grid;
  place-items: center;
  font-size: 24px;
  flex-shrink: 0;
  box-shadow: 0 0 14px var(--pink-glow);
}

.dropmain {
  min-width: 0;
  flex: 1;
}

.dropmain b {
  font-size: 14px;
  line-height: 1.35;
  display: block;
  font-weight: 900;
  color: #fff;
}

.dropmain p {
  font-size: 11px;
  color: var(--text-secondary);
  margin-top: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.view-btn {
  background: #ffffff;
  color: #07080e;
  padding: 10px 16px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 950;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(255, 255, 255, 0.2);
}

/* Discover Creators Grid */
.discover {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.creator {
  background: var(--panel);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 11px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.creator:hover {
  border-color: var(--line-light);
  transform: translateY(-2px);
}

.creatorcover {
  height: 135px;
  border-radius: var(--radius-md);
  background-size: cover;
  background-position: center;
  margin-bottom: 10px;
  position: relative;
  overflow: hidden;
}

.creatorcover::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(7, 8, 14, 0.8));
}

.ctop {
  display: flex;
  gap: 8px;
  align-items: center;
}

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

.ctop b {
  font-size: 13px;
  font-weight: 850;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  color: #fff;
}

.ctop p {
  margin-top: 2px;
  color: var(--text-secondary);
  font-size: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.join-btn {
  margin-top: 10px;
  width: 100%;
  height: 40px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: var(--panel2);
  color: #ffffff;
  font-size: 11px;
  font-weight: 900;
  transition: all var(--transition-fast);
}

.join-btn:hover {
  border-color: var(--pink);
}

.join-btn.joined {
  background: var(--green-dark);
  color: var(--green);
  border-color: var(--green);
  box-shadow: 0 0 10px var(--green-glow);
}

.empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 30px 10px;
  color: var(--muted);
  font-size: 13px;
  background: var(--panel);
  border: 1px dashed var(--line);
  border-radius: var(--radius-lg);
}

/* Bottom Navigation Bar */
.bottomnav {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  height: 72px;
  padding: 6px 14px calc(6px + env(safe-area-inset-bottom));
  background: rgba(7, 8, 14, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1.5px solid var(--line);
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 20;
}

.navitem {
  color: #727c8e;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  font-size: 10px;
  font-weight: 800;
  min-width: 60px;
  transition: color var(--transition-fast);
}

.navitem svg {
  width: 22px;
  height: 22px;
  stroke-width: 2.2;
  transition: transform var(--transition-fast);
}

.navitem.active { color: #ffffff; }
.navitem.active svg {
  color: var(--pink);
  filter: drop-shadow(0 0 10px var(--pink-glow));
}

/* ==================== 5-LAYER ANTI-LEAK SHIELD ==================== */
.ghost-shield {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(0, 0, 0, 0.001);
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
  pointer-events: auto;
}

.forensic-watermark {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  user-select: none;
  transform: rotate(-16deg);
  opacity: 0.35;
}

.forensic-watermark span {
  font-size: 11px;
  font-weight: 850;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px dashed rgba(255, 255, 255, 0.3);
  text-shadow: 0 0 6px #000;
  letter-spacing: 0.04em;
}

.anti-leak-blackout {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 99999;
  display: none;
  place-items: center;
  text-align: center;
  padding: 24px;
}

.anti-leak-blackout.show {
  display: grid;
  animation: flashWarning 0.2s ease;
}

.blackout-box {
  max-width: 380px;
  background: #12151e;
  border: 2px solid var(--red);
  border-radius: var(--radius-xl);
  padding: 28px 24px;
  box-shadow: 0 0 50px var(--red-glow);
}

.blackout-icon {
  font-size: 44px;
  margin-bottom: 12px;
}

.blackout-box h2 {
  font-size: 20px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 6px;
}

.blackout-box p {
  font-size: 13px;
  color: var(--red);
  font-weight: 800;
  margin-bottom: 12px;
}

.blackout-box small {
  font-size: 11px;
  color: var(--muted);
}

body.window-blurred {
  filter: blur(16px);
}

@keyframes flashWarning {
  from { opacity: 0; transform: scale(0.96); }
  to { opacity: 1; transform: scale(1); }
}

/* ==================== VIP LIVE BAITHAK & TICKET STUB ==================== */

/* Desi VIP Live Ticket Stub Card */
.vip-ticket-card {
  background: linear-gradient(135deg, #18111e, #0e0d16);
  border: 2px solid var(--pink);
  border-radius: var(--radius-xl);
  padding: 18px 20px;
  margin-bottom: 26px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 30px var(--pink-glow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

.live-tag-pulsing {
  background: var(--red);
  color: #fff;
  padding: 4px 10px;
  border-radius: 99px;
  font-size: 11px;
  font-weight: 950;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 0 14px var(--red-glow);
  animation: pulseLive 1.5s infinite;
}

@keyframes pulseLive {
  0% { transform: scale(0.98); opacity: 0.85; }
  50% { transform: scale(1.04); opacity: 1; }
  100% { transform: scale(0.98); opacity: 0.85; }
}

.ticket-audience {
  font-size: 12px;
  font-weight: 850;
  color: var(--yellow);
}

.ticket-body h3 {
  font-size: 19px;
  font-weight: 950;
  color: #fff;
  margin-bottom: 4px;
}

.ticket-body p {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.4;
}

.ticket-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1.5px dashed rgba(255, 46, 147, 0.4);
  padding-top: 12px;
  margin-top: 4px;
}

.ticket-price-box {
  display: flex;
  flex-direction: column;
}

.ticket-price-box small {
  font-size: 10px;
  color: var(--muted);
  text-transform: uppercase;
  font-weight: 800;
}

.ticket-price-box b {
  font-size: 22px;
  font-weight: 950;
  color: var(--yellow);
  text-shadow: 0 0 10px var(--yellow-glow);
}

.btn-join-live {
  background: var(--pink);
  color: #fff;
  padding: 10px 18px;
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 950;
  box-shadow: 0 4px 18px var(--pink-glow);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Fullscreen VIP Live Stream Room */
.live-room-modal {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 10000;
  display: none;
}

.live-room-modal.show {
  display: block;
}

.live-stage-container {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 500px;
  margin: 0 auto;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #08090f;
}

.live-video-stream {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.live-video-stream::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 8, 14, 0.7) 0%, transparent 25%, transparent 60%, rgba(7, 8, 14, 0.95) 100%);
}

.live-top-bar {
  position: relative;
  z-index: 10;
  padding: 16px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.live-creator-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 0, 0, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 4px 12px 4px 6px;
  border-radius: 99px;
  backdrop-filter: blur(10px);
}

.live-avatar-pulse {
  position: relative;
  width: 36px;
  height: 36px;
}

.live-avatar-pulse img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--pink);
}

.live-dot-mini {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red);
  border: 1.5px solid #000;
}

.live-creator-meta b {
  font-size: 13px;
  color: #fff;
  display: block;
}

.live-creator-meta small {
  font-size: 10px;
  color: var(--yellow);
  font-weight: 800;
}

.live-exit-btn {
  background: rgba(0, 0, 0, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  padding: 8px 14px;
  border-radius: 99px;
  font-size: 12px;
  font-weight: 850;
  backdrop-filter: blur(10px);
}

/* Spotlight Banner for Big Gifts */
.spotlight-banner {
  position: relative;
  z-index: 10;
  margin: 0 14px;
  background: linear-gradient(135deg, rgba(255, 230, 0, 0.25), rgba(255, 46, 147, 0.25));
  border: 1.5px solid var(--yellow);
  border-radius: var(--radius-md);
  padding: 8px 12px;
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 0 20px var(--yellow-glow);
}

.spotlight-badge {
  background: var(--yellow);
  color: #000;
  font-size: 10px;
  font-weight: 950;
  padding: 2px 6px;
  border-radius: 4px;
  flex-shrink: 0;
}

.spotlight-banner b {
  font-size: 11px;
  color: #fff;
  line-height: 1.3;
}

.pulse-spotlight {
  animation: spotlightBurst 0.6s ease;
}

@keyframes spotlightBurst {
  0% { transform: scale(0.92); }
  50% { transform: scale(1.06); }
  100% { transform: scale(1); }
}

/* Comments Stream */
.live-comments-stream {
  position: relative;
  z-index: 10;
  height: 220px;
  overflow-y: auto;
  padding: 10px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  scrollbar-width: none;
  mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 1) 25%);
}

.live-comments-stream::-webkit-scrollbar { display: none; }

.comment-bubble {
  background: rgba(7, 8, 14, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 6px 12px;
  font-size: 12px;
  max-width: 85%;
  align-self: flex-start;
  backdrop-filter: blur(6px);
  animation: commentIn 0.2s ease;
}

.comment-bubble.system {
  background: rgba(0, 245, 155, 0.15);
  border-color: rgba(0, 245, 155, 0.3);
  max-width: 100%;
}

.system-tag {
  color: var(--green);
  font-weight: 850;
  display: block;
  font-size: 10px;
}

.comment-bubble.gift-bubble {
  background: rgba(255, 46, 147, 0.25);
  border-color: var(--pink);
  box-shadow: 0 0 12px var(--pink-glow);
}

.comment-bubble b {
  color: var(--yellow);
  font-weight: 850;
  margin-right: 4px;
}

.comment-bubble small {
  color: var(--muted);
  font-size: 10px;
}

.comment-bubble span {
  color: #fff;
}

@keyframes commentIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Bottom Interactive Dock */
.live-bottom-dock {
  position: relative;
  z-index: 10;
  padding: 12px 14px calc(14px + env(safe-area-inset-bottom));
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.live-gift-chips {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}

.live-gift-chips::-webkit-scrollbar { display: none; }

.live-chip {
  background: rgba(20, 24, 36, 0.85);
  border: 1.5px solid var(--line);
  padding: 6px 10px;
  border-radius: 99px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: #fff;
  white-space: nowrap;
  backdrop-filter: blur(8px);
}

.live-chip.hot { border-color: var(--red); box-shadow: 0 0 10px var(--red-glow); }
.live-chip.vip { border-color: var(--yellow); box-shadow: 0 0 10px var(--yellow-glow); }

.live-chip b {
  color: var(--yellow);
  font-weight: 950;
}

.live-chat-input-row {
  display: flex;
  gap: 8px;
}

.live-input {
  flex: 1;
  height: 44px;
  border-radius: 99px;
  background: rgba(14, 17, 26, 0.85);
  border: 1.5px solid var(--line);
  padding: 0 16px;
  color: #fff;
  font-size: 13px;
  outline: none;
  backdrop-filter: blur(10px);
}

.live-input:focus {
  border-color: var(--pink);
}

.live-send-btn {
  height: 44px;
  padding: 0 16px;
  border-radius: 99px;
  background: var(--pink);
  color: #fff;
  font-weight: 950;
  font-size: 12px;
  box-shadow: 0 0 14px var(--pink-glow);
}

/* ==================== DYNAMIC CREATOR PROFILE & LIVE BADGES ==================== */

.live-pill-mini {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--red);
  color: #fff;
  font-size: 10px;
  font-weight: 950;
  padding: 3px 8px;
  border-radius: 99px;
  box-shadow: 0 0 12px var(--red-glow);
  animation: pulseLive 1.4s infinite;
  z-index: 2;
}

.avatar-live-glow {
  border-color: var(--red) !important;
  box-shadow: 0 0 14px var(--red-glow);
  animation: pulseLive 1.5s infinite;
}

.profile-hero-cover {
  height: 140px;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  position: relative;
  margin: -20px -20px 0 -20px;
}

.profile-hero-cover::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(14, 17, 26, 0.95) 100%);
}

.profile-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 5;
  background: rgba(0, 0, 0, 0.65) !important;
}

.live-pill-top {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 5;
  background: var(--red);
  color: #fff;
  font-size: 11px;
  font-weight: 950;
  padding: 4px 10px;
  border-radius: 99px;
  box-shadow: 0 0 14px var(--red-glow);
}

.profile-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: -36px;
  position: relative;
  z-index: 4;
  margin-bottom: 12px;
}

.profile-avatar-box {
  position: relative;
  width: 72px;
  height: 72px;
}

.profile-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--panel);
  background: var(--panel2);
}

.avatar-live-indicator {
  position: absolute;
  bottom: 4px;
  right: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--red);
  border: 2px solid var(--panel);
  box-shadow: 0 0 10px var(--red);
}

.profile-info-block {
  margin-bottom: 16px;
}

.profile-name-line h2 {
  font-size: 22px;
  font-weight: 950;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 6px;
}

.verified-tick {
  color: var(--blue-verified);
  font-size: 16px;
}

.profile-bio {
  color: var(--text-secondary);
  font-size: 13px;
  margin-top: 2px;
}

/* Dynamic Live Ticket Card inside Creator Profile */
.profile-live-card {
  background: linear-gradient(135deg, #24111d, #140d16);
  border: 2px solid var(--pink);
  box-shadow: 0 0 24px var(--pink-glow);
  border-radius: var(--radius-lg);
  padding: 16px;
  margin-bottom: 18px;
}

.profile-live-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.live-viewer-tag {
  font-size: 11px;
  font-weight: 850;
  color: var(--yellow);
}

.profile-live-card h3 {
  font-size: 17px;
  font-weight: 950;
  color: #fff;
  margin-bottom: 4px;
}

.profile-live-card p {
  font-size: 12px;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.profile-live-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px dashed rgba(255, 46, 147, 0.35);
  padding-top: 10px;
}

.profile-offline-banner {
  background: var(--panel2);
  border: 1px solid var(--line);
  padding: 12px 14px;
  border-radius: var(--radius-md);
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.profile-offline-banner span {
  font-size: 12px;
  font-weight: 850;
  color: var(--muted);
}

.profile-offline-banner small {
  font-size: 11px;
  color: var(--muted);
}

/* Profile Drops Shelf */
.profile-drops-section h3 {
  font-size: 15px;
  font-weight: 900;
  margin-bottom: 10px;
}

.profile-drops-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.profile-drop-mini {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--panel2);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 8px 10px;
}

.profile-drop-mini img {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  object-fit: cover;
}

.profile-drop-mini b {
  display: block;
  font-size: 12px;
  color: #fff;
}

.profile-drop-mini small {
  font-size: 10px;
  color: var(--yellow);
  font-weight: 800;
}

/* ==========================================================================
   2-SECOND VISUAL SNEAK PEEK / TEASER
   ========================================================================== */
.btn-visual-peek {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(7, 8, 14, 0.9);
  border: 1px solid var(--yellow);
  color: var(--yellow);
  padding: 6px 14px;
  border-radius: 99px;
  font-size: 11px;
  font-weight: 850;
  cursor: pointer;
  z-index: 4;
  white-space: nowrap;
  box-shadow: 0 0 14px rgba(255, 230, 0, 0.35);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.btn-visual-peek:hover {
  background: #ffe600;
  color: #07080e;
  box-shadow: 0 0 20px rgba(255, 230, 0, 0.7);
  transform: translateX(-50%) scale(1.03);
}

.peek-countdown-badge {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #ff2e93, #e50914);
  border: 1.5px solid #ffe600;
  color: #fff;
  padding: 6px 14px;
  border-radius: 99px;
  font-size: 12px;
  font-weight: 900;
  z-index: 5;
  box-shadow: 0 0 20px rgba(255, 46, 147, 0.7);
  display: flex;
  align-items: center;
  gap: 6px;
  animation: pulse 0.6s infinite alternate;
}

.peek-flame-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ffe600;
  box-shadow: 0 0 10px #ffe600;
}

.sachet-media.locked.is-peeking .blurred-bg {
  filter: blur(0px) !important;
  transform: scale(1.02) !important;
  transition: filter 0.25s ease-out, transform 0.25s ease-out !important;
}

.sachet-media.locked.is-peeking .lock-overlay {
  opacity: 0 !important;
  pointer-events: none !important;
  transition: opacity 0.2s ease-out !important;
}

.sachet-media.locked.snap-locked {
  border: 2px solid var(--red);
  box-shadow: 0 0 22px rgba(229, 9, 20, 0.5);
  animation: snapFlash 0.4s ease-out;
}

@keyframes snapFlash {
  0% { transform: scale(1.03); filter: brightness(1.3); }
  100% { transform: scale(1); filter: brightness(1); }
}

/* ==========================================================================
   DEDICATED 1-ON-1 PRIVATE LIVE SESSION CARD ON CREATOR PROFILE
   ========================================================================== */
.profile-one-on-one-card {
  background: linear-gradient(135deg, rgba(255, 46, 147, 0.14), rgba(255, 230, 0, 0.08));
  border: 1.5px solid rgba(255, 46, 147, 0.45);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 18px;
  box-shadow: 0 6px 20px rgba(255, 46, 147, 0.15);
}

.one-on-one-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.one-on-one-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 900;
  color: #fff;
}

.one-on-one-tag {
  background: var(--pink-dark);
  color: var(--pink);
  border: 1px solid var(--pink);
  font-size: 9px;
  font-weight: 900;
  padding: 2px 7px;
  border-radius: 6px;
  text-transform: uppercase;
}

.one-on-one-price-box {
  text-align: right;
}

.one-on-one-price-box small {
  display: block;
  font-size: 10px;
  color: var(--muted);
  text-transform: uppercase;
  font-weight: 800;
}

.one-on-one-price-box b {
  font-size: 18px;
  font-weight: 950;
  color: var(--yellow);
}

.profile-one-on-one-card h4 {
  font-size: 14px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 4px;
}

.profile-one-on-one-card p {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.4;
  margin-bottom: 12px;
}

.btn-book-one-on-one {
  width: 100%;
  background: linear-gradient(135deg, #ff2e93, #e50914);
  color: #fff;
  font-weight: 950;
  font-size: 13px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 18px rgba(255, 46, 147, 0.4);
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.btn-book-one-on-one:hover {
  transform: translateY(-1px);
  filter: brightness(1.1);
  box-shadow: 0 6px 24px rgba(255, 46, 147, 0.6);
}

.btn-book-one-on-one:active {
  transform: scale(0.98);
}

/* ==========================================================================
   1-ON-1 ENCRYPTED PRIVATE LIVE CALL ROOM MODAL
   ========================================================================== */
.one-on-one-modal {
  position: fixed;
  inset: 0;
  background: #07080e;
  z-index: 10000;
  display: none;
  overflow: hidden;
}

.one-on-one-modal.show {
  display: block;
}

.one-on-one-stage {
  position: relative;
  width: 100%;
  height: 100%;
  background: #000;
}

.remote-video-feed {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.private-call-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(7, 8, 14, 0.88);
  border: 1px solid var(--green);
  color: var(--green);
  padding: 6px 14px;
  border-radius: 99px;
  font-size: 11px;
  font-weight: 900;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 10;
  box-shadow: 0 0 16px var(--green-glow);
}

.live-dot-mini {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: pulse 1s infinite alternate;
}

.local-pip-feed {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 108px;
  height: 148px;
  border-radius: 14px;
  background: #141824;
  border: 2px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
  display: grid;
  place-items: center;
  z-index: 10;
  overflow: hidden;
}

.remote-video-el {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.local-pip-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scaleX(-1);
}

.pip-inner {
  text-align: center;
  color: #fff;
}

.pip-user-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--pink);
  color: #fff;
  display: inline-grid;
  place-items: center;
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 6px;
  box-shadow: 0 0 12px var(--pink-glow);
}

.pip-inner small {
  display: block;
  font-size: 10px;
  color: var(--text-secondary);
  font-weight: 700;
}

.call-top-bar {
  position: absolute;
  top: 72px;
  left: 20px;
  right: 140px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(7, 8, 14, 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.call-meta b {
  display: block;
  font-size: 13px;
  font-weight: 900;
  color: #fff;
}

.call-meta p {
  font-size: 11px;
  color: var(--text-secondary);
  margin: 2px 0 0 0;
}

.call-duration-timer {
  font-size: 12px;
  font-weight: 900;
  color: var(--yellow);
  background: rgba(0, 0, 0, 0.6);
  padding: 4px 8px;
  border-radius: 6px;
  white-space: nowrap;
}

.call-controls-bar {
  position: absolute;
  bottom: 36px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  z-index: 10;
  padding: 0 20px;
}

.call-ctrl-btn {
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: 99px;
  padding: 12px 20px;
  font-size: 13px;
  font-weight: 850;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease;
}

.call-ctrl-btn:hover {
  background: rgba(255, 255, 255, 0.3);
}

.call-end-btn {
  background: #e50914;
  color: #fff;
  border: none;
  border-radius: 99px;
  padding: 12px 28px;
  font-size: 13px;
  font-weight: 950;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(229, 9, 20, 0.6);
  transition: transform 0.15s ease, filter 0.15s ease;
}

.call-end-btn:hover {
  filter: brightness(1.15);
  transform: translateY(-1px);
}

/* Creator Studio Warning & Approval Banners */
.creator-warning-banner {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  border-radius: 14px;
  margin-bottom: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.creator-warning-banner.warning-level-1 {
  background: rgba(245, 158, 11, 0.12);
  border: 1.5px solid rgba(245, 158, 11, 0.5);
  color: #fbbf24;
}

.creator-warning-banner.warning-level-2 {
  background: rgba(239, 68, 68, 0.16);
  border: 2px solid rgba(239, 68, 68, 0.7);
  color: #f87171;
  animation: pulse-warning 2s infinite alternate;
}

@keyframes pulse-warning {
  0% { box-shadow: 0 0 10px rgba(239, 68, 68, 0.2); }
  100% { box-shadow: 0 0 25px rgba(239, 68, 68, 0.55); }
}

.warning-banner-icon {
  font-size: 28px;
  line-height: 1;
  flex-shrink: 0;
}

.warning-banner-content {
  flex: 1;
}

.warning-banner-content b {
  display: block;
  font-size: 15px;
  margin-bottom: 6px;
  font-weight: 850;
}

.warning-banner-content p {
  font-size: 13px;
  line-height: 1.5;
  margin: 0;
  opacity: 0.92;
}

.creator-pending-notice {
  background: rgba(59, 130, 246, 0.12);
  border: 1.5px solid rgba(59, 130, 246, 0.4);
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 20px;
  color: #93c5fd;
  font-size: 13px;
  line-height: 1.5;
}

/* Compliance Site Footer */
.site-footer {
  margin-top: 40px;
  padding: 24px 16px 40px;
  border-top: 1px solid var(--line);
  text-align: center;
  background: rgba(14, 17, 26, 0.6);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.policy-link {
  color: var(--text-secondary);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.15s ease;
  cursor: pointer;
}

.policy-link:hover {
  color: var(--pink);
  text-decoration: underline;
}

.footer-sep {
  color: var(--muted);
  font-size: 12px;
}

.footer-copy {
  font-size: 11px;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 4px;
}

.footer-tagline {
  font-size: 10px;
  color: #526079;
}

/* Policy Content Inside Modal */
.policy-modal-sheet {
  max-height: 75vh;
  overflow-y: auto;
  padding: 10px 4px;
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.6;
}

.policy-modal-sheet h3 {
  font-size: 16px;
  color: #fff;
  margin: 16px 0 8px;
  font-weight: 850;
}

.policy-modal-sheet h3:first-child {
  margin-top: 0;
}

.policy-modal-sheet p {
  margin-bottom: 10px;
}

.policy-modal-sheet ul {
  padding-left: 18px;
  margin-bottom: 12px;
}

.policy-modal-sheet li {
  margin-bottom: 4px;
}

.policy-contact-box {
  background: var(--panel2);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  margin-top: 14px;
}



