/* =============================================================
   Ratz-GG Tournaments — Unified Design System
   Lilac purple identity. Inspired by lycoris.naraka.wiki + old UI.
   ============================================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Rajdhani:wght@500;600;700&display=swap');

/* ── 1. Design Tokens ─────────────────────────────────────── */
:root {
    /* Surfaces */
    --bg-primary: #060609;
    --bg-secondary: #0A0A10;
    --bg-card: #0F0F17;
    --bg-hover: #16161F;
    --bg-elevated: #1A1A24;
    --glass: rgba(255, 255, 255, 0.025);
    --glass-border: rgba(255, 255, 255, 0.07);
    --premium-blur: blur(16px);

    /* Accent — Lilac purple brand */
    --accent: #B07CFF;
    --accent-hover: #C49AFF;
    --accent-glow: rgba(176, 124, 255, 0.40);
    --accent-text: #fff;
    --accent-soft: rgba(176, 124, 255, 0.10);
    --accent-muted: rgba(176, 124, 255, 0.06);
    --accent-gradient: linear-gradient(135deg, #B07CFF 0%, #8B5CF6 50%, #7C3AED 100%);
    --accent-gradient-soft: linear-gradient(135deg, rgba(176,124,255,0.15), rgba(139,92,246,0.08));

    /* Semantic */
    --green: #34D399;
    --green-soft: rgba(52, 211, 153, 0.12);
    --green-glow: rgba(52, 211, 153, 0.25);
    --orange: #FBBF24;
    --orange-soft: rgba(251, 191, 36, 0.12);
    --red: #F87171;
    --red-soft: rgba(248, 113, 113, 0.12);
    --blue: #60A5FA;
    --blue-soft: rgba(96, 165, 250, 0.12);

    /* Text */
    --text: #F0EDF6;
    --text-secondary: #9B95A8;
    --text-muted: #5C576A;

    /* Borders */
    --border: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(176, 124, 255, 0.25);

    /* Shadows */
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 24px rgba(176, 124, 255, 0.12);
    --shadow-elevated: 0 8px 32px rgba(0, 0, 0, 0.4);

    /* Layout */
    --sidebar-width: 260px;
    --sidebar-collapsed-width: 56px;
    --max-width: 1200px;

    /* Logo font */
    --font-logo: 'Rajdhani', sans-serif;

    /* Radius */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 14px;
    --radius-xl: 18px;
}

/* ── 2. Reset & Base ──────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background: var(--bg-primary);
    color: var(--text);
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    line-height: 1.55;
    overflow-x: hidden;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Mesh gradient background */
body::before {
    content: '';
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background:
        radial-gradient(ellipse at 15% 10%, rgba(176, 124, 255, 0.03) 0%, transparent 50%),
        radial-gradient(ellipse at 85% 80%, rgba(139, 92, 246, 0.02) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, #0A0A10 0%, #060609 100%);
    pointer-events: none; z-index: -2;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* Custom scrollbar */
::-webkit-scrollbar { width: 5px; height: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(176, 124, 255, 0.2); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(176, 124, 255, 0.35); }

/* Selection */
::selection { background: rgba(176, 124, 255, 0.3); color: #fff; }

/* ── 3. Typography ────────────────────────────────────────── */
h1, h2, h3, h4 { font-weight: 700; line-height: 1.2; color: #fff; }
h1 { font-size: 28px; font-weight: 800; }
h2 { font-size: 22px; }
h3 { font-size: 18px; }
h4 { font-size: 15px; }

.section-title {
    font-size: 13px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.8px; color: var(--text-muted);
    margin-bottom: 16px;
    display: flex; align-items: center; gap: 8px;
}
.section-title::after {
    content: ''; flex: 1; height: 1px;
    background: linear-gradient(90deg, var(--border), transparent);
}

/* ── 4. Buttons ───────────────────────────────────────────── */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 6px; padding: 9px 18px; border-radius: var(--radius-md);
    font-size: 13px; font-weight: 600; cursor: pointer;
    border: 1px solid transparent; transition: all 0.2s cubic-bezier(0.4,0,0.2,1);
    text-decoration: none; white-space: nowrap;
    font-family: inherit; position: relative; overflow: hidden;
}

.btn-primary {
    background: var(--accent-gradient); color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 14px var(--accent-glow);
}
.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 24px var(--accent-glow);
    filter: brightness(1.08);
}
.btn-primary:active { transform: translateY(0) scale(0.98); }

.btn-secondary {
    background: rgba(255,255,255,0.04); color: var(--text-secondary);
    border: 1px solid var(--border);
}
.btn-secondary:hover {
    background: rgba(255,255,255,0.08); color: #fff;
    border-color: var(--border-hover);
}

.btn-success {
    background: var(--green); color: #000;
    border-color: var(--green);
    box-shadow: 0 4px 12px var(--green-glow);
}
.btn-success:hover {
    filter: brightness(1.08);
    box-shadow: 0 6px 20px var(--green-glow);
}

.btn-danger {
    background: var(--red); color: #fff;
    border-color: var(--red);
}
.btn-danger:hover { filter: brightness(1.1); }

.btn-ghost {
    background: transparent; color: var(--text-secondary);
    border: none; padding: 6px 12px;
}
.btn-ghost:hover { color: var(--accent); background: var(--accent-muted); }

.btn-sm { padding: 5px 12px; font-size: 11px; border-radius: var(--radius-sm); }
.btn-lg { padding: 12px 28px; font-size: 15px; border-radius: var(--radius-lg); }

/* Discord login button */
.btn-discord {
    background: #5865F2; color: #fff; border-color: #5865F2;
    box-shadow: 0 4px 12px rgba(88, 101, 242, 0.3);
}
.btn-discord:hover { filter: brightness(1.1); box-shadow: 0 6px 20px rgba(88, 101, 242, 0.4); }

/* ── 5. Badges ────────────────────────────────────────────── */
.badge {
    padding: 3px 10px; border-radius: 20px;
    font-size: 10px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.5px;
    display: inline-flex; align-items: center; gap: 4px;
}
.badge-live {
    background: var(--red-soft); color: var(--red);
    box-shadow: 0 0 8px rgba(248, 113, 113, 0.3);
    animation: livePulse 2s infinite;
}
.badge-checkin { background: var(--orange-soft); color: var(--orange); }
.badge-open { background: var(--green-soft); color: var(--green); }
.badge-completed { background: rgba(255,255,255,0.06); color: var(--text-muted); }
.badge-draft { background: rgba(255,255,255,0.04); color: var(--text-muted); }

/* Live dot for badges */
.badge-live::before {
    content: ''; width: 6px; height: 6px; border-radius: 50%;
    background: var(--red); animation: liveDot 1.5s infinite;
}

@keyframes livePulse {
    0%, 100% { box-shadow: 0 0 8px rgba(248, 113, 113, 0.2); }
    50% { box-shadow: 0 0 16px rgba(248, 113, 113, 0.4); }
}
@keyframes liveDot {
    0%, 100% { opacity: 1; } 50% { opacity: 0.4; }
}

/* Game badge — subtle inline pill */
.badge-game {
    font-size: 9px; font-weight: 700; padding: 2px 7px; border-radius: 4px;
    letter-spacing: 0.5px; text-transform: uppercase;
}
.badge-game.naraka { background: rgba(176,124,255,0.12); color: #B07CFF; }
.badge-game.wwm { background: rgba(96,165,250,0.12); color: #60A5FA; }

/* ── 6. Cards ─────────────────────────────────────────────── */
.glass-panel {
    background: rgba(255, 255, 255, 0.02); backdrop-filter: var(--premium-blur);
    border: 1px solid var(--border); border-radius: var(--radius-xl);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Tournament card */
.tournament-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 0;
    transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
    cursor: pointer; position: relative; overflow: hidden;
}
.tournament-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-3px);
    box-shadow: var(--shadow-card), var(--shadow-glow);
}
.tournament-card .card-image {
    width: 100%; height: 140px; object-fit: cover;
    background: linear-gradient(135deg, var(--bg-elevated), var(--bg-card));
    position: relative;
}
.tournament-card .card-image img {
    width: 100%; height: 100%; object-fit: cover;
    opacity: 0.6; transition: opacity 0.3s;
}
.tournament-card:hover .card-image img { opacity: 0.75; }
.tournament-card .card-image-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(19,19,27,0.95) 100%);
}
.tournament-card .card-body { padding: 16px 18px; }
.tournament-card .card-badges {
    display: flex; gap: 6px; align-items: center;
    margin-bottom: 10px;
}
.tournament-card .card-title {
    font-size: 15px; font-weight: 700; color: #fff;
    line-height: 1.3; margin-bottom: 6px;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.tournament-card .card-host {
    display: flex; align-items: center; gap: 8px;
    margin-bottom: 12px;
}
.tournament-card .card-host img {
    width: 22px; height: 22px; border-radius: 50%;
    border: 1.5px solid var(--border);
}
.tournament-card .card-host span {
    font-size: 12px; color: var(--text-secondary);
}
.tournament-card .card-meta {
    display: flex; flex-wrap: wrap; gap: 10px;
    font-size: 12px; color: var(--text-muted);
}
.tournament-card .card-meta-item {
    display: flex; align-items: center; gap: 4px;
}
.tournament-card .card-footer {
    display: flex; align-items: center; justify-content: space-between;
    padding: 12px 18px; border-top: 1px solid var(--border);
}
.tournament-card .card-players {
    display: flex; align-items: center; gap: 6px;
    font-size: 12px; color: var(--text-secondary); font-weight: 600;
}
.tournament-card .card-date {
    font-size: 11px; color: var(--text-muted);
}

/* Featured card — large hero banner variant */
.tournament-card.featured {
    grid-column: 1 / -1;
}
.tournament-card.featured .card-image { height: 200px; }

/* Accent bar at top of card */
.tournament-card .accent-bar {
    position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: var(--accent-gradient); opacity: 0;
    transition: opacity 0.3s;
}
.tournament-card:hover .accent-bar { opacity: 1; }

/* Player avatar stack inside cards */
.avatar-stack {
    display: flex; align-items: center;
}
.avatar-stack img {
    width: 24px; height: 24px; border-radius: 50%;
    border: 2px solid var(--bg-card); margin-left: -8px;
}
.avatar-stack img:first-child { margin-left: 0; }
.avatar-stack .avatar-more {
    width: 24px; height: 24px; border-radius: 50%;
    margin-left: -8px; border: 2px solid var(--bg-card);
    background: var(--accent-soft); color: var(--accent);
    font-size: 9px; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
}

/* ── 7. Participant Rows ──────────────────────────────────── */
.participant-row {
    display: flex; align-items: center; gap: 12px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-md); margin-bottom: 3px;
    transition: background 0.15s;
}
.participant-row:hover { background: rgba(255,255,255,0.04); }
.participant-avatar {
    width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0;
    border: 2px solid var(--border); object-fit: cover;
}
.participant-info { flex: 1; min-width: 0; }
.participant-name {
    font-size: 13px; font-weight: 600; color: #fff;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.participant-ign {
    font-size: 11px; color: var(--text-muted);
}
.participant-status {
    font-size: 10px; font-weight: 700; padding: 3px 8px;
    border-radius: 20px; text-transform: uppercase; letter-spacing: 0.3px;
}
.participant-status.checked-in {
    background: var(--green-soft); color: var(--green);
}
.participant-status.accepted {
    background: var(--blue-soft); color: var(--blue);
}
.participant-status.pending {
    background: var(--orange-soft); color: var(--orange);
}

/* Sidebar-compact participant (for flyout panels) */
.sidebar-participant {
    display: flex; align-items: center; gap: 8px;
    padding: 6px 10px; border-radius: var(--radius-sm);
    transition: background 0.15s; cursor: pointer;
}
.sidebar-participant:hover { background: rgba(255,255,255,0.04); }
.sidebar-participant img {
    width: 26px; height: 26px; border-radius: 50%;
    border: 1.5px solid var(--border);
}
.sidebar-participant .sp-name { font-size: 12px; font-weight: 600; }
.sidebar-participant .sp-ign { font-size: 10px; color: var(--text-muted); }

/* ── 8. Layout ────────────────────────────────────────────── */
.main-layout {
    max-width: var(--max-width); margin: 0 auto; padding: 32px;
}

.page-body {
    display: flex; gap: 32px;
    max-width: var(--max-width); margin: 0 auto; padding: 0 32px 64px;
}

.main-col { flex: 1; min-width: 0; }
.sidebar-col { width: 320px; flex-shrink: 0; }

/* Sidebar offset */
body.has-sidebar {
    padding-left: var(--sidebar-collapsed-width);
    transition: padding-left 0.25s cubic-bezier(0.4,0,0.2,1);
}
body.has-sidebar.sidebar-expanded { padding-left: var(--sidebar-width); }
@media (max-width: 900px) {
    body.has-sidebar, body.has-sidebar.sidebar-expanded { padding-left: 0 !important; }
}

/* Header */
.header {
    height: 56px; background: rgba(8, 8, 12, 0.88);
    backdrop-filter: var(--premium-blur);
    border-bottom: 1px solid var(--border);
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 24px; position: sticky; top: 0; z-index: 900;
}
.header::after {
    content: ''; position: absolute; bottom: -1px; left: 0; right: 0;
    height: 1px; background: linear-gradient(90deg, transparent, var(--accent-glow), transparent);
    opacity: 0.4;
}
.header-left { display: flex; align-items: center; gap: 12px; }
.header-brand { font-weight: 800; color: #fff; font-size: 15px; }
.header-sep { color: var(--text-muted); font-size: 12px; }
.header-page { color: var(--text-secondary); font-size: 13px; font-weight: 600; }
.header-right { display: flex; align-items: center; gap: 12px; }

/* Info block / panel (used on many pages) */
.info-block {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden; margin-bottom: 16px;
}
.info-block h3 {
    font-size: 12px; text-transform: uppercase; letter-spacing: 0.8px;
    color: var(--text-muted); padding: 16px 18px 0; margin-bottom: 12px;
    font-weight: 700;
}
.info-block .info-body { padding: 0 18px 18px; }
.info-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,0.03);
    font-size: 13px;
}
.info-row:last-child { border-bottom: none; }
.info-label { color: var(--text-muted); }
.info-value { color: var(--text); font-weight: 600; }

/* ── 9. Forms ─────────────────────────────────────────────── */
.form-group { margin-bottom: 16px; }
.form-label {
    display: block; font-size: 11px; font-weight: 700;
    color: var(--text-muted); margin-bottom: 6px;
    text-transform: uppercase; letter-spacing: 0.6px;
}
.form-input, .form-select, .form-textarea {
    width: 100%; padding: 10px 14px;
    background: rgba(255,255,255,0.03); border: 1px solid var(--border);
    border-radius: var(--radius-md); color: var(--text); font-size: 14px;
    font-family: inherit; transition: all 0.2s; outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-soft);
    background: rgba(176, 124, 255, 0.03);
}
.form-input::placeholder { color: var(--text-muted); }
.form-textarea { resize: vertical; min-height: 80px; }
.form-select { cursor: pointer; appearance: none; }

/* ── 10. Page Tabs ────────────────────────────────────────── */
.page-tabs {
    display: flex; gap: 3px; padding: 3px;
    background: rgba(255,255,255,0.02); border-radius: var(--radius-md);
    border: 1px solid var(--border);
}
.page-tab-btn {
    background: none; border: none; color: var(--text-muted);
    padding: 5px 12px; font-size: 12px; font-weight: 600;
    cursor: pointer; transition: all 0.2s;
    font-family: inherit; position: relative;
    border-radius: var(--radius-sm);
}
.page-tab-btn:hover { color: var(--text-secondary); background: rgba(255,255,255,0.04); }
.page-tab-btn.active {
    color: #fff; background: rgba(176,124,255,0.15); border-color: transparent;
    box-shadow: 0 0 8px rgba(176,124,255,0.1);
}
.page-tab-btn .tab-count {
    font-size: 10px; background: rgba(255,255,255,0.06);
    color: var(--text-muted); padding: 1px 6px; border-radius: 10px;
    margin-left: 6px;
}
.page-tab-btn.active .tab-count {
    background: var(--accent-soft); color: var(--accent);
}

/* ── 11. Modals ───────────────────────────────────────────── */
.modal-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.65);
    backdrop-filter: blur(6px); z-index: 2000;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transition: all 0.25s;
}
.modal-overlay.open { opacity: 1; visibility: visible; }

.modal-box {
    background: var(--bg-elevated); border: 1px solid var(--border);
    border-radius: var(--radius-xl); padding: 28px;
    max-width: 540px; width: 90%; max-height: 85vh; overflow-y: auto;
    transform: translateY(16px) scale(0.97); transition: all 0.25s;
    box-shadow: var(--shadow-elevated);
}
.modal-overlay.open .modal-box { transform: translateY(0) scale(1); }

.modal-header {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 20px;
}
.modal-title { font-size: 18px; font-weight: 700; }
.modal-close {
    width: 32px; height: 32px; border-radius: var(--radius-md);
    background: rgba(255,255,255,0.05); border: none;
    color: var(--text-muted); cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; transition: all 0.2s;
}
.modal-close:hover { background: rgba(255,255,255,0.1); color: var(--text); }

/* ── 12. Flyout Panel ─────────────────────────────────────── */
.flyout-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.4);
    z-index: 1500; opacity: 0; visibility: hidden; transition: all 0.25s;
}
.flyout-overlay.open { opacity: 1; visibility: visible; }

.flyout-panel {
    position: fixed; top: 0; right: 0; bottom: 0;
    width: 420px; max-width: 92vw;
    background: var(--bg-secondary); border-left: 1px solid var(--border);
    z-index: 1501; transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto; display: flex; flex-direction: column;
}
.flyout-panel.open { transform: translateX(0); }

.flyout-header {
    padding: 20px 24px; border-bottom: 1px solid var(--border);
    display: flex; align-items: center; justify-content: space-between;
    flex-shrink: 0;
}
.flyout-body { padding: 24px; flex: 1; overflow-y: auto; }

/* ── 13. Progress Bar ─────────────────────────────────────── */
.progress-bar {
    width: 100%; height: 5px; background: rgba(255,255,255,0.05);
    border-radius: 3px; overflow: hidden;
}
.progress-bar-fill {
    height: 100%; background: var(--accent-gradient);
    border-radius: 3px; transition: width 0.4s;
    box-shadow: 0 0 10px var(--accent-glow);
}

/* ── 14. Filter Chips ─────────────────────────────────────── */
.game-filter {
    display: flex; gap: 4px; padding: 3px;
    background: rgba(255,255,255,0.03); border-radius: var(--radius-md);
    border: 1px solid var(--border);
}
.game-filter-btn {
    padding: 6px 14px; border-radius: var(--radius-sm); border: none;
    background: transparent; color: var(--text-muted);
    font-size: 12px; font-weight: 600; cursor: pointer;
    transition: all 0.2s; font-family: inherit;
    display: flex; align-items: center; gap: 6px;
}
.game-filter-btn:hover { background: rgba(255,255,255,0.06); color: var(--text); }
.game-filter-btn.active { background: var(--accent); color: #fff; }

/* ── 15. Stat Cards (Hub, Profile) ────────────────────────── */
.stat-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 20px; text-align: center;
    transition: all 0.25s; position: relative; overflow: hidden;
}
.stat-card:hover {
    border-color: var(--border-hover);
    box-shadow: var(--shadow-glow);
}
.stat-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: var(--accent-gradient); opacity: 0; transition: opacity 0.2s;
}
.stat-card:hover::before { opacity: 1; }
.stat-value {
    font-size: 32px; font-weight: 900; line-height: 1; margin-bottom: 4px;
    background: var(--accent-gradient); -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-label {
    font-size: 11px; color: var(--text-muted);
    text-transform: uppercase; letter-spacing: 0.6px; font-weight: 600;
}

/* ── 16. Animations ───────────────────────────────────────── */
.fade-in { animation: fadeIn 0.4s ease-out forwards; opacity: 0; }
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

.slide-up { animation: slideUp 0.35s ease-out forwards; opacity: 0; }
@keyframes slideUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Stagger delay helpers */
.delay-1 { animation-delay: 50ms; }
.delay-2 { animation-delay: 100ms; }
.delay-3 { animation-delay: 150ms; }
.delay-4 { animation-delay: 200ms; }
.delay-5 { animation-delay: 250ms; }

/* ── 17. Responsive ───────────────────────────────────────── */
@media (max-width: 768px) {
    .page-body { flex-direction: column; padding: 0 16px 32px; gap: 20px; }
    .sidebar-col { width: 100%; }
    .main-layout { padding: 16px; }
    h1 { font-size: 22px; }
    h2 { font-size: 18px; }
    .tournament-card .card-image { height: 100px; }
}

/* ── 18. Utility Classes ──────────────────────────────────── */
.text-muted { color: var(--text-muted); }
.text-secondary { color: var(--text-secondary); }
.text-accent { color: var(--accent); }
.text-green { color: var(--green); }
.text-red { color: var(--red); }
.text-orange { color: var(--orange); }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-4 { gap: 4px; }
.gap-8 { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.hidden { display: none !important; }
.truncate { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
