/* ============================================================
   Sucker Pot - Dark Purple Theme
   Mobile-first, optimized for Pi Browser (375px+)
   ============================================================ */

/* ---- Reset & Base ---- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --bg-primary:      #0a0a1a;
    --bg-secondary:    #10102a;
    --bg-card:         #14143a;
    --bg-card-hover:   #1a1a4a;
    --purple-dark:     #4c1d95;
    --purple-mid:      #6d28d9;
    --purple-accent:   #7c3aed;
    --purple-light:    #a78bfa;
    --purple-glow:     rgba(124, 58, 237, 0.35);
    --red-dark:        #7f1d1d;
    --red-mid:         #b91c1c;
    --red-accent:      #ef4444;
    --red-glow:        rgba(239, 68, 68, 0.3);
    --green-dark:      #064e3b;
    --green-mid:       #059669;
    --green-accent:    #10b981;
    --green-glow:      rgba(16, 185, 129, 0.3);
    --text-primary:    #f0f0ff;
    --text-secondary:  #9090c0;
    --text-muted:      #5050a0;
    --border-subtle:   rgba(124, 58, 237, 0.2);
    --border-active:   rgba(124, 58, 237, 0.6);
    --radius-sm:       8px;
    --radius-md:       12px;
    --radius-lg:       20px;
    --radius-xl:       28px;
    --shadow-purple:   0 4px 24px rgba(124, 58, 237, 0.25);
    --shadow-card:     0 2px 16px rgba(0, 0, 0, 0.5);
    --transition:      0.2s ease;
    --font-main:       'Segoe UI', system-ui, -apple-system, sans-serif;
}

html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-main);
    min-height: 100vh;
    min-height: 100dvh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ============================================================
   Loading Screen
   ============================================================ */
#screen-loading {
    position: fixed;
    inset: 0;
    background: var(--bg-primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 100;
    gap: 24px;
}

.loading-logo {
    width: 88px;
    height: 88px;
    background: linear-gradient(135deg, var(--purple-mid), var(--purple-accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    font-weight: 900;
    color: #fff;
    box-shadow: 0 0 40px var(--purple-glow), 0 0 80px rgba(124, 58, 237, 0.15);
    animation: pulse-logo 1.8s ease-in-out infinite;
    user-select: none;
}

@keyframes pulse-logo {
    0%, 100% { transform: scale(1);    box-shadow: 0 0 40px var(--purple-glow), 0 0 80px rgba(124, 58, 237, 0.15); }
    50%       { transform: scale(1.08); box-shadow: 0 0 60px var(--purple-glow), 0 0 120px rgba(124, 58, 237, 0.25); }
}

.loading-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    letter-spacing: 0.08em;
    animation: fade-pulse 1.8s ease-in-out infinite;
}

@keyframes fade-pulse {
    0%, 100% { opacity: 0.5; }
    50%       { opacity: 1;   }
}

.loading-dots::after {
    content: '';
    animation: dots 1.5s steps(3, end) infinite;
}

@keyframes dots {
    0%   { content: '';   }
    33%  { content: '.';  }
    66%  { content: '..'; }
    100% { content: '...'; }
}

/* ============================================================
   Game Screen Layout
   ============================================================ */
#screen-game {
    display: none;
    flex-direction: column;
    min-height: 100vh;
    min-height: 100dvh;
    padding-bottom: 24px;
}

#screen-game.active {
    display: flex;
}

/* ---- App Header ---- */
.app-header {
    background: linear-gradient(180deg, var(--bg-secondary) 0%, transparent 100%);
    padding: 16px 20px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border-subtle);
    position: sticky;
    top: 0;
    z-index: 10;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-pi-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--purple-mid), var(--purple-accent));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 900;
    color: #fff;
    box-shadow: var(--shadow-purple);
    flex-shrink: 0;
}

.header-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 0.02em;
}

.header-subtitle {
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* ---- Header Right (lang toggle + user badge) ---- */
.header-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.lang-btn {
    background: rgba(124, 58, 237, 0.15);
    border: 1px solid var(--border-subtle);
    color: var(--purple-light);
    border-radius: var(--radius-sm);
    padding: 4px 10px;
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: 0.05em;
    transition: background var(--transition), border-color var(--transition);
    flex-shrink: 0;
}

.lang-btn:hover {
    background: rgba(124, 58, 237, 0.3);
    border-color: var(--border-active);
}

/* ---- User Badge ---- */
.user-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    padding: 6px 12px 6px 8px;
}

.user-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--purple-mid), var(--purple-accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.user-name {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-primary);
    max-width: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* ---- Main Content ---- */
.main-content {
    flex: 1;
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
}

/* ============================================================
   Stammtisch Selector
   ============================================================ */
.stammtisch-selector {
    padding: 12px 16px 0;
}

.stammtisch-label {
    display: block;
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
}

.stammtisch-tabs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

/* 5th tab spans full width */
.stab.stab-wide {
    grid-column: 1 / -1;
}

.stab {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 8px 14px;
    background: var(--bg-card);
    border: 1.5px solid var(--border-subtle);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition);
}

.stab.active {
    background: rgba(124, 58, 237, 0.2);
    border-color: var(--purple-accent);
    box-shadow: 0 0 12px rgba(124, 58, 237, 0.2);
}

.stab:hover:not(.active) {
    border-color: rgba(124, 58, 237, 0.4);
    background: rgba(124, 58, 237, 0.08);
}

.stab-name {
    font-size: 0.7rem;
    color: var(--text-secondary);
    white-space: nowrap;
}

.stab.active .stab-name {
    color: var(--purple-light);
    font-weight: 600;
}

.stab-amount {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-primary);
}

.stab.active .stab-amount {
    color: #fff;
}

/* ============================================================
   Round Card
   ============================================================ */
.round-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 20px;
    box-shadow: var(--shadow-card);
}

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

.round-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
}

.round-id {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.round-status-badge {
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.round-status-badge.waiting {
    background: rgba(124, 58, 237, 0.15);
    color: var(--purple-light);
    border: 1px solid rgba(124, 58, 237, 0.3);
}

.round-status-badge.full {
    background: rgba(234, 179, 8, 0.15);
    color: #fbbf24;
    border: 1px solid rgba(234, 179, 8, 0.3);
}

.round-status-badge.completed {
    background: rgba(16, 185, 129, 0.15);
    color: var(--green-accent);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

/* ---- Progress Bar ---- */
.round-progress {
    margin-bottom: 16px;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.78rem;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.progress-track {
    height: 6px;
    background: rgba(255,255,255,0.06);
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--purple-mid), var(--purple-accent));
    border-radius: 3px;
    transition: width 0.4s ease;
    min-width: 0;
}

/* ---- Zeche Info ---- */
.zeche-info {
    display: flex;
    gap: 8px;
}

.info-chip {
    flex: 1;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    padding: 10px;
    text-align: center;
}

.info-chip .chip-label {
    font-size: 0.65rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 3px;
}

.info-chip .chip-value {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--purple-light);
}

.info-chip.highlight .chip-value {
    color: var(--red-accent);
}

/* ============================================================
   Seat Grid
   5 columns x 2 rows = 10 seats
   ============================================================ */
.seats-section {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 20px;
    box-shadow: var(--shadow-card);
}

.seats-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

.seat-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

/* ---- Individual Seat ---- */
.seat {
    aspect-ratio: 1;
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    border: 2px solid transparent;
    cursor: default;
    transition: transform var(--transition), box-shadow var(--transition);
    position: relative;
    overflow: hidden;
}

.seat-num {
    font-size: 0.85rem;
    font-weight: 800;
    line-height: 1;
}

.seat-user {
    font-size: 0.55rem;
    font-weight: 500;
    max-width: 90%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    opacity: 0.8;
}

/* Free seat */
.seat.free {
    background: rgba(255,255,255,0.04);
    border-color: rgba(255,255,255,0.08);
}

.seat.free .seat-num {
    color: var(--text-muted);
}

/* Taken seat (someone else) */
.seat.taken {
    background: rgba(124, 58, 237, 0.12);
    border-color: rgba(124, 58, 237, 0.3);
}

.seat.taken .seat-num {
    color: var(--purple-light);
}

.seat.taken .seat-user {
    color: var(--purple-light);
}

/* My seat */
.seat.my-seat {
    background: linear-gradient(135deg, rgba(109, 40, 217, 0.4), rgba(124, 58, 237, 0.5));
    border-color: var(--purple-accent);
    box-shadow: 0 0 16px var(--purple-glow);
    animation: my-seat-pulse 2.5s ease-in-out infinite;
}

.seat.my-seat .seat-num {
    color: #fff;
}

.seat.my-seat .seat-user {
    color: rgba(255,255,255,0.85);
}

@keyframes my-seat-pulse {
    0%, 100% { box-shadow: 0 0 16px var(--purple-glow); }
    50%       { box-shadow: 0 0 28px rgba(124, 58, 237, 0.5); }
}

/* Zeche seat (slot 10) - free */
.seat.zeche-free {
    background: rgba(239, 68, 68, 0.06);
    border-color: rgba(239, 68, 68, 0.2);
}

.seat.zeche-free .seat-num {
    color: var(--red-accent);
}

/* Zeche seat taken by someone else */
.seat.zeche-taken {
    background: rgba(239, 68, 68, 0.12);
    border-color: rgba(239, 68, 68, 0.35);
}

.seat.zeche-taken .seat-num {
    color: var(--red-accent);
}

.seat.zeche-taken .seat-user {
    color: rgba(239, 68, 68, 0.8);
}

/* My zeche seat */
.seat.my-zeche {
    background: linear-gradient(135deg, rgba(185, 28, 28, 0.4), rgba(239, 68, 68, 0.4));
    border-color: var(--red-accent);
    box-shadow: 0 0 16px var(--red-glow);
    animation: zeche-pulse 1.8s ease-in-out infinite;
}

.seat.my-zeche .seat-num {
    color: #fff;
}

.seat.my-zeche .seat-user {
    color: rgba(255,255,255,0.85);
}

@keyframes zeche-pulse {
    0%, 100% { box-shadow: 0 0 16px var(--red-glow); }
    50%       { box-shadow: 0 0 30px rgba(239, 68, 68, 0.5); }
}

/* Payout status dots on seat */
.seat::after {
    content: '';
    position: absolute;
    bottom: 4px;
    right: 4px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    display: none;
}

.seat.payout-processing::after {
    display: block;
    background: #fbbf24;
    animation: dot-blink 1s infinite;
}

.seat.payout-completed::after {
    display: block;
    background: var(--green-accent);
}

@keyframes dot-blink {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.2; }
}

/* ============================================================
   Action Button Area
   ============================================================ */
.action-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* ---- Buttons ---- */
.btn {
    width: 100%;
    padding: 16px 24px;
    border: none;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 700;
    font-family: var(--font-main);
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition), opacity var(--transition);
    letter-spacing: 0.02em;
    position: relative;
    overflow: hidden;
    -webkit-tap-highlight-color: transparent;
}

.btn:active:not(:disabled) {
    transform: scale(0.97);
}

.btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

/* Primary (purple) */
.btn-primary {
    background: linear-gradient(135deg, var(--purple-mid), var(--purple-accent));
    color: #fff;
    box-shadow: 0 4px 20px var(--purple-glow);
}

.btn-primary:hover:not(:disabled) {
    box-shadow: 0 6px 28px rgba(124, 58, 237, 0.45);
    transform: translateY(-1px);
}

/* Danger (red) - zeche button */
.btn-danger {
    background: linear-gradient(135deg, var(--red-mid), var(--red-accent));
    color: #fff;
    box-shadow: 0 4px 20px var(--red-glow);
}

.btn-danger:hover:not(:disabled) {
    box-shadow: 0 6px 28px rgba(239, 68, 68, 0.45);
    transform: translateY(-1px);
}

/* Success (green) */
.btn-success {
    background: linear-gradient(135deg, var(--green-mid), var(--green-accent));
    color: #fff;
    box-shadow: 0 4px 20px var(--green-glow);
}

.btn-success:hover:not(:disabled) {
    box-shadow: 0 6px 28px rgba(16, 185, 129, 0.45);
    transform: translateY(-1px);
}

/* Secondary (ghost) */
.btn-secondary {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border-subtle);
}

.btn-secondary:hover:not(:disabled) {
    background: rgba(255,255,255,0.04);
    border-color: var(--border-active);
    color: var(--text-primary);
}

/* Loading spinner inside button */
.btn .btn-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
    vertical-align: middle;
    margin-right: 8px;
}

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

/* ---- Action Info Box ---- */
.action-info {
    background: rgba(124, 58, 237, 0.08);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.action-info.danger-info {
    background: rgba(239, 68, 68, 0.08);
    border-color: rgba(239, 68, 68, 0.2);
    color: rgba(239, 68, 68, 0.85);
}

.action-info.success-info {
    background: rgba(16, 185, 129, 0.08);
    border-color: rgba(16, 185, 129, 0.2);
    color: rgba(16, 185, 129, 0.85);
}

/* ============================================================
   Rules / Info Card
   ============================================================ */
.rules-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 16px 20px;
}

.rules-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}

.rules-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.rules-list li {
    font-size: 0.82rem;
    color: var(--text-secondary);
    padding-left: 16px;
    position: relative;
    line-height: 1.45;
}

.rules-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--purple-accent);
}

.rules-list li strong {
    color: var(--text-primary);
}

/* ============================================================
   Toast Notifications
   ============================================================ */
#toast-container {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 200;
    display: flex;
    flex-direction: column-reverse;
    gap: 8px;
    align-items: center;
    pointer-events: none;
    width: calc(100% - 32px);
    max-width: 400px;
}

.toast {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.5);
    border: 1px solid var(--border-subtle);
    width: 100%;
    pointer-events: auto;
    animation: toast-in 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.toast::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    border-radius: 2px 0 0 2px;
}

.toast.toast-success::before { background: var(--green-accent); }
.toast.toast-error::before   { background: var(--red-accent); }
.toast.toast-info::before    { background: var(--purple-accent); }
.toast.toast-warning::before { background: #fbbf24; }

.toast-icon {
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 1px;
}

.toast-body {
    flex: 1;
    min-width: 0;
}

.toast-title {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.toast-msg {
    font-size: 0.78rem;
    color: var(--text-secondary);
    line-height: 1.4;
    word-break: break-word;
}

.toast-close {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 1rem;
    line-height: 1;
    padding: 0;
    flex-shrink: 0;
    margin-top: 1px;
}

.toast-close:hover {
    color: var(--text-secondary);
}

@keyframes toast-in {
    from { opacity: 0; transform: translateY(20px) scale(0.95); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

.toast.toast-out {
    animation: toast-out 0.25s ease forwards;
}

@keyframes toast-out {
    to { opacity: 0; transform: translateY(10px) scale(0.97); max-height: 0; padding: 0; margin: 0; }
}

/* ============================================================
   Empty / placeholder states
   ============================================================ */
.empty-state {
    text-align: center;
    padding: 32px 16px;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ============================================================
   Utility
   ============================================================ */
.hidden { display: none !important; }

.text-center { text-align: center; }

.mt-4  { margin-top: 4px;  }
.mt-8  { margin-top: 8px;  }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }

/* Divider */
.divider {
    height: 1px;
    background: var(--border-subtle);
    margin: 4px 0;
}

/* ============================================================
   Responsive adjustments (>= 480px)
   ============================================================ */
@media (min-width: 480px) {
    .main-content {
        padding: 24px 20px;
    }

    .seat-grid {
        gap: 12px;
    }

    .seat-num {
        font-size: 1rem;
    }

    .seat-user {
        font-size: 0.62rem;
    }

    .btn {
        font-size: 1.05rem;
    }
}

/* ---- Footer ---- */
.app-footer {
    text-align: center;
    padding: 20px 16px 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.app-footer a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color var(--transition);
}

.app-footer a:hover { color: var(--purple-light); }

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

/* ============================================================
   Pi Browser Required Overlay
   ============================================================ */
#pi-browser-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: linear-gradient(160deg, #0a0a1a 0%, #1a0a3a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 24px;
}

.pbo-inner {
    max-width: 340px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.pbo-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--purple-dark), var(--purple-accent));
    box-shadow: 0 0 40px var(--purple-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    font-weight: 900;
    color: #fff;
}

.pbo-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.pbo-msg {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.pbo-store {
    margin-top: 8px;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 14px 24px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.pbo-store-label {
    font-size: 1rem;
    font-weight: 700;
    color: var(--purple-light);
}

.pbo-store-sub {
    font-size: 0.75rem;
    color: var(--text-muted);
}
