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%;
|
|
|
|
|
margin-bottom: clamp(5px, 1vh, 15px);
|
|
|
|
|
flex-shrink: 0;
|
|
|
|
|
gap: clamp(10px, 2vw, 20px);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.app-control-buttons {
|
|
|
|
|
display: flex;
|
|
|
|
|
gap: clamp(5px, 1vw, 10px);
|
|
|
|
|
flex-shrink: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.control-button {
|
|
|
|
|
width: clamp(35px, 5vw, 45px);
|
|
|
|
|
height: clamp(35px, 5vw, 45px);
|
|
|
|
|
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;
|
|
|
|
|
font-size: clamp(1.2rem, 2.5vw, 1.5rem);
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.app-title {
|
|
|
|
|
text-align: center;
|
2025-12-31 17:40:34 +00:00
|
|
|
font-size: clamp(2rem, 5vw, 4rem);
|
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 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 {
|
|
|
|
|
color: #ffd700;
|
|
|
|
|
display: inline-block;
|
|
|
|
|
margin: 0 10px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.title-to {
|
|
|
|
|
color: #ff6b6b;
|
2025-12-31 17:40:34 +00:00
|
|
|
font-size: clamp(1.5rem, 3.5vw, 3rem);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.question-counter {
|
|
|
|
|
background: rgba(255, 255, 255, 0.1);
|
|
|
|
|
backdrop-filter: blur(10px);
|
|
|
|
|
border: 2px solid rgba(255, 215, 0, 0.3);
|
|
|
|
|
border-radius: 20px;
|
|
|
|
|
padding: clamp(5px, 1vh, 8px) clamp(12px, 2vw, 18px);
|
|
|
|
|
color: #ffd700;
|
|
|
|
|
font-size: clamp(0.9rem, 2vw, 1.2rem);
|
|
|
|
|
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);
|
|
|
|
|
flex-shrink: 0;
|
2025-12-31 16:53:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.app-subtitle {
|
|
|
|
|
text-align: center;
|
|
|
|
|
color: #fff;
|
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
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|