/* ==========================================================================
   Chai Baar — Authentic Tapri Modern Aesthetic
   Crafted with character, warmth, and bespoke Indian editorial typography.
   ========================================================================== */

:root {
  --bg-dark: #140804;
  --bg-tapri: #210F08;
  --bg-card: #2E150B;
  --terracotta: #D45B28;
  --terracotta-bright: #EA6E3B;
  --terracotta-dark: #8C3411;
  --amber-tea: #E68A2E;
  --brass-gold: #F59E0B;
  --cream-froth: #FFF7ED;
  --cream-dim: rgba(255, 247, 237, 0.75);
  --border-subtle: rgba(230, 138, 46, 0.22);
  --border-active: rgba(234, 110, 59, 0.6);

  --font-serif: 'Rozha One', serif;
  --font-display: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: var(--bg-dark);
  font-family: var(--font-body);
  color: var(--cream-froth);
  user-select: none;
}

#app {
  position: relative;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* ==========================================================================
   Layer 1: Viewport, Video, Canvas, and Film Grain
   ========================================================================== */

#canvas-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

#webcam-video {
  display: none;
}

#gameCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
}

/* Atmospheric warm vignette */
.screen-vignette {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 3;
  box-shadow: inset 0 0 100px rgba(10, 4, 2, 0.75);
}

/* Subtle analog noise / film texture to remove sterile digital feel */
.screen-grain {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 4;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* ==========================================================================
   Layer 2: In-Game Minimal HUD
   ========================================================================== */

.hud-layer {
  position: relative;
  z-index: 15;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px 24px;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.hud-layer.hidden {
  display: none !important;
}

/* Top Bar */
.hud-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  pointer-events: auto;
}

.hud-brand {
  display: flex;
  align-items: baseline;
  gap: 8px;
  background: rgba(20, 8, 4, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-subtle);
  padding: 8px 16px;
  border-radius: 999px;
}

.brand-hindi {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--amber-tea);
  line-height: 1;
}

.brand-divider {
  color: rgba(255, 247, 237, 0.3);
  font-size: 14px;
}

.brand-eng {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--cream-froth);
}

/* Steps Strip */
.hud-steps {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(20, 8, 4, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-subtle);
  padding: 6px 14px;
  border-radius: 999px;
}

.hud-step {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 247, 237, 0.4);
  letter-spacing: 0.5px;
  transition: color 0.25s ease;
}

.hud-step.active {
  color: var(--terracotta-bright);
}

.hud-step.completed {
  color: var(--brass-gold);
}

.step-sep {
  color: rgba(255, 247, 237, 0.2);
  font-size: 10px;
}

/* Metrics & Controls */
.hud-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.metric-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(20, 8, 4, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-subtle);
  padding: 8px 14px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
}

.metric-icon {
  font-size: 13px;
}

.hud-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(20, 8, 4, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-subtle);
  color: var(--cream-froth);
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.hud-btn:hover {
  background: rgba(45, 18, 9, 0.9);
  border-color: var(--amber-tea);
  transform: translateY(-1px);
}

/* Bottom Guidance Prompt */
.hud-bottom {
  display: flex;
  justify-content: center;
  width: 100%;
  pointer-events: auto;
  margin-bottom: 8px;
}

.instruction-banner {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(26, 11, 5, 0.92);
  border: 1px solid var(--border-active);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 14px 28px;
  border-radius: 18px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.6), 0 0 24px rgba(212, 91, 40, 0.15);
  max-width: 520px;
}

.instruction-gesture {
  font-size: 28px;
  line-height: 1;
}

.instruction-content h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--cream-froth);
  letter-spacing: 0.3px;
  margin-bottom: 2px;
}

.instruction-content p {
  font-size: 13px;
  color: var(--cream-dim);
  line-height: 1.4;
}

/* ==========================================================================
   Layer 3: Hero Landing Screen (Crafted Tapri Aesthetic)
   ========================================================================== */

.landing-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at center, #261109 0%, #130703 100%);
  padding: 24px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.landing-layer.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.landing-content {
  max-width: 520px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 0;
  margin: auto;
}

.tapri-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  background: rgba(230, 138, 46, 0.08);
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--brass-gold);
  margin-bottom: 12px;
}

.hero-title-group {
  margin-bottom: 14px;
}

.hero-hindi {
  font-family: var(--font-serif);
  font-size: 54px;
  font-weight: 400;
  color: var(--terracotta-bright);
  line-height: 1.05;
  letter-spacing: -0.5px;
  text-shadow: 0 4px 20px rgba(234, 110, 59, 0.3);
}

.hero-english {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--cream-froth);
  margin-top: 2px;
}

.hero-tagline {
  font-size: 14px;
  color: var(--cream-dim);
  margin-top: 4px;
}

/* Hero Tea Vector & Rising Steam Animation */
.hero-tea-visual {
  margin-bottom: 16px;
  position: relative;
}

.kulhad-hero-art {
  overflow: visible;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.5));
}

.steam-line {
  animation: steam-rise 2.8s infinite ease-in-out;
}

.steam-1 { animation-delay: 0s; }
.steam-2 { animation-delay: 0.8s; }
.steam-3 { animation-delay: 1.4s; }

@keyframes steam-rise {
  0% {
    opacity: 0;
    transform: translateY(6px);
  }
  40% {
    opacity: 0.65;
  }
  100% {
    opacity: 0;
    transform: translateY(-24px);
  }
}

/* Tapri Menu Selection */
.chai-menu-container {
  width: 100%;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.menu-header {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: rgba(255, 247, 237, 0.4);
  margin-bottom: 10px;
}

.chai-menu-scroller {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  width: 100%;
  max-width: 100vw;
  padding: 4px 16px;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
}

.chai-menu-scroller::-webkit-scrollbar {
  display: none;
}

.chai-card {
  flex: 0 0 auto;
  background: rgba(20, 8, 4, 0.6);
  border: 1.5px solid rgba(255, 247, 237, 0.1);
  border-radius: 14px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  scroll-snap-align: center;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  min-width: 140px;
}

.chai-card:hover {
  background: rgba(255, 247, 237, 0.05);
  border-color: rgba(255, 247, 237, 0.25);
  transform: translateY(-2px);
}

.chai-card.active {
  background: rgba(234, 110, 59, 0.15);
  border-color: var(--terracotta-bright);
  box-shadow: 0 8px 20px rgba(212, 91, 40, 0.25);
}

.chai-icon {
  font-size: 22px;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4));
}

.chai-details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.chai-name {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--cream-froth);
  white-space: nowrap;
}

.chai-title-row {
  display: flex;
  align-items: center;
  gap: 6px;
}

.chai-price-badge {
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 700;
  background: rgba(234, 110, 59, 0.2);
  color: var(--terracotta-bright);
  border: 1px solid rgba(234, 110, 59, 0.5);
  padding: 1px 6px;
  border-radius: 999px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.chai-price-badge.unlocked {
  background: rgba(52, 211, 153, 0.18);
  color: #34D399;
  border-color: rgba(52, 211, 153, 0.5);
}

.chai-tagline {
  font-family: var(--font-body);
  font-size: 10px;
  color: rgba(255, 247, 237, 0.55);
  white-space: nowrap;
  letter-spacing: 0.2px;
  transition: color 0.2s ease;
}

.chai-card.active .chai-tagline {
  color: rgba(255, 247, 237, 0.9);
}

/* Tapri Jukebox */
.jukebox-container {
  position: absolute;
  top: 16px;
  right: 16px;
  left: auto;
  z-index: 50;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 12px;
  background: rgba(20, 8, 4, 0.75);
  border: 1px solid rgba(255, 247, 237, 0.1);
  padding: 8px 12px;
  border-radius: 30px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transform: scale(0.85);
  transform-origin: top right;
  transition: top 0.3s ease;
  cursor: grab;
  touch-action: none; /* Prevents page scrolling while dragging on mobile */
}

.jukebox-container:active {
  cursor: grabbing;
}

body.in-game .jukebox-container {
  top: 72px;
}

.vinyl-icon {
  font-size: 20px;
  animation: spin 3s linear infinite;
  animation-play-state: paused;
}
.vinyl-icon.playing {
  animation-play-state: running;
}

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

.jb-info {
  display: flex;
  flex-direction: column;
  width: 100px;
  overflow: hidden;
  text-align: right;
}

.jb-label {
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 700;
  color: var(--amber-tea);
  letter-spacing: 1px;
}

.jb-track-marquee {
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  position: relative;
}

.jb-track {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  color: var(--cream-froth);
  /* Optional marquee animation */
}

.jb-controls {
  display: flex;
  gap: 8px;
  flex-direction: row-reverse;
}

.jb-btn {
  background: none;
  border: none;
  color: var(--cream-froth);
  font-size: 16px;
  padding: 4px;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.jb-btn:hover {
  opacity: 1;
}

/* Action Buttons */
.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 380px;
  margin-bottom: 22px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--terracotta) 0%, var(--terracotta-bright) 100%);
  color: #FFF;
  border: none;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 16px 28px;
  border-radius: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 10px 24px rgba(212, 91, 40, 0.4);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(212, 91, 40, 0.55);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background: transparent;
  color: var(--cream-dim);
  border: 1px solid rgba(255, 247, 237, 0.15);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-secondary:hover {
  background: rgba(255, 247, 237, 0.06);
  color: var(--cream-froth);
  border-color: rgba(255, 247, 237, 0.3);
}

.hero-footnote {
  font-size: 12px;
  color: rgba(255, 247, 237, 0.5);
  line-height: 1.5;
  max-width: 440px;
}

.hero-footnote strong {
  color: rgba(255, 247, 237, 0.8);
}

/* ==========================================================================
   Layer 4: Tapri Token End Card (Victory Screen)
   ========================================================================== */

.victory-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(14, 6, 3, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 24px;
}

.victory-layer.hidden {
  display: none !important;
}

.tapri-receipt {
  background: var(--bg-card);
  border: 1.5px solid var(--border-subtle);
  border-radius: 20px;
  padding: 32px 28px;
  max-width: 380px;
  width: 100%;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.7), 0 0 40px rgba(212, 91, 40, 0.2);
  text-align: center;
}

.receipt-seal {
  font-size: 42px;
  display: inline-block;
  margin-bottom: 10px;
}

.receipt-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--cream-froth);
}

.receipt-subtitle {
  font-size: 13px;
  color: var(--amber-tea);
  font-weight: 500;
  margin-top: 4px;
}

.receipt-divider {
  height: 1px;
  background: repeating-linear-gradient(
    90deg,
    rgba(255, 247, 237, 0.15),
    rgba(255, 247, 237, 0.15) 6px,
    transparent 6px,
    transparent 12px
  );
  margin: 22px 0;
}

.receipt-stats {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.receipt-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: var(--cream-dim);
}

.receipt-row strong {
  font-family: var(--font-display);
  color: var(--cream-froth);
}

.receipt-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ==========================================================================
   Layer 5: Tapri Paywall Modal
   ========================================================================== */

.paywall-layer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.paywall-layer.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.paywall-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 4, 2, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.paywall-sheet {
  position: relative;
  width: 100%;
  max-width: 350px;
  background: radial-gradient(circle at top, #2C140A 0%, #170904 100%);
  border: 1.5px solid rgba(234, 110, 59, 0.4);
  border-radius: 24px;
  padding: 24px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.85), 0 0 36px rgba(212, 91, 40, 0.25);
  max-height: 90vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.paywall-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: rgba(255, 247, 237, 0.08);
  border: 1px solid rgba(255, 247, 237, 0.15);
  color: var(--cream-froth);
  font-size: 20px;
  line-height: 1;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.paywall-close:hover {
  background: rgba(255, 247, 237, 0.2);
  transform: scale(1.05);
}

.paywall-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 4px;
}

.paywall-tag {
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--brass-gold);
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.3);
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 8px;
}

.paywall-icon-wrap {
  font-size: 32px;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
  margin-bottom: 6px;
}

.paywall-title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--cream-froth);
  margin-bottom: 6px;
}

.paywall-subtitle {
  font-size: 11.5px;
  line-height: 1.5;
  color: var(--cream-dim);
  margin-bottom: 12px;
}

.paywall-subtitle strong {
  color: var(--brass-gold);
}

.paywall-qr-box {
  background: #ffffff;
  padding: 10px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 12px;
}

.paywall-qr {
  width: 145px;
  height: 145px;
  display: block;
  border-radius: 6px;
}

.paywall-qr-hint {
  font-size: 9px;
  color: #555555;
  margin-top: 6px;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.paywall-action-btn {
  width: 100%;
  padding: 11px 16px;
  font-size: 13.5px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.paywall-id-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: rgba(20, 8, 4, 0.7);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 8px 12px;
  margin-bottom: 12px;
}

.paywall-id-label {
  font-size: 11px;
  color: var(--cream-dim);
}

.paywall-id-val {
  font-family: monospace;
  font-size: 12px;
  color: var(--brass-gold);
  font-weight: 700;
}

.btn-copy-upi {
  background: rgba(234, 110, 59, 0.2);
  border: 1px solid var(--terracotta-bright);
  color: var(--cream-froth);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-copy-upi:hover {
  background: var(--terracotta-bright);
}

.paywall-footer {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.paywall-verify-btn {
  width: 100%;
  padding: 11px;
  font-size: 12px;
  font-weight: 700;
}

.paywall-trust-note {
  font-size: 9.5px;
  color: rgba(255, 247, 237, 0.45);
  font-style: italic;
}

/* ==========================================================================
   Responsive & Mobile Devices
   ========================================================================== */

@media (max-width: 640px) {
  .hud-layer {
    padding: max(10px, env(safe-area-inset-top)) max(10px, env(safe-area-inset-right)) max(14px, env(safe-area-inset-bottom)) max(10px, env(safe-area-inset-left));
  }

  .hud-steps {
    display: none;
  }

  .brand-divider,
  .brand-eng {
    display: none;
  }

  .hud-brand {
    padding: 6px 10px;
  }

  .brand-hindi {
    font-size: 15px;
  }

  .hud-actions {
    gap: 4px;
  }

  .metric-pill {
    padding: 5px 8px;
    font-size: 11px;
    gap: 3px;
  }

  .hud-btn {
    width: 32px;
    height: 32px;
    font-size: 13px;
  }

  .hero-hindi {
    font-size: 44px;
  }

  .hero-english {
    font-size: 19px;
    letter-spacing: 2.5px;
  }

  .chai-menu-scroller {
    padding: 4px 0px;
    padding-left: 10px;
    padding-right: 10px;
    gap: 8px;
  }

  .chai-card {
    min-width: 120px;
    padding: 10px 12px;
    gap: 8px;
  }

  .chai-icon {
    font-size: 18px;
  }

  .chai-name {
    font-size: 11px;
  }

  .chai-tagline {
    font-size: 8.5px;
    opacity: 0.8;
  }

  .instruction-banner {
    padding: 10px 16px;
    gap: 10px;
    width: 94%;
    margin: 0 auto;
    border-radius: 14px;
  }

  .instruction-gesture {
    font-size: 22px;
  }

  .instruction-content h3 {
    font-size: 13px;
  }

  .instruction-content p {
    font-size: 11px;
  }

  .tapri-receipt {
    padding: 22px 18px;
    max-width: 310px;
  }

  .paywall-sheet {
    padding: 20px 16px;
    max-width: 320px;
    border-radius: 20px;
  }

  .paywall-title {
    font-size: 17px;
  }

  .paywall-qr {
    width: 130px;
    height: 130px;
  }
}
