:root {
    --neon-pink: #ff00ff;
    --neon-blue: #00f3ff;
    --neon-green: #39ff14;
    --bg-dark: #0a0a0c;
    --cyber-yellow: #fcee0a;
}

* { box-sizing: border-box; }

body {
    background-color: var(--bg-dark);
    color: white;
    font-family: 'Rajdhani', sans-serif;
    margin: 0;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start; /* Meglio per mobile per evitare tagli */
    min-height: 100vh;
    text-transform: uppercase;
    overflow-x: hidden;
}

.header { text-align: center; margin-bottom: 15px; width: 100%; }

.radio-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.5rem, 8vw, 3rem); /* Responsive font */
    color: var(--neon-pink);
    text-shadow: 0 0 10px var(--neon-pink);
    margin: 0;
}

.game-title {
    font-size: clamp(0.8rem, 4vw, 1.2rem);
    color: var(--neon-blue);
    letter-spacing: 3px;
}

.stats {
    display: flex;
    justify-content: space-around;
    width: 100%;
    max-width: 600px;
    font-size: clamp(0.8rem, 3.5vw, 1.1rem);
    margin-bottom: 15px;
    color: var(--cyber-yellow);
    border: 1px solid var(--neon-blue);
    padding: 8px;
    background: rgba(0, 0, 0, 0.5);
}

.game-container {
    width: 100%;
    max-width: 500px;
    background: rgba(20, 20, 25, 0.95);
    border: 2px solid var(--neon-pink);
    padding: 20px 10px;
    text-align: center;
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.2);
    position: relative;
}

.opponent-area { 
    font-size: clamp(1.1rem, 5vw, 1.5rem); 
    margin-bottom: 20px; 
    color: var(--neon-green); 
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.arena { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    margin: 20px 0; 
}

.slot { flex: 1; }
.slot-name { font-size: 0.7rem; color: var(--neon-blue); margin-bottom: 5px; }
.emoji-display { font-size: clamp(2.5rem, 12vw, 4rem); min-height: 60px; }
.vs-text { color: var(--cyber-yellow); font-size: 1.2rem; padding: 0 10px; }

.controls { width: 100%; display: flex; flex-direction: column; gap: 15px; align-items: center; }

.options { display: flex; gap: 10px; justify-content: center; width: 100%; }

.option-btn {
    background: rgba(0, 243, 255, 0.1);
    border: 2px solid var(--neon-blue);
    color: white;
    font-size: clamp(1.8rem, 8vw, 2.5rem);
    padding: 10px;
    cursor: pointer;
    border-radius: 12px;
    flex: 1;
    max-width: 80px;
    transition: 0.2s;
}

.option-btn:active { background: var(--neon-blue); transform: scale(0.95); }

.daje-btn {
    background: var(--neon-pink);
    border: none;
    color: white;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    padding: 15px;
    width: 80%;
    max-width: 300px;
    cursor: pointer;
    clip-path: polygon(10% 0, 100% 0, 90% 100%, 0% 100%);
    box-shadow: 0 0 15px var(--neon-pink);
}

.message { margin-top: 15px; font-size: 0.9rem; min-height: 20px; color: #ccc; }

.bonus-card {
    width: clamp(80px, 25vw, 120px);
    height: clamp(120px, 40vw, 180px);
    background: #1a1a1a;
    border: 3px solid var(--neon-blue);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 3rem;
    margin: 10px;
    border-radius: 15px;
}

.hidden { display: none; }

/* Media Query specifica per schermi molto piccoli (Redmi/iPhone SE) */
@media (max-width: 360px) {
    .radio-title { font-size: 1.8rem; }
    .emoji-display { font-size: 2.2rem; }
    .option-btn { font-size: 1.5rem; padding: 8px; }
}