/* ============================================================================
   ATTO 3 PAC-MAN ARCADE - EDICIÓN FULL-WINDOW PANTALLA COMPLETA
   ============================================================================ */

html, body {
    margin: 0;
    padding: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background: #000000;
    color: #ffffff;
    font-family: 'Outfit', -apple-system, sans-serif;
    user-select: none;
}

/* Barra Superior de Control Overlay */
.vip-game-navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 52px;
    background: rgba(10, 10, 18, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255, 204, 0, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem;
    box-sizing: border-box;
}

/* Área Principal del Juego Canvas */
.vip-game-stage {
    width: 100vw;
    height: calc(100vh - 52px);
    margin-top: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: #000000;
}

#pacman-canvas {
    display: block;
    image-rendering: pixelated;
    image-rendering: crisp-edges;
    max-width: 98vw;
    max-height: calc(96vh - 52px);
    width: auto;
    height: auto;
    border: 2px solid #2121de;
    border-radius: 8px;
    box-shadow: 0 0 25px rgba(33, 33, 222, 0.5);
}

/* Botones Arcade */
.btn-arcade-sm {
    background: rgba(255, 204, 0, 0.15);
    color: #ffcc00 !important;
    border: 1px solid #ffcc00;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.3rem 0.75rem;
    border-radius: 6px;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.btn-arcade-sm:hover {
    background: #ffcc00;
    color: #000000 !important;
    box-shadow: 0 0 12px rgba(255, 204, 0, 0.5);
}

.btn-arcade-close {
    background: rgba(255, 71, 87, 0.15);
    color: #ff4757 !important;
    border: 1px solid #ff4757;
}

.btn-arcade-close:hover {
    background: #ff4757;
    color: #ffffff !important;
}

/* Modal de Clasificación */
.vip-modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(6px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
}

.vip-modal-backdrop.is-visible {
    display: flex;
}

.vip-modal-card {
    background: #12121c;
    border: 1px solid #ffcc00;
    border-radius: 16px;
    width: 90%;
    max-width: 550px;
    max-height: 85vh;
    overflow-y: auto;
    padding: 1.5rem;
    box-shadow: 0 0 30px rgba(255, 204, 0, 0.3);
    color: #ffffff;
}
