File size: 4,984 Bytes
fc851c4
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
:root {
    --bg-color: #0b0f19;
    --panel-bg: rgba(20, 25, 40, 0.4);
    --border-color: rgba(255, 255, 255, 0.1);
    --text-primary: #e2e8f0;
    --text-secondary: #94a3b8;
    --accent-1: #00f2ff;
    --accent-2: #7000ff;
    --success: #10b981;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-primary);
    background: var(--bg-color);
    min-height: 100vh;
    overflow-x: hidden;
}

.glass-bg {
    position: fixed;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(112, 0, 255, 0.15), transparent 60%),
                radial-gradient(circle at 80% 20%, rgba(0, 242, 255, 0.15), transparent 50%);
    z-index: -1;
    animation: drift 20s infinite alternate ease-in-out;
}

@keyframes drift {
    0% { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.1) translate(-2%, 2%); }
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

header {
    text-align: center;
    margin-bottom: 3rem;
}

h1 { font-size: 3rem; margin-bottom: 0.5rem; }
.gradient-text {
    background: linear-gradient(90deg, var(--accent-1), var(--accent-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.glass-panel {
    background: var(--panel-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.controls {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

input {
    flex: 1;
    background: rgba(0,0,0,0.5);
    border: 1px solid var(--border-color);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-family: 'Outfit';
    font-size: 1.1rem;
    outline: none;
    transition: all 0.3s;
}

input:focus { border-color: var(--accent-1); box-shadow: 0 0 15px rgba(0, 242, 255, 0.2); }

button {
    background: linear-gradient(135deg, var(--accent-2), #4f00b3);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(112, 0, 255, 0.4);
}

button:disabled { opacity: 0.5; cursor: not-allowed; transform: none; box-shadow: none; }

.workspace {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
    height: 70vh;
}

.status-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    overflow-y: auto;
}

.pulse-text { color: var(--accent-1); animation: pulse 2s infinite; }
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

ul { list-style: none; }
li {
    padding: 1rem;
    background: rgba(255,255,255,0.03);
    border-radius: 8px;
    margin-bottom: 0.5rem;
    border-left: 3px solid transparent;
    transition: all 0.3s;
}

li.active { border-left-color: var(--accent-1); background: rgba(0, 242, 255, 0.05); }
li.done { border-left-color: var(--success); }

.model-name { font-weight: 600; display: block; margin-bottom: 0.25rem; }
.model-status { font-size: 0.85rem; color: var(--text-secondary); }

.arena {
    overflow-y: auto;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    scroll-behavior: smooth;
}

.text-center { text-align: center; color: var(--text-secondary); margin-top: 10%; }

.message-bubble {
    background: rgba(0,0,0,0.4);
    border-left: 4px solid var(--accent-2);
    padding: 1.5rem;
    border-radius: 0 12px 12px 12px;
    animation: fade-in 0.5s forwards;
    position: relative;
    font-size: 0.95rem;
    line-height: 1.6;
}

.message-bubble.architect {
    border-left: 4px solid var(--neon-accent);
    background: rgba(43, 255, 172, 0.05);
    margin-top: 2rem;
    position: relative;
}

.message-bubble.architect::before {
    content: '👑 FINAL VERDICT';
    position: absolute;
    top: -25px;
    left: -4px;
    background: var(--neon-accent);
    color: var(--bg-dark);
    padding: 0.2rem 1rem;
    font-size: 0.8rem;
    font-weight: bold;
    border-radius: 4px 4px 0 0;
}

.message-bubble.architect .bubble-header { font-size: 1.2rem; font-weight: bold; color: white; }

.bubble-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-family: 'Outfit';
    color: var(--accent-1);
}

.bubble-header .round { color: var(--text-secondary); font-size: 0.85rem;}

@keyframes fade-in {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.message-bubble h1, .message-bubble h2, .message-bubble h3 { margin: 1rem 0 0.5rem; font-family: 'Outfit'; }
.message-bubble p { margin-bottom: 1rem; }
.message-bubble ul { margin-left: 1.5rem; list-style: disc; }
.message-bubble strong { color: white; }