:root {
  --table-felt: radial-gradient(circle at 50% 45%, #156239 0%, #0d4426 65%, #052313 100%);
  --table-wood-border: #3d2314;
  --gold-accent: #f59e0b;
  --gold-border: #fbbf24;
  --card-width: 52px;
  --card-height: 75px;
  --card-radius: 5px;
  --pure-color: #10b981;
  --impure-color: #3b82f6;
  --set-color: #f59e0b;
  --invalid-color: #ef4444;
}

/* Theme 1: Royal Velvet */
body.theme-royal-velvet {
  --table-felt: radial-gradient(circle at 50% 45%, #4c1d95 0%, #2e1065 65%, #1e0938 100%);
  --table-wood-border: #831843;
  --gold-accent: #f43f5e;
  --gold-border: #fb7185;
}

/* Theme 2: Neon Nights */
body.theme-neon-nights {
  --table-felt: radial-gradient(circle at 50% 45%, #1e1b4b 0%, #0f172a 65%, #020617 100%);
  --table-wood-border: #0891b2;
  --gold-accent: #06b6d4;
  --gold-border: #38bdf8;
}

/* Theme 3: Gold Classic */
body.theme-gold-classic {
  --table-felt: radial-gradient(circle at 50% 45%, #27272a 0%, #18181b 65%, #09090b 100%);
  --table-wood-border: #b45309;
  --gold-accent: #f59e0b;
  --gold-border: #fde047;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  user-select: none;
}

body {
  background: #031109;
  height: 100vh;
  max-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  overflow: hidden;
  transition: background 0.3s ease;
}

/* Top App Header & Scoreboard */
.game-header {
  width: 100%;
  max-width: 1100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 14px;
  background: rgba(0, 0, 0, 0.75);
  border-bottom: 1.5px solid var(--gold-accent);
  backdrop-filter: blur(8px);
  z-index: 100;
  flex-shrink: 0;
}

.game-title-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.game-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--gold-border);
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.round-indicator {
  font-size: 0.74rem;
  font-weight: 600;
  color: #a7f3d0;
  background: rgba(16, 185, 129, 0.15);
  padding: 2px 8px;
  border-radius: 12px;
  border: 1px solid rgba(16, 185, 129, 0.3);
  white-space: nowrap;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}

.table-stakes-selector {
  background: #1f2937;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 4px 6px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  outline: none;
}

.score-chip {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 3px 10px;
  border-radius: 14px;
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
}
.score-chip.gold {
  border-color: var(--gold-border);
  color: var(--gold-border);
  background: rgba(245, 158, 11, 0.15);
}

.header-btn {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 4px 10px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.76rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: all 0.15s ease;
  white-space: nowrap;
}
.header-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: var(--gold-border);
  transform: translateY(-1px);
}
.header-btn.btn-primary {
  background: linear-gradient(180deg, #10b981 0%, #059669 100%);
  border-color: #34d399;
}
.header-btn.btn-gold {
  background: linear-gradient(180deg, #f59e0b 0%, #d97706 100%);
  color: #000;
  border-color: #fbbf24;
  font-weight: 700;
}

.game-footer {
  width: 100%;
  text-align: center;
  padding: 3px 10px;
  font-size: 0.7rem;
  color: #94a3b8;
  letter-spacing: 0.3px;
  flex-shrink: 0;
  background: rgba(0, 0, 0, 0.4);
}
.game-footer a {
  color: #38bdf8;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.15s;
}
.game-footer a:hover {
  color: #7dd3fc;
  text-decoration: underline;
}

/* Main Rummy Table */
.rummy-table {
  width: 98%;
  max-width: 1100px;
  flex: 1;
  min-height: 0;
  background: var(--table-felt);
  border: 5px solid var(--table-wood-border);
  outline: 2px solid var(--gold-accent);
  border-radius: 20px;
  margin: 4px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 8px 14px;
  box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.8), 0 8px 24px rgba(0, 0, 0, 0.6);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

/* 1. Bot Area (Top) */
.bot-zone {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}

.bot-profile {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 0, 0, 0.4);
  padding: 2px 10px;
  border-radius: 14px;
  font-size: 0.76rem;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.bot-avatar {
  font-size: 1rem;
}

.bot-cards-row {
  display: flex;
  justify-content: center;
}

.card-item.card-back {
  background: repeating-linear-gradient(
    45deg,
    #991b1b,
    #991b1b 5px,
    #7f1d1d 5px,
    #7f1d1d 10px
  );
  border: 1.5px solid #ffffff;
  width: 38px;
  height: 54px;
  margin-left: -18px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  border-radius: 4px;
}
.card-item.card-back:first-child {
  margin-left: 0;
}

/* 2. Center Table Zone: Decks, Discard, Finish Slot & Timer */
.table-center-zone {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 2px 0;
  position: relative;
}

.deck-pod {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}

.pod-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #a7f3d0;
  letter-spacing: 0.4px;
}

/* Closed Deck + Tucked Wild Joker */
.closed-deck-wrapper {
  position: relative;
  width: var(--card-width);
  height: var(--card-height);
  cursor: pointer;
  transition: transform 0.2s;
}
.closed-deck-wrapper:hover {
  transform: scale(1.04);
}

.tucked-wild-slot {
  position: absolute;
  top: 10px;
  left: -22px;
  transform: rotate(-90deg);
  z-index: 1;
  pointer-events: none;
}

.tucked-wild-card {
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.6) !important;
}

.closed-deck-stack {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.closed-deck-card {
  width: 100%;
  height: 100%;
  border-radius: var(--card-radius);
  background: repeating-linear-gradient(
    -45deg,
    #1e3a8a,
    #1e3a8a 6px,
    #172554 6px,
    #172554 12px
  );
  border: 1.5px solid #ffffff;
  box-shadow: 2px 2px 0 #0f172a, 3px 3px 0 #0f172a, 4px 6px 10px rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #93c5fd;
  font-weight: 800;
  font-size: 0.72rem;
}

/* Open Deck & Discard Zone */
.open-deck-slot {
  width: var(--card-width);
  height: var(--card-height);
  border-radius: var(--card-radius);
  border: 1.5px dashed rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.2);
  transition: all 0.2s;
}
.open-deck-slot:hover {
  border-color: var(--gold-border);
  transform: scale(1.03);
}

/* Finish / Declare Slot */
.finish-deck-slot {
  width: var(--card-width);
  height: var(--card-height);
  border-radius: var(--card-radius);
  border: 1.5px dashed var(--gold-border);
  background: rgba(245, 158, 11, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 0 12px rgba(245, 158, 11, 0.25);
}
.finish-deck-slot:hover {
  background: rgba(245, 158, 11, 0.3);
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.6);
  transform: scale(1.04);
}

.empty-pile-placeholder {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.4);
}

/* Circular SVG Timer */
.turn-timer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.timer-svg-box {
  position: relative;
  width: 44px;
  height: 44px;
}

.timer-svg {
  transform: rotate(-90deg);
  width: 44px;
  height: 44px;
}

.timer-circle-bg {
  fill: none;
  stroke: rgba(255, 255, 255, 0.15);
  stroke-width: 3.5;
}

.timer-circle-progress {
  fill: none;
  stroke: #10b981;
  stroke-width: 3.5;
  stroke-linecap: round;
  stroke-dasharray: 119.38;
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 1s linear, stroke 0.3s ease;
}

.timer-seconds-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.82rem;
  font-weight: 800;
  color: #ffffff;
}

/* Turn Instruction Bar */
.turn-instruction-bar {
  display: flex;
  justify-content: center;
  margin: 2px 0;
}

.turn-instruction {
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 3px 14px;
  border-radius: 14px;
  font-size: 0.78rem;
  color: #fef08a;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}
.turn-instruction.pulse {
  animation: pulse-border 1.5s infinite;
}
.turn-instruction.ai-turn {
  color: #93c5fd;
}

@keyframes pulse-border {
  0% { border-color: rgba(251, 191, 36, 0.4); }
  50% { border-color: rgba(251, 191, 36, 1); box-shadow: 0 0 10px rgba(251, 191, 36, 0.6); }
  100% { border-color: rgba(251, 191, 36, 0.4); }
}

/* 3. Player Area (Bottom) */
.player-zone {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* Declaration HUD summary */
.declaration-hud {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0, 0, 0, 0.45);
  border-radius: 8px;
  padding: 3px 12px;
  font-size: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hud-checks-list {
  display: flex;
  gap: 12px;
}

.hud-check {
  display: flex;
  align-items: center;
  gap: 4px;
}
.hud-check.done { color: #34d399; font-weight: 700; }
.hud-check.missing { color: #f87171; }

/* Hand Groups Area */
.player-groups-container {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 2px 1px;
  min-height: 88px;
}

.hand-group-slot {
  flex: 1;
  min-width: 120px;
  background: rgba(0, 0, 0, 0.35);
  border-radius: 8px;
  padding: 4px 6px;
  border: 1.5px dashed rgba(255, 255, 255, 0.2);
  display: flex;
  flex-direction: column;
  gap: 3px;
  transition: all 0.2s ease;
}

.hand-group-slot.valid-pure {
  border: 1.5px solid var(--pure-color);
  background: rgba(16, 185, 129, 0.08);
}
.hand-group-slot.valid-impure {
  border: 1.5px solid var(--impure-color);
  background: rgba(59, 130, 246, 0.08);
}
.hand-group-slot.valid-set {
  border: 1.5px solid var(--set-color);
  background: rgba(245, 158, 11, 0.08);
}
.hand-group-slot.invalid {
  border: 1.5px solid var(--invalid-color);
  background: rgba(239, 68, 68, 0.08);
}

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

.group-title {
  font-size: 0.68rem;
  font-weight: 700;
  color: #d1d5db;
  text-transform: uppercase;
}

.group-badge {
  font-size: 0.62rem;
  padding: 1px 5px;
  border-radius: 8px;
  font-weight: 700;
  text-transform: uppercase;
}
.badge-pure { background: var(--pure-color); color: #000; }
.badge-impure { background: var(--impure-color); color: #fff; }
.badge-set { background: var(--set-color); color: #000; }
.badge-invalid { background: var(--invalid-color); color: #fff; }

.group-card-list {
  display: flex;
  align-items: center;
  min-height: 78px;
  padding: 1px 0;
}

/* Playing Card Component */
.card-item {
  width: var(--card-width);
  height: var(--card-height);
  background: #ffffff;
  border-radius: var(--card-radius);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 3px;
  position: relative;
  cursor: pointer;
  transition: transform 0.15s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.15s ease;
  margin-left: -24px;
  flex-shrink: 0;
}
.card-item:first-child {
  margin-left: 0;
}

.card-item:hover {
  transform: translateY(-6px);
  z-index: 10;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.6);
}

.card-item.selected {
  transform: translateY(-12px);
  outline: 2.5px solid var(--gold-border);
  z-index: 20;
  box-shadow: 0 8px 16px rgba(245, 158, 11, 0.5);
}

.card-item.is-joker {
  background: #fffbeb;
  border: 1.5px solid #f59e0b;
}

.card-item.dragging {
  opacity: 0.4;
}

.card-corner {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}
.card-corner.top-left { align-self: flex-start; }
.card-corner.bottom-right { align-self: flex-end; transform: rotate(180deg); }

.card-rank { font-weight: 800; font-size: 0.78rem; }
.card-suit { font-size: 0.7rem; }
.card-center { align-self: center; font-size: 1.05rem; line-height: 1; }

.card-item.red { color: #dc2626; }
.card-item.black { color: #111827; }
.card-item.purple { color: #7c3aed; }

.joker-ribbon {
  position: absolute;
  top: 1px;
  right: 1px;
  background: #f59e0b;
  color: #000;
  font-size: 0.45rem;
  font-weight: 900;
  padding: 1px 3px;
  border-radius: 2px;
}

/* Player Action Bar */
.player-actions-bar {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 2px 0;
}

.game-btn {
  background: linear-gradient(180deg, #374151 0%, #1f2937 100%);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 5px 12px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.78rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: all 0.15s ease;
}
.game-btn:hover:not(:disabled) {
  transform: translateY(-1px);
  filter: brightness(1.15);
}
.game-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.game-btn.btn-primary {
  background: linear-gradient(180deg, #10b981 0%, #059669 100%);
  border-color: #34d399;
}
.game-btn.btn-gold {
  background: linear-gradient(180deg, #f59e0b 0%, #d97706 100%);
  color: #000;
  border-color: #fbbf24;
}
.game-btn.btn-danger {
  background: linear-gradient(180deg, #ef4444 0%, #dc2626 100%);
  border-color: #f87171;
}

/* Notification Toast */
.game-toast {
  position: fixed;
  top: 70px;
  left: 50%;
  transform: translateX(-50%) translateY(-30px);
  background: rgba(17, 24, 39, 0.95);
  color: #fff;
  padding: 10px 24px;
  border-radius: 30px;
  font-size: 0.92rem;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 1000;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.game-toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}
.game-toast.toast-warning { border-color: #f59e0b; color: #fde68a; }
.game-toast.toast-error { border-color: #ef4444; color: #fca5a5; }
.game-toast.toast-win { border-color: #10b981; color: #6ee7b7; }

/* Modal Overlays */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}
.modal-overlay.hidden {
  display: none;
}

.modal-card {
  background: #1e293b;
  border: 2px solid var(--gold-accent);
  border-radius: 16px;
  padding: 24px;
  width: 90%;
  max-width: 420px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
}

/* Rewarded Ad Modal */
.ad-modal-card {
  background: #090d16;
  border: 2px solid #3b82f6;
  border-radius: 16px;
  padding: 24px;
  width: 90%;
  max-width: 440px;
  text-align: center;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.9);
}

.ad-video-screen {
  background: #111827;
  border-radius: 12px;
  height: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 16px 0;
  border: 1px dashed rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.ad-progress-bar-bg {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  position: absolute;
  bottom: 0;
  left: 0;
}
.ad-progress-bar {
  height: 100%;
  background: #10b981;
  width: 0%;
  transition: width 1s linear;
}

/* Themes Modal */
.themes-modal-card {
  background: #0f172a;
  border: 2px solid var(--gold-border);
  border-radius: 20px;
  padding: 24px;
  width: 95%;
  max-width: 750px;
  max-height: 85vh;
  overflow-y: auto;
}

.themes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 14px;
  margin: 16px 0;
}

.theme-card {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
}
.theme-card.active-theme {
  border-color: var(--gold-border);
  background: rgba(245, 158, 11, 0.1);
}

.theme-color-preview {
  width: 100%;
  height: 60px;
  border-radius: 8px;
  border: 2px solid;
  display: flex;
  align-items: center;
  justify-content: center;
}

.theme-title { font-weight: 800; font-size: 0.95rem; color: #fff; }
.theme-desc { font-size: 0.75rem; color: #94a3b8; line-height: 1.2; min-height: 28px; }
.theme-price { font-weight: 800; color: #fbbf24; font-size: 0.85rem; }

/* Round End Scoreboard Modal (Large) */
.scoreboard-modal-card {
  background: #0f172a;
  border: 2px solid var(--gold-border);
  border-radius: 20px;
  padding: 24px;
  width: 95%;
  max-width: 860px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.scoreboard-winner-banner {
  padding: 12px 20px;
  border-radius: 12px;
  font-size: 1.25rem;
  font-weight: 800;
  text-align: center;
}
.scoreboard-winner-banner.win {
  background: rgba(16, 185, 129, 0.2);
  border: 1px solid #10b981;
  color: #34d399;
}
.scoreboard-winner-banner.loss {
  background: rgba(239, 68, 68, 0.2);
  border: 1px solid #ef4444;
  color: #f87171;
}

.scoreboard-players-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.scoreboard-player-col {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.scoreboard-player-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 8px;
}

.scoreboard-player-name {
  font-weight: 800;
  font-size: 1.05rem;
  color: #fde68a;
}

.scoreboard-melds-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 240px;
  overflow-y: auto;
}

.scoreboard-meld-item {
  background: rgba(0, 0, 0, 0.4);
  border-radius: 8px;
  padding: 6px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.scoreboard-meld-header {
  display: flex;
  justify-content: flex-start;
}

.scoreboard-cards-row {
  display: flex;
  gap: -18px;
}
.scoreboard-cards-row .card-item {
  width: 46px;
  height: 66px;
  margin-left: -18px;
  padding: 3px;
}
.scoreboard-cards-row .card-item:first-child {
  margin-left: 0;
}
.scoreboard-cards-row .card-rank { font-size: 0.72rem; }
.scoreboard-cards-row .card-suit { font-size: 0.65rem; }
.scoreboard-cards-row .card-center { font-size: 0.95rem; }

.scoreboard-stats-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 8px;
  font-size: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.scoreboard-actions {
  display: flex;
  justify-content: center;
  margin-top: 8px;
}

/* Tutorial Modal */
.tutorial-modal-card {
  background: #0f172a;
  border: 2px solid var(--gold-border);
  border-radius: 20px;
  padding: 24px;
  width: 95%;
  max-width: 800px;
  max-height: 85vh;
  overflow-y: auto;
  color: #e2e8f0;
}

.tutorial-section {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 16px;
  margin-top: 14px;
}

.tutorial-section h4 {
  color: var(--gold-border);
  margin-bottom: 8px;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.tutorial-section p, .tutorial-section ul {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #cbd5e1;
}

.tutorial-section ul {
  margin-left: 20px;
  margin-top: 6px;
}

.tutorial-section li {
  margin-bottom: 4px;
}

.tutorial-card-example {
  display: inline-flex;
  gap: 4px;
  background: rgba(0, 0, 0, 0.4);
  padding: 4px 8px;
  border-radius: 6px;
  font-family: monospace;
  font-weight: 700;
  color: #fde68a;
  margin: 4px 0;
}

