/*
Theme Name: RetroCash
Theme URI: https://retrocash.cl
Author: RetroCash Team
Description: Tema nativo, ultra rápido y exclusivo para móviles (App Web).
Version: 1.0
Text Domain: retrocash
*/

/* Reset y Base (Estilo Cyberpunk/Retro) */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: #050505; /* Fondo casi negro */
    color: #00ffcc; /* Texto verde neón / cian */
    font-family: 'Courier New', Courier, monospace; /* Fuente retro por defecto */
    overflow-x: hidden;
}

/* --- VISTA ESCRITORIO (CÓDIGO QR) --- */
.desktop-blocker {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
    background: radial-gradient(circle, #1a1a1a 0%, #000000 100%);
}

.desktop-blocker h1 {
    font-size: 2.5rem;
    color: #ff0055; /* Rojo neón peligro */
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.qr-box {
    width: 250px;
    height: 250px;
    background-color: #fff;
    border: 4px solid #00ffcc;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-weight: bold;
    margin-top: 20px;
}

/* --- VISTA MÓVIL (LA APP) --- */
.app-container {
    display: flex;
    flex-direction: column;
    height: 100vh;
    width: 100%;
}

.app-header {
    display: flex;
    justify-content: space-between;
    padding: 15px 20px;
    background-color: #111;
    border-bottom: 2px solid #00ffcc;
}

.pozo-dinero {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffd700; /* Dorado brillante para la codicia */
}

.game-canvas-area {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0a0a0a;
}