2025-12-31 16:53:26 +00:00
|
|
|
.app {
|
2025-12-31 17:40:34 +00:00
|
|
|
height: 100vh;
|
|
|
|
|
max-height: 100vh;
|
2025-12-31 16:53:26 +00:00
|
|
|
position: relative;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
align-items: center;
|
2025-12-31 17:40:34 +00:00
|
|
|
padding: clamp(5px, 1vh, 15px);
|
2025-12-31 16:53:26 +00:00
|
|
|
z-index: 2;
|
2025-12-31 17:40:34 +00:00
|
|
|
overflow: hidden;
|
2025-12-31 16:53:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.app-content {
|
|
|
|
|
width: 100%;
|
|
|
|
|
max-width: 1600px;
|
|
|
|
|
z-index: 2;
|
2025-12-31 17:40:34 +00:00
|
|
|
height: 100%;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.app-title-bar {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
width: 100%;
|
2025-12-31 18:05:29 +00:00
|
|
|
margin-bottom: clamp(3px, 0.5vh, 8px);
|
2025-12-31 17:40:34 +00:00
|
|
|
flex-shrink: 0;
|
2025-12-31 18:05:29 +00:00
|
|
|
gap: clamp(8px, 1.5vw, 15px);
|
|
|
|
|
padding: clamp(3px, 0.5vh, 5px) 0;
|
2025-12-31 17:40:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.app-control-buttons {
|
|
|
|
|
display: flex;
|
|
|
|
|
gap: clamp(5px, 1vw, 10px);
|
|
|
|
|
flex-shrink: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.control-button {
|
2025-12-31 18:05:29 +00:00
|
|
|
width: clamp(30px, 4vw, 40px);
|
|
|
|
|
height: clamp(30px, 4vw, 40px);
|
2025-12-31 17:40:34 +00:00
|
|
|
border-radius: 50%;
|
|
|
|
|
border: 2px solid rgba(255, 255, 255, 0.3);
|
|
|
|
|
background: rgba(255, 255, 255, 0.1);
|
|
|
|
|
backdrop-filter: blur(10px);
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
2025-12-31 18:05:29 +00:00
|
|
|
font-size: clamp(1rem, 2vw, 1.3rem);
|
2025-12-31 17:40:34 +00:00
|
|
|
transition: all 0.3s ease;
|
|
|
|
|
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
|
|
|
|
|
padding: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.control-button:hover {
|
|
|
|
|
transform: translateY(-2px) scale(1.1);
|
|
|
|
|
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
|
|
|
|
|
border-color: rgba(255, 215, 0, 0.6);
|
|
|
|
|
background: rgba(255, 255, 255, 0.2);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.control-button:active {
|
|
|
|
|
transform: translateY(0) scale(1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.control-button-players:hover {
|
|
|
|
|
background: rgba(78, 205, 196, 0.3);
|
|
|
|
|
border-color: #4ecdc4;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.control-button-questions:hover {
|
|
|
|
|
background: rgba(102, 126, 234, 0.3);
|
|
|
|
|
border-color: #667eea;
|
2025-12-31 16:53:26 +00:00
|
|
|
}
|
|
|
|
|
|
2025-12-31 17:57:11 +00:00
|
|
|
.control-button-new-game:hover {
|
|
|
|
|
background: rgba(255, 107, 107, 0.3);
|
|
|
|
|
border-color: #ff6b6b;
|
|
|
|
|
}
|
|
|
|
|
|
2025-12-31 16:53:26 +00:00
|
|
|
.app-title {
|
|
|
|
|
text-align: center;
|
2025-12-31 18:05:29 +00:00
|
|
|
font-size: clamp(1.5rem, 4vw, 3rem);
|
2025-12-31 16:53:26 +00:00
|
|
|
font-weight: bold;
|
|
|
|
|
text-shadow:
|
|
|
|
|
0 0 10px rgba(255, 215, 0, 0.8),
|
|
|
|
|
0 0 20px rgba(255, 215, 0, 0.6),
|
|
|
|
|
0 0 30px rgba(255, 215, 0, 0.4);
|
|
|
|
|
animation: glow 2s ease-in-out infinite alternate;
|
2025-12-31 17:40:34 +00:00
|
|
|
flex: 1;
|
|
|
|
|
margin: 0;
|
2025-12-31 18:05:29 +00:00
|
|
|
line-height: 1.2;
|
2025-12-31 16:53:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@keyframes glow {
|
|
|
|
|
from {
|
|
|
|
|
text-shadow:
|
|
|
|
|
0 0 10px rgba(255, 215, 0, 0.8),
|
|
|
|
|
0 0 20px rgba(255, 215, 0, 0.6),
|
|
|
|
|
0 0 30px rgba(255, 215, 0, 0.4);
|
|
|
|
|
}
|
|
|
|
|
to {
|
|
|
|
|
text-shadow:
|
|
|
|
|
0 0 20px rgba(255, 215, 0, 1),
|
|
|
|
|
0 0 30px rgba(255, 215, 0, 0.8),
|
|
|
|
|
0 0 40px rgba(255, 215, 0, 0.6);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.title-number {
|
2026-01-09 21:36:49 +00:00
|
|
|
color: var(--accent-primary);
|
2025-12-31 16:53:26 +00:00
|
|
|
display: inline-block;
|
|
|
|
|
margin: 0 10px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.title-to {
|
|
|
|
|
color: #ff6b6b;
|
2025-12-31 18:05:29 +00:00
|
|
|
font-size: clamp(1.2rem, 3vw, 2.5rem);
|
2025-12-31 17:40:34 +00:00
|
|
|
}
|
|
|
|
|
|
2025-12-31 17:57:11 +00:00
|
|
|
.question-counter-wrapper {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
gap: clamp(8px, 1.5vw, 12px);
|
|
|
|
|
flex-shrink: 0;
|
|
|
|
|
}
|
|
|
|
|
|
2025-12-31 17:40:34 +00:00
|
|
|
.question-counter {
|
|
|
|
|
background: rgba(255, 255, 255, 0.1);
|
|
|
|
|
backdrop-filter: blur(10px);
|
|
|
|
|
border: 2px solid rgba(255, 215, 0, 0.3);
|
2025-12-31 18:05:29 +00:00
|
|
|
border-radius: 15px;
|
|
|
|
|
padding: clamp(4px, 0.8vh, 6px) clamp(10px, 1.5vw, 15px);
|
2026-01-09 21:36:49 +00:00
|
|
|
color: var(--accent-primary);
|
2025-12-31 18:05:29 +00:00
|
|
|
font-size: clamp(0.8rem, 1.8vw, 1rem);
|
2025-12-31 17:40:34 +00:00
|
|
|
font-weight: bold;
|
|
|
|
|
text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
|
|
|
|
|
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
|
2025-12-31 17:57:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.show-all-button-top {
|
|
|
|
|
background: rgba(255, 107, 107, 0.2);
|
|
|
|
|
color: #ff6b6b;
|
|
|
|
|
border: 2px solid rgba(255, 107, 107, 0.5);
|
2025-12-31 18:05:29 +00:00
|
|
|
border-radius: 12px;
|
|
|
|
|
padding: clamp(4px, 0.8vh, 6px) clamp(10px, 1.5vw, 15px);
|
|
|
|
|
font-size: clamp(0.75rem, 1.3vw, 0.9rem);
|
2025-12-31 17:57:11 +00:00
|
|
|
font-weight: bold;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
transition: all 0.3s ease;
|
|
|
|
|
text-shadow: 0 0 10px rgba(255, 107, 107, 0.5);
|
|
|
|
|
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.show-all-button-top:hover {
|
|
|
|
|
background: rgba(255, 107, 107, 0.4);
|
|
|
|
|
border-color: #ff6b6b;
|
|
|
|
|
transform: translateY(-2px);
|
|
|
|
|
box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.show-all-button-top:active {
|
|
|
|
|
transform: translateY(0);
|
2025-12-31 16:53:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.app-subtitle {
|
|
|
|
|
text-align: center;
|
2026-01-09 21:36:49 +00:00
|
|
|
color: var(--text-primary);
|
2025-12-31 17:40:34 +00:00
|
|
|
font-size: clamp(1rem, 2vw, 1.5rem);
|
|
|
|
|
margin-bottom: clamp(5px, 1vh, 15px);
|
2025-12-31 16:53:26 +00:00
|
|
|
text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
|
2025-12-31 17:40:34 +00:00
|
|
|
flex-shrink: 0;
|
2025-12-31 16:53:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media (max-width: 768px) {
|
2025-12-31 17:40:34 +00:00
|
|
|
.app {
|
|
|
|
|
padding: clamp(3px, 0.5vh, 10px);
|
2025-12-31 16:53:26 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|