-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
127 lines (126 loc) · 4.31 KB
/
Copy pathindex.html
File metadata and controls
127 lines (126 loc) · 4.31 KB
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
<!DOCTYPE html>
<html lang="cs">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Shane_Bot - Skate Mentor</title>
<script src="https://cdn.tailwindcss.com"></script>
<link href="https://fonts.googleapis.com/css2?family=Fredoka:wght@400;700&family=Permanent+Marker&family=Inter:wght@400;700&display=swap" rel="stylesheet">
<style>
body {
margin: 0;
padding: 0;
background-color: #05070a;
color: #f8fafc;
font-family: 'Inter', sans-serif;
overflow: hidden;
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
width: 100vw;
}
.urban-logo-font {
font-family: 'Fredoka', sans-serif;
font-weight: 700;
}
.graffiti-text {
font-family: 'Permanent Marker', cursive;
}
/* Celkové pozadí mimo telefon */
.graffiti-overlay {
position: fixed;
inset: 0;
background-image: url('https://images.unsplash.com/photo-1473181475575-e1686245fee6?q=80&w=2070&auto=format&fit=crop');
background-size: cover;
background-position: center;
filter: brightness(0.2) grayscale(0.3);
z-index: -1;
}
/* Čistý bílý rám - tělo mobilní aplikace */
.app-frame {
background: #111;
border: 8px solid white;
box-shadow: 0 0 50px rgba(0, 0, 0, 0.8);
border-radius: 60px;
width: 100%;
max-width: 440px;
height: 92vh;
display: flex;
flex-direction: column;
position: relative;
padding: 30px 20px 20px 20px;
margin: 10px;
overflow: hidden;
}
/* Tapeta uvnitř chatovacího okna (tvůj tmavý skate bowl s graffiti) */
.chat-bg-layer {
position: absolute;
inset: 0;
background-image: url('https://images.unsplash.com/photo-1520156555811-042883398c8c?q=80&w=1974&auto=format&fit=crop');
background-size: cover;
background-position: center;
opacity: 0.35;
z-index: 0;
pointer-events: none;
}
.chat-scroll::-webkit-scrollbar {
width: 4px;
}
.chat-scroll::-webkit-scrollbar-thumb {
background: rgba(255,255,255,0.1);
border-radius: 10px;
}
/* Dynamické oživení zpráv */
@keyframes messagePopIn {
0% { opacity: 0; transform: scale(0.6) translateY(30px); }
60% { transform: scale(1.08) translateY(-5px); }
100% { opacity: 1; transform: scale(1) translateY(0); }
}
.bubble-anim {
animation: messagePopIn 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
transform-origin: bottom center;
}
/* Design tlačítek s plynulým lift efektem */
.circle-btn {
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease, filter 0.2s ease;
box-shadow: 0 4px 8px rgba(0,0,0,0.5);
flex-shrink: 0;
z-index: 10;
}
.circle-btn:hover {
transform: translateY(-4px);
box-shadow: 0 12px 24px rgba(0,0,0,0.7);
filter: brightness(1.1);
}
.circle-btn:active {
transform: translateY(-1px) scale(0.92);
box-shadow: 0 2px 6px rgba(0,0,0,0.6);
transition: transform 0.1s ease, box-shadow 0.1s ease;
}
.glow-text {
text-shadow: 0 0 20px rgba(255,255,255,0.4);
z-index: 10;
}
</style>
<script type="importmap">
{
"imports": {
"react": "https://esm.sh/react@^19.2.3",
"react-dom/": "https://esm.sh/react-dom@^19.2.3/",
"react/": "https://esm.sh/react@^19.2.3/",
"@google/genai": "https://esm.sh/@google/genai@^1.34.0"
}
}
</script>
</head>
<body>
<div class="graffiti-overlay"></div>
<div id="root"></div>
<script type="module" src="./index.tsx"></script>
</body>
</html>