File size: 4,966 Bytes
a1270ce
261f1d0
ae0f6f4
 
56b88ff
ae0f6f4
261f1d0
 
 
 
a1270ce
56b88ff
a1270ce
68e4c91
1bc02e4
ae0f6f4
 
 
 
 
 
 
 
68e4c91
ae0f6f4
56b88ff
261f1d0
 
1bc02e4
 
 
 
 
56b88ff
ae0f6f4
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
56b88ff
ae0f6f4
56b88ff
ae0f6f4
56b88ff
 
b3b1af0
 
56b88ff
ae0f6f4
56b88ff
ae0f6f4
1bc02e4
f7cc4f6
56b88ff
f7cc4f6
56b88ff
 
 
68e4c91
b3b1af0
1bc02e4
b3b1af0
1bc02e4
ae0f6f4
 
 
 
1bc02e4
ae0f6f4
 
 
 
1bc02e4
56b88ff
ae0f6f4
68e4c91
a1270ce
68e4c91
a1270ce
56b88ff
 
68e4c91
56b88ff
ae0f6f4
56b88ff
 
 
68e4c91
ae0f6f4
a1270ce
68e4c91
 
 
 
ae0f6f4
 
68e4c91
 
 
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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
/* RESET & FONTS */
:root {
  --glass-border: rgba(255, 255, 255, 0.4); /* Brighter borders for thick look */
  --glass-bg: rgba(255, 255, 255, 0.05);
  --accent-pink: #ff0080;
  --font-dream: 'Cinzel Decorative', cursive; /* The Fancy Font */
}

body {
  margin: 0;
  color: white;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  overflow-x: hidden;
  padding-top: env(safe-area-inset-top); 
  
  /* WARM LIQUID ANIMATION (Red/Pink/Magenta) */
  background: linear-gradient(
    135deg, 
    #ff0055, /* Vivid Red */
    #ff00aa, /* Hot Pink */
    #aa00ff, /* Purple */
    #5500aa  /* Deep Violet */
  );
  background-size: 240% 240%;
  animation: liquidFlow 12s ease infinite; /* Faster flow for energy */
  min-height: 100vh;
}

@keyframes liquidFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* --- DREAM STACK (The Thick Glass Login) --- */
.dream-stack-outer {
  width: 280px;
  height: 280px;
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3); /* Deep shadow */
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.dream-stack-middle {
  width: 200px;
  height: 200px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.08); /* Slightly more opaque */
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 
    inset 0 0 20px rgba(255, 255, 255, 0.1), /* Inner glow */
    0 10px 30px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

.dream-title {
  font-family: var(--font-dream);
  font-size: 24px;
  font-weight: 900;
  color: white;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
  letter-spacing: 1px;
}

/* The "Enter" Button inside the glass */
.dream-btn {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  padding: 10px 30px;
  border-radius: 9999px;
  color: white;
  font-family: -apple-system, sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
.dream-btn:hover {
  background: white;
  color: #ff0055;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
}

/* --- EXISTING UI (For the main app) --- */
.glass-panel {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
  border-radius: 24px;
}

.glass-pill {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 9999px;
  padding: 8px 12px;
  color: white;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  outline: none;
  min-width: 70px;
}
.glass-pill option { background: #2a0010; color: white; }

.logo-expand-container {
  display: flex; align-items: center; background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25); backdrop-filter: blur(20px);
  border-radius: 9999px; padding: 8px 16px; transition: all 0.4s;
  overflow: hidden; width: 32px; white-space: nowrap; flex-shrink: 0;
}
.logo-expand-container:hover { width: 110px; background: rgba(255, 255, 255, 0.2); }
.logo-main { font-weight: 900; letter-spacing: 2px; font-size: 0.9rem; margin-right: 8px; }
.logo-hidden { opacity: 0; font-size: 0.8rem; letter-spacing: 1px; transition: all 0.3s ease; }
.logo-expand-container:hover .logo-hidden { opacity: 1; }

textarea {
  background: rgba(0, 0, 0, 0.3); border: 1px solid rgba(255,255,255,0.2); color: white;
  border-radius: 24px; backdrop-filter: blur(20px); font-family: inherit;
}
textarea:focus { background: rgba(0, 0, 0, 0.5); border-color: rgba(255,255,255,0.5); outline: none; }

.run-btn {
  background: linear-gradient(135deg, #ff0080 0%, #ff4e50 100%);
  border: none; border-radius: 50%; color: white;
  box-shadow: 0 10px 20px rgba(255, 0, 80, 0.3);
  display: flex; align-items: center; justify-content: center;
}

.holo-box {
  border: 2px dashed rgba(255, 255, 255, 0.3); background: rgba(255, 255, 255, 0.05);
  border-radius: 18px; padding: 5px; position: relative;
}

.pwa-banner {
  position: fixed; bottom: 160px; left: 20px; right: 20px;
  background: rgba(40, 0, 20, 0.9); backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 16px;
  padding: 15px; z-index: 100; display: flex; align-items: center; justify-content: space-between;
  animation: slideUp 0.5s ease-out;
}
@keyframes slideUp { from { transform: translateY(50px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }