File size: 1,084 Bytes
30e93c6
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
body {
    margin: 0;
    padding: 0;
    overflow: hidden; /* Evita scroll */
    background-color: #333;
    touch-action: none; /* Crucial para juegos móviles */
    user-select: none;
}

#game-container {
    width: 100vw; 
    height: 100vh; 
    position: fixed; 
    top: 0;
    left: 0;
}

/* 📱 ESTILOS DE LOS BOTONES */
#mobile-controls {
    position: absolute;
    bottom: 20px;
    right: 20px; /* Botones a la derecha */
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.control-row {
    display: flex;
    gap: 10px;
}

.game-btn {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    font-size: 24px;
    color: white;
    cursor: pointer;
    /* Evita que el navegador haga zoom al tocar rápido */
    touch-action: manipulation; 
    display: flex;
    justify-content: center;
    align-items: center;
}

.game-btn:active {
    background-color: rgba(0, 255, 0, 0.5); /* Verde al presionar */
}