File size: 691 Bytes
4b59f08
 
 
 
 
9d5c7c5
 
4b59f08
 
 
9d5c7c5
 
4b59f08
 
 
 
 
 
 
 
9d5c7c5
 
4b59f08
 
9d5c7c5
4b59f08
 
 
 
 
ed45bd4
 
 
 
 
 
 
 
 
 
 
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
/* Custom styles for the maze game */
#maze-container {
    aspect-ratio: 1/1;
    max-width: 600px;
    margin: 0 auto;
}

#maze-canvas {
    display: block;
    touch-action: none;
}

/* UFO animation */
@keyframes ufoFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.ufo-float {
    animation: ufoFloat 2s ease-in-out infinite;
}
/* Responsive adjustments */
@media (max-width: 768px) {
    #maze-container {
        max-width: 100%;
    }
}

/* Toggle switch styling */
.toggle-checkbox:checked {
    right: 0;
    border-color: #7C3AED;
}

.toggle-checkbox:checked + .toggle-label {
    background-color: #7C3AED;
}