/* ========================================
   Backgammon - Professional Game Styling
   ======================================== */

/* CSS Custom Properties */
:root {
    /* Colors - Premium Dark Theme */
    --bg-primary: #0f0f14;
    --bg-secondary: #1a1a24;
    --bg-tertiary: #252532;

    /* Board Colors */
    --board-frame: #2c1810;
    --board-surface: #3d2817;
    --board-felt: #1e3a2a;
    --point-dark: #8b4513;
    --point-light: #d4a574;

    /* Checker Colors */
    --checker-white: #f5f5f0;
    --checker-white-shadow: #c9c9c4;
    --checker-white-highlight: #ffffff;
    --checker-black: #1a1a1a;
    --checker-black-shadow: #000000;
    --checker-black-highlight: #3a3a3a;

    /* Accent Colors */
    --accent-gold: #d4af37;
    --accent-gold-light: #f4cf57;
    --accent-green: #4caf50;
    --accent-red: #e74c3c;
    --accent-blue: #3498db;

    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #a0a0b0;
    --text-muted: #666680;

    /* Effects */
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glow-gold: 0 0 20px rgba(212, 175, 55, 0.4);
    --glow-green: 0 0 15px rgba(76, 175, 80, 0.5);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-normal: 300ms ease;
    --transition-slow: 500ms ease;

    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;
}

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

html {
    font-size: 16px;
}

body {
    font-family: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-primary);
    background-image:
        radial-gradient(ellipse at top, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at bottom, rgba(45, 45, 60, 0.3) 0%, transparent 50%);
    color: var(--text-primary);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: var(--spacing-sm);
    overflow: hidden;
}

/* Game Container */
.game-container {
    width: 100%;
    max-width: none;
    /* Allow full width */
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    padding: 0 var(--spacing-md);
}

/* Header in Sidebar */
.sidebar-header {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-md);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    text-align: center;
}

.sidebar-header h1 {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent-gold);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 4px;
}

.sidebar-header h1 span {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 400;
    display: block;
    /* Make it block to stack if needed, or inline-block */
    margin-top: 4px;
}

.header-controls {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: space-between;
    /* Spread buttons */
}

.header-controls .btn {
    flex: 1;
    /* Make buttons equal width */
    justify-content: center;
    font-size: 0.8rem;
    padding: var(--spacing-sm);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-md);
    border: none;
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.btn svg {
    flex-shrink: 0;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
    color: #1a1a1a;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    background: var(--bg-tertiary);
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
}

.btn-secondary:hover {
    background: var(--glass-bg);
    border-color: var(--accent-gold);
}

.btn-roll {
    background: linear-gradient(135deg, var(--accent-green), #66bb6a);
    color: white;
    padding: var(--spacing-md) var(--spacing-xl);
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(76, 175, 80, 0.4);
}

.btn-roll:hover:not(:disabled) {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 25px rgba(76, 175, 80, 0.5);
}

.btn-roll:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* Undo button in sidebar - override fixed */
.btn-undo {
    display: none;
    /* Hide the fixed one as we moved it to sidebar */
}

.btn-undo:hover:not(:disabled) {
    border-color: var(--accent-gold);
    background: var(--glass-bg);
}

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

.btn-large {
    padding: var(--spacing-md) var(--spacing-xl);
    font-size: 1.1rem;
}

/* Main Game Area */
.game-main {
    display: flex;
    flex-direction: row;
    gap: var(--spacing-lg);
    align-items: stretch;
    justify-content: center;
    width: 100%;
    flex: 1;
    min-height: 0;
    /* Allow shrinking */
}

.game-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    /* Increased vertical gap */
    width: 280px;
    /* Reduced to give more space to board */
    flex-shrink: 0;
    padding-top: var(--spacing-sm);
    /* Add some top padding */
}

/* Player Info */
.player-info {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-md);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    transition: all var(--transition-normal);
}

.player-info.active {
    border-color: var(--accent-gold);
    box-shadow: var(--glow-gold);
}

.player-avatar {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.checker-preview {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow:
        inset 0 -4px 8px rgba(0, 0, 0, 0.3),
        inset 0 4px 8px rgba(255, 255, 255, 0.2),
        0 4px 8px rgba(0, 0, 0, 0.3);
}

.checker-preview.white {
    background: linear-gradient(145deg, var(--checker-white-highlight), var(--checker-white-shadow));
}

.checker-preview.black {
    background: linear-gradient(145deg, var(--checker-black-highlight), var(--checker-black));
}

.player-details h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
}

.pip-count {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.pip-count span {
    color: var(--accent-gold);
    font-weight: 600;
}

.player-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--bg-tertiary);
    margin-left: auto;
    transition: all var(--transition-normal);
}

.player-indicator.active {
    background: var(--accent-green);
    box-shadow: var(--glow-green);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }
}

/* Board Wrapper */
.board-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    /* Change from center to stretch */
    gap: var(--spacing-md);
    flex: 1;
    min-height: 0;
    width: 100%;
    /* Ensure wrapper takes full width */
}

/* Game Board */
.board {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: 1fr 1fr;
    background: linear-gradient(135deg, var(--board-frame), #1a0f08);
    border-radius: var(--radius-xl);
    padding: 10px;
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.5),
        inset 0 2px 4px rgba(255, 255, 255, 0.1),
        inset 0 -2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    height: 100%;
    width: 100%;
    /* Force full width */
    border: 8px solid var(--board-frame);
    min-height: 0;
    /* Prevent expansion */
}

.board::before {
    content: '';
    position: absolute;
    inset: 8px;
    background: var(--board-surface);
    border-radius: var(--radius-lg);
    z-index: 0;
}

/* Board Halves */
.board-half {
    display: flex;
    position: relative;
    z-index: 1;
    background: radial-gradient(circle at center, #2e4a3a 0%, #1e3a2a 100%);
    margin: 4px;
    border-radius: var(--radius-md);
    margin: 4px;
    border-radius: var(--radius-md);
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5);
    padding: 4px;
    /* Add some internal padding to board half instead */
    min-height: 0;
    /* Prevent expansion */
}

.board-top {
    grid-row: 1;
    grid-column: 1;
}

.board-bottom {
    grid-row: 2;
    grid-column: 1;
}

/* Quadrants */
/* Quadrants */
.quadrant {
    display: flex;
    flex: 1;
    padding: 0;
    min-width: 0;
    /* Prevent width expansion */
    min-height: 0;
    /* Prevent height expansion */
    /* Remove padding to let points touch edge */
}

.quadrant-top-left,
.quadrant-top-right {
    flex-direction: row;
}

.quadrant-bottom-left,
.quadrant-bottom-right {
    flex-direction: row;
}

/* Points (Triangles) */
.point {
    flex: 1;
    min-width: 60px;
    /* Wider points */
    max-width: none;
    height: 100%;
    /* Fill available vertical space */
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px 2px;
    /* Remove bottom padding to let triangle touch edge */
    padding-bottom: 0;
    padding-top: 0;
    position: relative;
    cursor: pointer;
    transition: all var(--transition-fast);
    overflow: hidden;
    /* Prevent squeezed frame */
}

.board-bottom .point {
    flex-direction: column-reverse;
}

.board-bottom .point {
    flex-direction: column-reverse;
}

.point-triangle {
    position: absolute;
    width: 100%;
    height: 100%;
    /* Make triangle height 100% of parent */
    clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
    opacity: 0.8;
    transition: all var(--transition-fast);
    top: 0;
}

.board-bottom .point-triangle {
    clip-path: polygon(0% 100%, 100% 100%, 50% 0%);
    bottom: 0;
    top: auto;
}

.point-dark .point-triangle {
    background: linear-gradient(180deg, var(--point-dark), #6b3510);
}

.point-light .point-triangle {
    background: linear-gradient(180deg, var(--point-light), #b08554);
}

.board-bottom .point-dark .point-triangle {
    background: linear-gradient(0deg, var(--point-dark), #6b3510);
}

.board-bottom .point-light .point-triangle {
    background: linear-gradient(0deg, var(--point-light), #b08554);
}

.point-number {
    position: absolute;
    font-size: 0.65rem;
    color: var(--text-muted);
    font-weight: 600;
    z-index: 5;
}

.board-top .point-number {
    top: 4px;
    color: rgba(255, 255, 255, 0.4);
}

.board-bottom .point-number {
    bottom: 4px;
    color: rgba(255, 255, 255, 0.4);
}

.point:hover .point-number {
    color: var(--accent-gold);
}

.point.valid-move::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(212, 175, 55, 0.1);
    z-index: 1;
}

.point.valid-move {
    cursor: pointer;
}

.point.valid-move .point-triangle {
    filter: brightness(1.3);
    box-shadow: var(--glow-green);
}

.point.valid-move::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(76, 175, 80, 0.3);
    border: 2px solid var(--accent-green);
    z-index: 10;
    animation: validPulse 1s infinite;
}

.board-top .point.valid-move::after {
    top: 50%;
}

.board-bottom .point.valid-move::after {
    bottom: 50%;
}

@keyframes validPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }
}

/* Checkers */
.checker {
    width: 75%;
    /* Responsive width based on parent point */
    max-width: 55px;
    /* Cap size so they don't get huge */
    aspect-ratio: 1;
    /* Maintain circle shape */
    height: auto;
    /* Let aspect-ratio handle height */
    border-radius: 50%;
    position: relative;
    z-index: 5;
    cursor: pointer;
    transition: all var(--transition-fast);
    flex-shrink: 0;
    margin: 1px 0;
    transition: transform 0.4s cubic-bezier(0.18, 0.89, 0.32, 1.28), opacity 0.3s ease;
}

.checker-moving {
    z-index: 100 !important;
    pointer-events: none;
}

.checker::before {
    content: '';
    position: absolute;
    inset: 3px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.checker.white {
    background: radial-gradient(circle at 30% 30%, var(--checker-white-highlight) 0%, var(--checker-white) 40%, var(--checker-white-shadow) 100%);
    box-shadow:
        inset 0 -3px 6px rgba(0, 0, 0, 0.2),
        inset 0 3px 6px rgba(255, 255, 255, 0.8),
        0 4px 8px rgba(0, 0, 0, 0.4);
}

.checker.black {
    background: radial-gradient(circle at 30% 30%, var(--checker-black-highlight) 0%, var(--checker-black) 40%, var(--checker-black-shadow) 100%);
    box-shadow:
        inset 0 -3px 6px rgba(0, 0, 0, 0.6),
        inset 0 3px 6px rgba(100, 100, 100, 0.2),
        0 4px 10px rgba(0, 0, 0, 0.5);
}

.checker.selected {
    transform: scale(1.15);
    box-shadow:
        0 0 0 3px var(--accent-gold),
        0 8px 20px rgba(0, 0, 0, 0.4);
    z-index: 20;
}

.checker:hover:not(.selected) {
    transform: scale(1.08);
}

.checker-count {
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-primary);
    color: var(--text-primary);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--glass-border);
    z-index: 15;
}

/* Bar */
.bar {
    width: 45px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 8px 4px;
    background: linear-gradient(180deg, var(--board-frame), #1a0f08);
    position: relative;
    gap: 2px;
}

.bar-top {
    border-radius: 0 0 var(--radius-md) var(--radius-md);
}

.bar-bottom {
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    flex-direction: column-reverse;
    justify-content: flex-end;
}

.bar-label {
    font-size: 0.6rem;
    color: var(--text-muted);
    writing-mode: vertical-rl;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.bar .checker {
    width: 32px;
    height: 32px;
}

/* Home Areas */
.home-area {
    grid-column: 2;
    width: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px 4px;
    margin: 4px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--radius-md);
    position: relative;
    z-index: 10;
    cursor: pointer;
}

.home-black {
    grid-row: 2;
    justify-content: flex-end;
    flex-direction: column-reverse;
}

.home-white {
    grid-row: 1;
    justify-content: flex-start;
    flex-direction: column;
}

.home-label {
    font-size: 0.55rem;
    color: var(--accent-gold);
    text-align: center;
    writing-mode: vertical-rl;
    position: absolute;
    right: 2px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.home-area .checker {
    width: 28px;
    height: 12px;
    border-radius: var(--radius-sm);
    margin: 1px 0;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.home-area .checker.white {
    background: linear-gradient(180deg, var(--checker-white), var(--checker-white-shadow));
}

.home-area .checker.black {
    background: linear-gradient(180deg, var(--checker-black-highlight), var(--checker-black));
}

.home-area.valid-move {
    border-color: var(--accent-green);
    box-shadow: var(--glow-green);
}

/* Dice Area */
.dice-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
}

.dice-container {
    display: flex;
    gap: var(--spacing-lg);
}

.dice {
    width: 60px;
    height: 60px;
    background: linear-gradient(145deg, #ffffff, #e0e0e0);
    border-radius: var(--radius-md);
    box-shadow:
        0 6px 20px rgba(0, 0, 0, 0.3),
        inset 0 2px 4px rgba(255, 255, 255, 0.8),
        inset 0 -2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all var(--transition-normal);
}

.dice.rolling {
    animation: diceRoll 0.5s ease-in-out;
}

@keyframes diceRoll {
    0% {
        transform: rotateX(0deg) rotateY(0deg);
    }

    25% {
        transform: rotateX(180deg) rotateY(90deg);
    }

    50% {
        transform: rotateX(360deg) rotateY(180deg);
    }

    75% {
        transform: rotateX(540deg) rotateY(270deg);
    }

    100% {
        transform: rotateX(720deg) rotateY(360deg);
    }
}

.dice.used {
    opacity: 0.4;
    transform: scale(0.9);
}

.dice-face {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    padding: 10px;
    gap: 2px;
}

.dice-dot {
    width: 10px;
    height: 10px;
    background: #1a1a1a;
    border-radius: 50%;
    justify-self: center;
    align-self: center;
}

.remaining-moves {
    display: flex;
    gap: var(--spacing-sm);
    min-height: 24px;
}

.remaining-moves .move-badge {
    padding: 4px 12px;
    background: var(--accent-green);
    color: white;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 600;
}

.remaining-moves .move-badge.used {
    background: var(--bg-tertiary);
    color: var(--text-muted);
    text-decoration: line-through;
}

/* Game Status */
.game-status {
    text-align: center;
    padding: var(--spacing-sm);
    background: var(--glass-bg);
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    color: var(--accent-gold);
}

.game-status p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.game-status.highlight {
    border-color: var(--accent-gold);
    background: rgba(212, 175, 55, 0.1);
}

.game-status.highlight p {
    color: var(--accent-gold);
    font-weight: 500;
}

/* Modal */
.modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    max-width: 550px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    transform: scale(0.9) translateY(20px);
    transition: all var(--transition-normal);
}

.modal.active .modal-content {
    transform: scale(1) translateY(0);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-lg);
    border-bottom: 1px solid var(--glass-border);
}

.modal-header h2 {
    font-family: 'Cinzel', serif;
    color: var(--accent-gold);
    font-size: 1.5rem;
}

.modal-close {
    width: 36px;
    height: 36px;
    border: none;
    background: var(--bg-tertiary);
    color: var(--text-primary);
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: var(--accent-red);
}

.modal-body {
    padding: var(--spacing-lg);
}

.modal-body section {
    margin-bottom: var(--spacing-lg);
}

.modal-body section:last-child {
    margin-bottom: 0;
}

.modal-body h3 {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.modal-body p,
.modal-body li {
    color: var(--text-secondary);
    line-height: 1.6;
}

.modal-body ul {
    padding-left: var(--spacing-lg);
}

.modal-body li {
    margin-bottom: var(--spacing-xs);
}

.modal-body strong {
    color: var(--accent-gold);
}

/* Victory Modal */
.victory-content {
    text-align: center;
    padding: var(--spacing-xl);
}

.victory-icon {
    font-size: 5rem;
    margin-bottom: var(--spacing-md);
    animation: victoryBounce 1s ease infinite;
}

@keyframes victoryBounce {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-10px) scale(1.1);
    }
}

.victory-content h2 {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    color: var(--accent-gold);
    margin-bottom: var(--spacing-sm);
}

.victory-content p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
}

/* Responsive Design */
@media (max-width: 900px) {
    .game-header {
        flex-direction: column;
        gap: var(--spacing-md);
        text-align: center;
    }

    .board {
        transform: scale(0.85);
        transform-origin: center;
    }

    .point {
        min-width: 35px;
        height: 150px;
    }
}

@media (max-width: 600px) {
    html {
        font-size: 14px;
    }

    .game-header h1 {
        font-size: 1.5rem;
    }

    .game-header h1 span {
        display: block;
        margin-left: 0;
        margin-top: var(--spacing-xs);
    }

    .board {
        transform: scale(0.7);
    }

    .player-info {
        min-width: 240px;
        padding: var(--spacing-sm) var(--spacing-md);
    }

    .dice {
        width: 50px;
        height: 50px;
    }

    .btn-undo {
        bottom: var(--spacing-md);
        right: var(--spacing-md);
    }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--bg-tertiary);
    border-radius: var(--radius-sm);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}