File size: 1,519 Bytes
933256c
 
 
 
 
 
 
 
ffceea7
 
 
 
 
 
 
933256c
 
ffceea7
933256c
 
 
 
 
 
 
 
 
 
 
ffceea7
933256c
 
 
 
ffceea7
 
933256c
 
 
 
 
 
ffceea7
933256c
 
 
ffceea7
 
933256c
 
 
ffceea7
 
933256c
ffceea7
 
 
 
 
 
933256c
 
 
ffceea7
 
933256c
 
 
 
ffceea7
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
body {
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #f0f0f0;
}

#game-container {
    position: relative;
    width: 100%;
    max-width: 800px;
}

#info {
    margin-bottom: 20px;
    font-size: 18px;
    text-align: center;
}

#coin {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 72px;
    cursor: pointer;
    margin: 0 auto 20px;
}

#shop {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    margin-top: 20px;
}

.shop-item {
    text-align: center;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    cursor: pointer;
    margin: 5px;
    font-size: 12px;
}

.shop-coin {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin: 0 auto 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 10px;
}

#generate-coin {
    display: block;
    margin: 20px auto 0;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
}

#loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.loading-message {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    font-size: 18px;
}