/* ==========================================================================
   Gamerz Arena — 120 FPS Obsidian Cyberpunk UI & Game Styles (v3.0)
   ========================================================================== */

:root {
    --bg-main: #070a12;
    --bg-surface: #0e1322;
    --bg-card: rgba(16, 22, 38, 0.85);
    --border-card: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(0, 242, 254, 0.35);
    
    --accent-red: #ff3b30;
    --accent-red-glow: rgba(255, 59, 48, 0.4);
    --accent-cyan: #00f2fe;
    --accent-cyan-glow: rgba(0, 242, 254, 0.4);
    --accent-green: #22c55e;
    --accent-amber: #f59e0b;
    --accent-gold: #fbbf24;

    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;

    --font-main: 'Inter', system-ui, -apple-system, sans-serif;
    --font-heading: 'Outfit', 'Inter', sans-serif;
}

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

html, body {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: var(--font-main);
    user-select: none;
    -webkit-user-select: none;
}

#app-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    background: radial-gradient(circle at 50% 0%, #151d32 0%, #070a12 75%);
}

#victory-confetti-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 999;
}

/* ==========================================================================
   Header Bar (Compact & Clean on Mobile)
   ========================================================================== */

#arena-header {
    height: 50px;
    background: rgba(12, 16, 28, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-card);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 12px;
    z-index: 100;
    flex-shrink: 0;
}

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

.header-btn {
    height: 32px;
    padding: 0 10px;
    border-radius: 8px;
    border: 1px solid var(--border-card);
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-primary);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.15s ease;
}

.header-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
}

.header-btn:active {
    transform: scale(0.96);
}

.header-btn.secondary {
    background: rgba(255, 255, 255, 0.05);
}

.header-btn.accent {
    background: linear-gradient(135deg, var(--accent-red), #e11d48);
    border: none;
    box-shadow: 0 2px 8px var(--accent-red-glow);
}

.brand-title {
    display: flex;
    align-items: center;
}

.brand-glow {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 900;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.header-right {
    display: flex;
    align-items: center;
}

.player-pill {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 3px 10px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-card);
}

.player-tag {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 600;
}

.player-tag.you {
    color: var(--accent-cyan);
}

.player-tag.peer {
    color: var(--text-primary);
}

.tag-name {
    max-width: 65px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.vs-divider {
    font-size: 10px;
    opacity: 0.6;
}

.dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}

.dot.live {
    background: var(--accent-green);
    box-shadow: 0 0 6px var(--accent-green);
}

.dot.waiting {
    background: var(--accent-amber);
    box-shadow: 0 0 6px var(--accent-amber);
}

.dot.in-arena {
    background: #00f2fe;
    box-shadow: 0 0 8px #00f2fe;
    animation: arenaDotPulse 1.5s infinite ease-in-out;
}

@keyframes arenaDotPulse {
    0% { transform: scale(0.9); opacity: 0.8; }
    50% { transform: scale(1.3); opacity: 1; box-shadow: 0 0 10px #00f2fe; }
    100% { transform: scale(0.9); opacity: 0.8; }
}

/* ==========================================================================
   Lobby View
   ========================================================================== */

#lobby-view {
    flex: 1;
    overflow-y: auto;
    padding: 12px 12px 30px 12px;
    display: none;
    flex-direction: column;
    gap: 12px;
}

#lobby-view.active {
    display: flex;
}

/* Search & Categories Bar */
.arena-controls-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.search-box {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 10px;
    height: 34px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-card);
    color: var(--text-secondary);
}

.search-box input {
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-primary);
    font-size: 13px;
    width: 100%;
    font-family: var(--font-main);
}

.search-box input::placeholder {
    color: var(--text-muted);
}

.category-nav {
    display: flex;
    align-items: center;
    gap: 6px;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
}

.category-nav::-webkit-scrollbar {
    display: none;
}

.cat-pill {
    padding: 6px 12px;
    border-radius: 8px;
    border: 1px solid var(--border-card);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-secondary);
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.15s ease;
}

.cat-pill:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
}

.cat-pill.active {
    background: linear-gradient(135deg, rgba(0, 242, 254, 0.2) 0%, rgba(79, 172, 254, 0.15) 100%);
    border-color: rgba(0, 242, 254, 0.4);
    color: #ffffff;
    box-shadow: 0 0 10px rgba(0, 242, 254, 0.2);
}

/* ==========================================================================
   Games Grid & Cards
   ========================================================================== */

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

@media (min-width: 600px) {
    .games-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 14px;
    }
}

.game-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: 12px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.18s cubic-bezier(0.2, 0.9, 0.3, 1.0);
}

.game-card:hover {
    transform: translateY(-2px);
    border-color: var(--border-hover);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6), 0 0 12px rgba(0, 242, 254, 0.12);
}

.game-card:active {
    transform: scale(0.97);
}

.game-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.game-card-icon {
    font-size: 26px;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.6));
}

.game-tag {
    font-size: 9px;
    font-weight: 700;
    padding: 2px 5px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-secondary);
}

.game-tag.duel {
    background: rgba(255, 59, 48, 0.2);
    color: #ff6b6b;
    border: 1px solid rgba(255, 59, 48, 0.3);
}

.game-tag.physics {
    background: rgba(0, 242, 254, 0.2);
    color: #00f2fe;
    border: 1px solid rgba(0, 242, 254, 0.3);
}

.game-card-info h3 {
    font-family: var(--font-heading);
    font-size: 13.5px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2px;
}

.game-card-info p {
    font-size: 10.5px;
    color: var(--text-muted);
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.game-card-btn {
    margin-top: auto;
    width: 100%;
    height: 28px;
    border-radius: 6px;
    border: none;
    background: rgba(255, 255, 255, 0.07);
    color: var(--text-primary);
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    transition: all 0.15s ease;
}

.game-card:hover .game-card-btn {
    background: var(--accent-red);
    box-shadow: 0 2px 8px var(--accent-red-glow);
}

/* ==========================================================================
   Active Game View Container
   ========================================================================== */

#game-view {
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    background: #070a12;
    overflow: hidden;
}

#game-view.hidden {
    display: none;
}

.game-header-bar {
    height: 44px;
    background: rgba(14, 18, 30, 0.95);
    border-bottom: 1px solid var(--border-card);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 12px;
    flex-shrink: 0;
}

.game-meta {
    display: flex;
    align-items: center;
    gap: 6px;
}

.game-meta h2 {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
}

.turn-pill {
    font-size: 9.5px;
    font-weight: 800;
    padding: 2px 7px;
    border-radius: 10px;
    letter-spacing: 0.5px;
}

.turn-pill.your-turn {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.4);
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.3);
}

.turn-pill.peer-turn {
    background: rgba(245, 158, 11, 0.2);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.4);
}

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

.scoreboard-bar {
    height: 36px;
    background: rgba(10, 14, 24, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 14px;
    font-family: var(--font-heading);
}

.player-score {
    display: flex;
    align-items: center;
    gap: 6px;
}

.player-score .name {
    font-size: 11.5px;
    font-weight: 600;
    color: var(--text-secondary);
}

.player-score .score {
    font-size: 15px;
    font-weight: 800;
    color: #ffffff;
    font-variant-numeric: tabular-nums;
}

.player-score.you .score {
    color: var(--accent-cyan);
}

.player-score.peer .score {
    color: var(--accent-red);
}

.game-center-status {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
}

.game-stage {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 10px;
    overflow: hidden;
}

/* ==========================================================================
   Connect 4 Board Styles
   ========================================================================== */

.c4-board-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    max-width: 400px;
    width: 100%;
}

.c4-board {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border: 3px solid #334155;
    border-radius: 16px;
    padding: 8px;
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 242, 254, 0.1);
    width: 100%;
    aspect-ratio: 7 / 6;
}

.c4-col {
    display: flex;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    border-radius: 10px;
    padding: 2px;
    transition: background 0.15s ease;
}

.c4-col:hover {
    background: rgba(255, 255, 255, 0.08);
}

.c4-slot {
    flex: 1;
    border-radius: 50%;
    background: #090d16;
    border: 1.5px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.c4-disc {
    width: 90%;
    height: 90%;
    border-radius: 50%;
    transition: transform 0.25s cubic-bezier(0.2, 0.9, 0.3, 1.2);
}

.c4-disc.red {
    background: radial-gradient(circle at 35% 35%, #ff4d4d, #b30000);
    box-shadow: 0 0 10px rgba(255, 59, 48, 0.7);
}

.c4-disc.yellow {
    background: radial-gradient(circle at 35% 35%, #00f2fe, #007799);
    box-shadow: 0 0 10px rgba(0, 242, 254, 0.7);
}

/* ==========================================================================
   Tic-Tac-Toe Board Styles
   ========================================================================== */

.ttt-board-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    max-width: 320px;
    width: 100%;
}

.ttt-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    width: 100%;
    aspect-ratio: 1 / 1;
}

.ttt-cell {
    background: rgba(20, 26, 40, 0.85);
    border: 1.5px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 900;
    cursor: pointer;
    transition: all 0.15s ease;
}

.ttt-cell:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(0, 242, 254, 0.4);
}

.ttt-cell.x {
    color: var(--accent-red);
    text-shadow: 0 0 14px rgba(255, 59, 48, 0.7);
}

.ttt-cell.o {
    color: var(--accent-cyan);
    text-shadow: 0 0 14px rgba(0, 242, 254, 0.7);
}

/* ==========================================================================
   Wordle Grid Styles
   ========================================================================== */

.wordle-board-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    max-width: 340px;
    width: 100%;
}

.wordle-grid {
    display: grid;
    grid-template-rows: repeat(6, 1fr);
    gap: 5px;
    width: 100%;
    max-width: 250px;
}

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

.wordle-tile {
    aspect-ratio: 1 / 1;
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    transition: all 0.25s ease;
}

.wordle-tile.correct {
    background: var(--accent-green);
    border-color: var(--accent-green);
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.4);
}

.wordle-tile.present {
    background: var(--accent-amber);
    border-color: var(--accent-amber);
}

.wordle-tile.absent {
    background: #1e293b;
    border-color: #334155;
    color: #64748b;
}

.wordle-kb {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 100%;
}

.wordle-kb-row {
    display: flex;
    justify-content: center;
    gap: 4px;
}

.wordle-key {
    height: 36px;
    min-width: 24px;
    flex: 1;
    border-radius: 5px;
    background: #1e293b;
    border: none;
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wordle-key:hover {
    background: #334155;
}

/* ==========================================================================
   Battleship Grid Styles
   ========================================================================== */

.battleship-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    max-width: 340px;
    width: 100%;
}

.bs-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 3px;
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #090d16;
    padding: 6px;
    border: 2px solid #00f2fe;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0, 242, 254, 0.2);
}

.bs-cell {
    background: rgba(14, 22, 38, 0.9);
    border-radius: 4px;
    border: 1px solid rgba(0, 242, 254, 0.15);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.12s ease;
}

.bs-cell:hover {
    background: rgba(0, 242, 254, 0.2);
}

.bs-cell.hit {
    background: #ff3b30;
    box-shadow: 0 0 10px #ff3b30;
}

.bs-cell.miss {
    background: #334155;
    color: #94a3b8;
}

/* ==========================================================================
   Modals & Universal Victory Overlay
   ========================================================================== */

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    z-index: 500;
}

.modal-overlay.hidden {
    display: none;
}

.modal-card {
    background: linear-gradient(180deg, #141a2a 0%, #0a0e1a 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    padding: 20px;
    max-width: 360px;
    width: 100%;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9), 0 0 20px rgba(0, 242, 254, 0.12);
}

.modal-close-btn {
    position: absolute;
    top: 12px;
    right: 14px;
    background: none;
    border: none;
    font-size: 22px;
    color: var(--text-muted);
    cursor: pointer;
}

.modal-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
    margin-bottom: 10px;
}

.modal-game-icon {
    font-size: 42px;
}

.modal-hero h2 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 800;
    color: #ffffff;
}

.preview-cat-badge {
    font-size: 9.5px;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 6px;
    background: rgba(0, 242, 254, 0.15);
    color: var(--accent-cyan);
}

.modal-desc {
    font-size: 12.5px;
    color: var(--text-secondary);
    line-height: 1.4;
    text-align: center;
    margin-bottom: 16px;
}

.modal-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.launch-btn {
    height: 42px;
    border-radius: 9px;
    border: none;
    background: linear-gradient(135deg, #ff3b30 0%, #e11d48 100%);
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 13.5px;
    font-weight: 800;
    letter-spacing: 0.5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    box-shadow: 0 4px 14px var(--accent-red-glow);
}

.launch-btn.rematch-glow {
    background: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
    color: #050811;
    box-shadow: 0 0 20px rgba(0, 242, 254, 0.5);
}

.secondary-btn {
    height: 36px;
    border-radius: 9px;
    border: 1px solid var(--border-card);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
}

/* ==========================================================================
   Victory Card Modal Specifics
   ========================================================================== */

.victory-card {
    text-align: center;
    border: 2px solid rgba(0, 242, 254, 0.4);
    box-shadow: 0 0 40px rgba(0, 242, 254, 0.25), 0 20px 60px rgba(0,0,0,0.9);
    animation: victoryCardPop 0.4s cubic-bezier(0.2, 0.9, 0.3, 1.2);
}

@keyframes victoryCardPop {
    0% { transform: scale(0.8); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.victory-badge-icon {
    font-size: 58px;
    margin-bottom: 2px;
    filter: drop-shadow(0 0 20px rgba(251, 191, 36, 0.6));
    animation: badgeBounce 2s infinite ease-in-out;
}

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

.victory-title {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 900;
    letter-spacing: 1px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 4px;
}

.victory-card.defeat .victory-title {
    background: linear-gradient(135deg, #ff4d4d 0%, #b30000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.victory-subtitle {
    font-size: 12.5px;
    color: var(--text-secondary);
    line-height: 1.35;
    margin-bottom: 16px;
}

.victory-score-box {
    display: flex;
    align-items: center;
    justify-content: space-around;
    background: rgba(14, 20, 36, 0.9);
    border: 1px solid var(--border-card);
    border-radius: 12px;
    padding: 10px;
    margin-bottom: 16px;
}

.v-player {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

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

.v-score {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 900;
    color: #ffffff;
}

.v-tag {
    font-size: 8.5px;
    font-weight: 800;
    padding: 1px 5px;
    border-radius: 4px;
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
}

.v-player.peer .v-tag {
    background: rgba(255, 59, 48, 0.2);
    color: #ff4d4d;
}

.v-vs {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 900;
    opacity: 0.5;
}

/* ==========================================================================
   In-Game Chat Notification Toast
   ========================================================================== */

.chat-toast {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(16, 22, 38, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(0, 242, 254, 0.3);
    border-radius: 20px;
    padding: 6px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.8);
    z-index: 600;
}

.chat-toast.hidden {
    display: none;
}

.toast-avatar {
    font-size: 16px;
}

.toast-body {
    display: flex;
    flex-direction: column;
}

.toast-sender {
    font-size: 10.5px;
    font-weight: 700;
    color: var(--accent-cyan);
}

.toast-msg {
    font-size: 11.5px;
    color: var(--text-primary);
    max-width: 200px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.toast-close {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 15px;
    cursor: pointer;
}
