:root {
    --bg-dark: #1a1f3d;
    --bg-surface: #242b4d;
    --primary: #3b82f6;
    --primary-hover: #2563eb;
    --secondary: #8b5cf6;
    --success: #22c55e;
    --warning: #f59e0b;
    --danger: #ef4444;
    --accent: #06b6d4;
    --text-main: #f8fafc;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;
    --border: rgba(148, 163, 184, 0.15);
    --surface-elevated: #2d3761;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    background: radial-gradient(circle at center, #1a1f3d 0%, #0f172a 100%);
    color: var(--text-main);
    overflow: hidden;
    height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

#game {
    background: #0f1229; /* Fundo original escuro */
    position: relative;
    overflow: hidden;
    width: 100vw;
    height: 100vh;
}

.sky-bg {
    position: absolute;
    inset: 0;
    background: #89CFF0; /* Azul Bebê */
    background: linear-gradient(to bottom, #B0E2FF 0%, #89CFF0 100%);
    transition: opacity 1s ease;
    z-index: 0;
    opacity: 0; /* Começa invisível por padrão */
    pointer-events: none;
}

#game.placeBlocks-phase .sky-bg {
    opacity: 1; /* Só aparece na fase de construção */
}

#game.buyBlocks-phase .sky-bg,
#game.buyCards-phase .sky-bg {
    opacity: 0;
}

.screen {
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.3s ease;
}

.hidden {
    display: none !important;
    opacity: 0;
}

/* Card Style */
.card {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
}

/* Main Menu */
.menu-container {
    padding: 48px;
    text-align: center;
    min-width: 420px;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: 24px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
}

.menu-container h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 40px;
    letter-spacing: -1.5px;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.menu-form {
    margin: 16px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Seleção de Personagem */
.character-selection {
    margin: 10px 0 20px 0;
    text-align: center;
}

.character-selection p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.character-options {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.char-option {
    cursor: pointer;
    padding: 10px;
    border-radius: 12px;
    background: var(--surface-elevated);
    border: 2px solid transparent;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    width: 80px;
}

.char-option img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.char-option span {
    font-size: 12px;
    font-weight: 600;
}

.char-option:hover {
    background: var(--bg-surface);
    border-color: var(--border);
    transform: translateY(-2px);
}

.char-option.selected {
    background: rgba(59, 130, 246, 0.1);
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.3);
}

input {
    padding: 14px 18px;
    background: var(--surface-elevated);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text-main);
    font-size: 15px;
    font-family: var(--font-family);
    transition: all 0.2s ease;
}

input:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--bg-surface);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

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

button {
    padding: 14px 24px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    font-family: var(--font-family);
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2);
}

button:active {
    transform: translateY(1px);
}

#createRoomBtn, #joinRoomBtn {
    background: var(--primary);
    color: white;
}

#createRoomBtn:hover, #joinRoomBtn:hover {
    background: var(--primary-hover);
    box-shadow: 0 4px 6px -1px rgba(59, 130, 246, 0.4);
}

#testModeBtn {
    background: transparent;
    border: 1px solid var(--danger);
    color: var(--danger);
}

#testModeBtn:hover {
    background: var(--danger);
    color: white;
}

#startGameBtn {
    width: 100%;
    padding: 16px;
    background: var(--success);
    color: white;
    font-size: 16px;
}

#startGameBtn:hover {
    background: #16a34a;
    box-shadow: 0 4px 6px -1px rgba(34, 197, 94, 0.4);
}

/* Lobby */
.lobby-container {
    padding: 40px;
    min-width: 520px;
}

.lobby-container h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--text-secondary);
}

#lobbyRoomCode {
    color: var(--primary);
    font-family: 'SF Mono', 'Monaco', 'Courier New', monospace;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 3px;
}

.players-list {
    background: var(--surface-elevated);
    padding: 16px;
    border-radius: 12px;
    margin-bottom: 24px;
    max-height: 320px;
    overflow-y: auto;
    border: 1px solid var(--border);
}

.player-item {
    padding: 14px 16px;
    margin: 6px 0;
    background: var(--bg-surface);
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid transparent;
    transition: all 0.2s ease;
    font-weight: 500;
}

.player-item:hover {
    background: var(--surface-elevated);
    border-color: var(--border);
}

.player-item.leader {
    border-color: var(--warning);
    background: rgba(245, 158, 11, 0.05);
}

.player-item.leader::before {
    content: "👑 ";
}

/* Game Interface */
#gameCanvas {
    width: 100%;
    height: 100%;
    display: block;
    position: relative;
    z-index: 5; /* Garante que o tabuleiro fique acima do fundo e dos pássaros */
}

/* HUD Components */
.hud-left {
    position: absolute;
    left: 20px;
    top: 20px;
    width: 280px;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.4);
    z-index: 10;
}

.players-scoreboard h3 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    margin-bottom: 16px;
    font-weight: 700;
}

.player-score-item {
    padding: 12px;
    margin-bottom: 8px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: var(--surface-elevated);
    border: 2px solid transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.player-score-item:hover {
    background: var(--bg-dark);
    border-color: var(--border);
}

.player-score-item.viewing {
    background: rgba(59, 130, 246, 0.1);
    border-color: var(--primary);
}

.player-score-item.is-me {
    border-left: 4px solid #fbbf24;
}

.player-score-item .score {
    font-weight: 700;
    color: var(--success);
    font-size: 16px;
}

/* Inventory */
.hud-bottom {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0;
    min-width: 480px;
    pointer-events: none; /* Deixa passar clique se não for no item */
    z-index: 10;
}

.inventory {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 20px;
    justify-content: center;
}

.inventory-blocks {
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    pointer-events: auto;
    background: var(--bg-surface);
    padding: 12px;
    border-radius: 16px;
    border: 1px solid var(--border);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.4);
    height: 220px; /* Ajustado para 220px de altura */
    min-width: 76px; /* Largura mínima para conter os blocos de 52px + padding */
}

.inventory-item {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: var(--surface-elevated);
    border: 2px solid transparent;
}

.inventory-item.empty-slot {
    background: rgba(255, 255, 255, 0.03);
    border: 1px dashed rgba(255, 255, 255, 0.1);
    cursor: default;
}

.inventory-item.empty-slot:hover {
    transform: none;
    border-color: rgba(255, 255, 255, 0.1);
}

.inventory-item:hover {
    transform: translateY(-5px);
    border-color: var(--border);
}

.inventory-item.selected {
    border-color: var(--primary);
    background: rgba(59, 130, 246, 0.15);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

.inventory-cards {
    display: flex;
    gap: 16px;
    justify-content: center;
    pointer-events: auto;
    align-items: flex-end;
}

.inventory-item.card {
    width: 220px; /* Ajustado de 200px para 220px */
    height: auto;
    padding: 12px;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.5);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    cursor: default;
}

.inventory-item.card:hover {
    transform: translateY(-20px) scale(1.05);
    z-index: 100;
    border-color: var(--secondary);
    box-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.7);
}

.inventory-item.card.empty-card {
    background: var(--bg-surface); /* Mesma cor das outras cartas */
    border: 1px dashed rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
    cursor: default;
    width: 220px; /* Ajustado de 200px para 220px */
    height: 220px;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0.7; /* Leve transparência apenas para diferenciar, mas com cor de fundo */
}

.inventory-item.card.empty-card:hover {
    transform: none;
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: none;
}

/* Help Button & Panel */
.help-btn {
    position: absolute;
    right: 24px;
    bottom: 24px;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--bg-surface);
    color: var(--primary);
    border: 1px solid var(--border);
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.help-btn:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px -4px rgba(59, 130, 246, 0.5);
}

.help-panel {
    position: absolute;
    right: 24px;
    bottom: 80px;
    width: 300px;
    z-index: 1500;
    pointer-events: none;
    animation: slideInUp 0.3s ease-out;
}

@keyframes slideInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.help-content {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 20px;
    pointer-events: auto;
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.8);
}

.help-content h3 {
    margin-bottom: 16px;
    color: var(--text-main);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.close-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 20px;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    transition: color 0.2s;
    box-shadow: none;
}

.close-btn:hover {
    color: var(--danger);
}

.rule-item-simple {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.rule-item-simple:last-child {
    border-bottom: none;
}

.rule-main {
    display: flex;
    align-items: center;
    gap: 12px;
}

.rule-visual-container {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface-elevated);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.rule-emoji {
    font-size: 20px;
}

.rule-canvas {
    width: 44px;
    height: 44px;
}

.rule-details {
    display: flex;
    flex-direction: column;
}

.rule-name-text {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-main);
}

.rule-desc-text {
    font-size: 11px;
    color: var(--text-muted);
}

.rule-points-badge {
    background: rgba(34, 197, 94, 0.15);
    color: var(--success);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 6px;
    white-space: nowrap;
}

.inventory-item.card h4 {
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    margin: 0;
    padding-bottom: 6px;
    border-bottom: 1px solid var(--border);
}

.inventory-item.card .card-pattern-canvas {
    background: var(--surface-elevated);
    border-radius: 8px;
    border: 1px solid var(--border);
}

.inventory-item.card .card-stats {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.inventory-item.card .card-points {
    display: flex;
    justify-content: center;
    gap: 4px;
}

.inventory-item.card .tier-mini {
    background: var(--surface-elevated);
    border-radius: 4px;
    padding: 2px 6px;
    font-size: 9px;
    font-weight: 700;
    color: var(--text-muted);
}

.inventory-item.card .tier-mini.active {
    background: rgba(34, 197, 94, 0.2);
    color: var(--success);
    border: 1px solid var(--success);
}

.inventory-item.card .card-score-mini {
    font-size: 10px;
    text-align: center;
    color: var(--text-muted);
    margin-top: 4px;
}

/* Turn Timer */
.hud-turn {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 16px 32px;
    text-align: center;
    min-width: 200px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

.turn-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

#turnType {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    font-weight: 700;
}

#turnTimer {
    font-size: 28px;
    font-weight: 800;
    color: var(--success);
    font-variant-numeric: tabular-nums;
}

.skip-btn {
    margin-top: 10px;
    padding: 8px 18px;
    background: var(--warning);
    color: white;
    font-size: 12px;
    font-weight: 600;
}

.skip-btn:hover {
    background: #dc2626;
}

/* Overlay de Transição de Fase - Minimalista & Premium */
.phase-overlay {
    position: fixed;
    top: 45%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
}

.phase-overlay.animate {
    visibility: visible;
    animation: overlayFade 1.8s ease-in-out forwards;
}

@keyframes overlayFade {
    0% { opacity: 0; }
    15% { opacity: 1; }
    85% { opacity: 1; }
    100% { opacity: 0; }
}

.phase-content {
    width: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(15, 23, 42, 0.8) 50%, transparent 100%);
    backdrop-filter: blur(4px);
    padding: 15px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.phase-content h2 {
    font-size: 32px;
    font-weight: 300; /* Mais fino = mais elegante */
    letter-spacing: 12px; /* Espaçamento grande para estilo premium */
    margin: 0;
    color: white;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
    opacity: 0;
    transform: scale(1.1);
}

.phase-overlay.animate h2 {
    animation: textFocus 1.8s cubic-bezier(0.215, 0.610, 0.355, 1.000) forwards;
}

@keyframes textFocus {
    0% { opacity: 0; filter: blur(12px); transform: scale(1.2); }
    20% { opacity: 1; filter: blur(0); transform: scale(1); }
    80% { opacity: 1; filter: blur(0); transform: scale(1); }
    100% { opacity: 0; filter: blur(12px); transform: scale(0.9); }
}

/* Removida a linha azul anterior para um visual mais limpo */
.phase-line {
    display: none;
}

/* Toast System */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 11000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.toast {
    min-width: 280px;
    max-width: 400px;
    padding: 16px 20px;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text-main);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    gap: 12px;
    pointer-events: auto;
    animation: toastSlideIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    transition: all 0.3s ease;
}

.toast.removing {
    opacity: 0;
    transform: translateX(50px) scale(0.9);
}

@keyframes toastSlideIn {
    from {
        opacity: 0;
        transform: translateX(100px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

.toast-icon {
    font-size: 20px;
    flex-shrink: 0;
}

.toast-message {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
}

.toast-info { border-left: 4px solid var(--primary); }
.toast-success { border-left: 4px solid var(--success); }
.toast-warning { border-left: 4px solid var(--warning); }
.toast-error { border-left: 4px solid var(--danger); }

/* Tooltip */
.tooltip {
    position: fixed;
    z-index: 10000;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    padding: 18px;
    border-radius: 14px;
    width: 240px;
    pointer-events: none;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(255, 255, 255, 0.05);
    animation: fadeIn 0.2s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.tooltip h4 {
    color: var(--primary);
    margin-bottom: 12px;
    font-size: 15px;
    font-weight: 700;
    border-bottom: 1px solid var(--border);
    padding-bottom: 8px;
}

.tooltip-pattern-container {
    background: var(--surface-elevated);
    border-radius: 10px;
    margin: 12px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--border);
    padding: 8px;
}

.tooltip .pattern-status {
    margin-top: 12px;
}

.tooltip .score-progression {
    display: flex;
    gap: 6px;
    margin-bottom: 12px;
}

.tooltip .tier-item {
    flex: 1;
    background: var(--surface-elevated);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 8px 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    transition: all 0.2s ease;
}

.tooltip .tier-item.active {
    background: rgba(34, 197, 94, 0.15);
    border-color: var(--success);
}

.tooltip .tier-label {
    font-size: 9px;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 700;
    letter-spacing: 0.5px;
}

.tooltip .tier-pts {
    font-size: 16px;
    font-weight: 800;
    color: var(--text-secondary);
}

.tooltip .tier-item.active .tier-pts {
    color: var(--success);
}

.tooltip .current-score-label {
    font-size: 12px;
    color: var(--text-muted);
    text-align: center;
    border-top: 1px solid var(--border);
    padding-top: 10px;
    font-weight: 500;
}

.tooltip .current-score-label strong {
    color: var(--success);
    font-weight: 700;
}

/* Minigame */
.minigame {
    pointer-events: none;
}

/* Tela de Fim de Jogo */
#gameOverScreen {
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at center, #1e293b 0%, #0f172a 100%);
    z-index: 2000;
}

.game-over-container {
    width: 90%;
    max-width: 500px;
    padding: 40px;
    text-align: center;
    animation: slideInUp 0.5s ease-out;
}

.game-over-header h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 8px;
    background: linear-gradient(to bottom, #fff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#gameOverReason {
    color: var(--text-muted);
    margin-bottom: 30px;
    font-size: 16px;
}

.ranking-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
}

.ranking-item {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.ranking-item.first-place {
    background: rgba(251, 191, 36, 0.1);
    border-color: rgba(251, 191, 36, 0.3);
    transform: scale(1.05);
}

.ranking-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
}

.ranking-item.first-place:hover {
    background: rgba(251, 191, 36, 0.15);
}

.rank-number {
    font-size: 18px;
    font-weight: 800;
    width: 120px;
    color: var(--text-muted);
    text-align: left;
}

.first-place .rank-number {
    color: #fbbf24;
}

.rank-char {
    width: 48px;
    height: 48px;
    margin-right: 20px;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

.rank-info {
    flex: 1;
    text-align: left;
}

.rank-name {
    font-weight: 700;
    font-size: 18px;
    display: block;
    color: #fff;
}

.rank-score {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
}

.first-place .rank-name {
    color: #fbbf24;
}

.first-place .rank-score {
    color: rgba(251, 191, 36, 0.8);
}

.menu-btn {
    width: 100%;
    padding: 16px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 20px;
}

.menu-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

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

::-webkit-scrollbar-track {
    background: var(--bg-dark);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(148, 163, 184, 0.3);
}
