2025-12-07 02:20:45 +00:00
|
|
|
|
.ladder-page {
|
|
|
|
|
|
min-height: 100vh;
|
2025-12-07 02:27:23 +00:00
|
|
|
|
background: var(--bg-primary);
|
2025-12-07 02:20:45 +00:00
|
|
|
|
position: relative;
|
|
|
|
|
|
overflow-x: hidden;
|
|
|
|
|
|
padding-bottom: 80px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-12-07 02:27:23 +00:00
|
|
|
|
/* Новогодние снежинки - тонкие, не навязчивые */
|
2025-12-07 02:20:45 +00:00
|
|
|
|
.new-year-decorations {
|
|
|
|
|
|
position: fixed;
|
|
|
|
|
|
top: 0;
|
|
|
|
|
|
left: 0;
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
height: 100%;
|
|
|
|
|
|
pointer-events: none;
|
|
|
|
|
|
z-index: 1;
|
2025-12-07 02:27:23 +00:00
|
|
|
|
opacity: 0.3;
|
2025-12-07 02:20:45 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.snowflake {
|
|
|
|
|
|
position: absolute;
|
2025-12-07 02:27:23 +00:00
|
|
|
|
color: var(--text-secondary);
|
|
|
|
|
|
font-size: 16px;
|
2025-12-07 02:20:45 +00:00
|
|
|
|
animation: fall linear infinite;
|
2025-12-07 02:27:23 +00:00
|
|
|
|
animation-duration: 15s;
|
2025-12-07 02:20:45 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.snowflake:nth-child(1) {
|
|
|
|
|
|
left: 10%;
|
|
|
|
|
|
animation-delay: 0s;
|
2025-12-07 02:27:23 +00:00
|
|
|
|
animation-duration: 12s;
|
2025-12-07 02:20:45 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.snowflake:nth-child(2) {
|
|
|
|
|
|
left: 30%;
|
|
|
|
|
|
animation-delay: 2s;
|
2025-12-07 02:27:23 +00:00
|
|
|
|
animation-duration: 18s;
|
2025-12-07 02:20:45 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.snowflake:nth-child(3) {
|
|
|
|
|
|
left: 50%;
|
|
|
|
|
|
animation-delay: 4s;
|
2025-12-07 02:27:23 +00:00
|
|
|
|
animation-duration: 14s;
|
2025-12-07 02:20:45 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.snowflake:nth-child(4) {
|
|
|
|
|
|
left: 70%;
|
|
|
|
|
|
animation-delay: 1s;
|
2025-12-07 02:27:23 +00:00
|
|
|
|
animation-duration: 16s;
|
2025-12-07 02:20:45 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.snowflake:nth-child(5) {
|
|
|
|
|
|
left: 85%;
|
|
|
|
|
|
animation-delay: 3s;
|
2025-12-07 02:27:23 +00:00
|
|
|
|
animation-duration: 17s;
|
2025-12-07 02:20:45 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.snowflake:nth-child(6) {
|
|
|
|
|
|
left: 20%;
|
|
|
|
|
|
animation-delay: 5s;
|
2025-12-07 02:27:23 +00:00
|
|
|
|
animation-duration: 20s;
|
2025-12-07 02:20:45 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@keyframes fall {
|
|
|
|
|
|
0% {
|
|
|
|
|
|
transform: translateY(-100vh) rotate(0deg);
|
2025-12-07 02:27:23 +00:00
|
|
|
|
opacity: 0.3;
|
2025-12-07 02:20:45 +00:00
|
|
|
|
}
|
|
|
|
|
|
100% {
|
|
|
|
|
|
transform: translateY(100vh) rotate(360deg);
|
|
|
|
|
|
opacity: 0;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ladder-header {
|
|
|
|
|
|
position: sticky;
|
|
|
|
|
|
top: 0;
|
2025-12-07 02:27:23 +00:00
|
|
|
|
background: var(--bg-secondary);
|
2025-12-07 02:20:45 +00:00
|
|
|
|
padding: 16px;
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
|
align-items: center;
|
2025-12-07 02:27:23 +00:00
|
|
|
|
border-bottom: 1px solid var(--divider-color);
|
2025-12-07 02:20:45 +00:00
|
|
|
|
z-index: 10;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ladder-header h1 {
|
|
|
|
|
|
font-size: 20px;
|
|
|
|
|
|
font-weight: 700;
|
2025-12-07 02:27:23 +00:00
|
|
|
|
color: var(--text-primary);
|
2025-12-07 02:20:45 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.back-btn {
|
|
|
|
|
|
width: 44px;
|
|
|
|
|
|
height: 44px;
|
|
|
|
|
|
border-radius: 50%;
|
2025-12-07 02:27:23 +00:00
|
|
|
|
background: transparent;
|
|
|
|
|
|
color: var(--text-primary);
|
2025-12-07 02:20:45 +00:00
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
justify-content: center;
|
|
|
|
|
|
border: none;
|
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-12-07 02:27:23 +00:00
|
|
|
|
/* Карточка отсчета - в стиле Nakama с новогодними акцентами */
|
2025-12-07 02:20:45 +00:00
|
|
|
|
.countdown-card {
|
|
|
|
|
|
margin: 16px;
|
2025-12-07 02:27:23 +00:00
|
|
|
|
background: var(--bg-secondary);
|
|
|
|
|
|
border-radius: 16px;
|
|
|
|
|
|
padding: 20px;
|
|
|
|
|
|
box-shadow: 0 2px 8px var(--shadow-md);
|
2025-12-07 02:20:45 +00:00
|
|
|
|
position: relative;
|
|
|
|
|
|
overflow: hidden;
|
2025-12-07 02:27:23 +00:00
|
|
|
|
border: 2px solid transparent;
|
|
|
|
|
|
background-image:
|
|
|
|
|
|
linear-gradient(var(--bg-secondary), var(--bg-secondary)),
|
|
|
|
|
|
linear-gradient(135deg, #FFD700, #FFA500);
|
|
|
|
|
|
background-origin: border-box;
|
|
|
|
|
|
background-clip: padding-box, border-box;
|
2025-12-07 02:20:45 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.countdown-title {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
gap: 8px;
|
|
|
|
|
|
margin-bottom: 16px;
|
|
|
|
|
|
position: relative;
|
|
|
|
|
|
z-index: 1;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.countdown-title h2 {
|
|
|
|
|
|
font-size: 20px;
|
|
|
|
|
|
font-weight: 700;
|
2025-12-07 02:27:23 +00:00
|
|
|
|
color: var(--text-primary);
|
2025-12-07 02:20:45 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.gift-icon {
|
|
|
|
|
|
color: #FF6347;
|
|
|
|
|
|
animation: bounce 2s ease-in-out infinite;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@keyframes bounce {
|
|
|
|
|
|
0%, 100% {
|
|
|
|
|
|
transform: translateY(0);
|
|
|
|
|
|
}
|
|
|
|
|
|
50% {
|
2025-12-07 02:27:23 +00:00
|
|
|
|
transform: translateY(-5px);
|
2025-12-07 02:20:45 +00:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.countdown-timer {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
justify-content: center;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
gap: 8px;
|
|
|
|
|
|
margin: 20px 0;
|
|
|
|
|
|
position: relative;
|
|
|
|
|
|
z-index: 1;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.countdown-item {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
gap: 4px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.countdown-value {
|
|
|
|
|
|
font-size: 32px;
|
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
|
color: #FFD700;
|
|
|
|
|
|
min-width: 60px;
|
|
|
|
|
|
text-align: center;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.countdown-label {
|
|
|
|
|
|
font-size: 12px;
|
2025-12-07 02:27:23 +00:00
|
|
|
|
color: var(--text-secondary);
|
2025-12-07 02:20:45 +00:00
|
|
|
|
text-transform: uppercase;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.countdown-separator {
|
|
|
|
|
|
font-size: 24px;
|
|
|
|
|
|
color: #FFD700;
|
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
|
margin: 0 4px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.countdown-slogan {
|
|
|
|
|
|
text-align: center;
|
2025-12-07 02:27:23 +00:00
|
|
|
|
color: var(--text-secondary);
|
2025-12-07 02:20:45 +00:00
|
|
|
|
font-size: 14px;
|
|
|
|
|
|
font-style: italic;
|
|
|
|
|
|
margin-top: 16px;
|
|
|
|
|
|
position: relative;
|
|
|
|
|
|
z-index: 1;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-12-07 02:27:23 +00:00
|
|
|
|
/* Топ пользователей - в стиле Nakama */
|
2025-12-07 02:20:45 +00:00
|
|
|
|
.ladder-top {
|
|
|
|
|
|
margin: 16px;
|
2025-12-07 02:27:23 +00:00
|
|
|
|
background: var(--bg-secondary);
|
|
|
|
|
|
border-radius: 16px;
|
|
|
|
|
|
padding: 16px;
|
|
|
|
|
|
box-shadow: 0 2px 8px var(--shadow-md);
|
2025-12-07 02:20:45 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ladder-top-header {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
margin-bottom: 16px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ladder-top-header h2 {
|
|
|
|
|
|
font-size: 20px;
|
|
|
|
|
|
font-weight: 700;
|
2025-12-07 02:27:23 +00:00
|
|
|
|
color: var(--text-primary);
|
2025-12-07 02:20:45 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.info-btn {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
gap: 6px;
|
|
|
|
|
|
padding: 8px 12px;
|
2025-12-07 02:27:23 +00:00
|
|
|
|
background: var(--bg-primary);
|
|
|
|
|
|
border: 1px solid var(--border-color);
|
2025-12-07 02:20:45 +00:00
|
|
|
|
border-radius: 20px;
|
2025-12-07 02:27:23 +00:00
|
|
|
|
color: var(--text-primary);
|
2025-12-07 02:20:45 +00:00
|
|
|
|
font-size: 13px;
|
|
|
|
|
|
cursor: pointer;
|
2025-12-07 02:27:23 +00:00
|
|
|
|
transition: all 0.2s;
|
2025-12-07 02:20:45 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.info-btn:active {
|
|
|
|
|
|
transform: scale(0.95);
|
2025-12-07 02:27:23 +00:00
|
|
|
|
background: var(--divider-color);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.info-btn svg {
|
|
|
|
|
|
color: #FFD700;
|
2025-12-07 02:20:45 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.top-users-list {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
gap: 12px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.top-user-item {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
gap: 12px;
|
|
|
|
|
|
padding: 12px;
|
2025-12-07 02:27:23 +00:00
|
|
|
|
background: var(--bg-primary);
|
2025-12-07 02:20:45 +00:00
|
|
|
|
border-radius: 12px;
|
2025-12-07 02:27:23 +00:00
|
|
|
|
transition: all 0.2s;
|
2025-12-07 02:20:45 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.top-user-item.current-user {
|
2025-12-07 02:27:23 +00:00
|
|
|
|
background: rgba(255, 215, 0, 0.1);
|
|
|
|
|
|
border: 1px solid rgba(255, 215, 0, 0.3);
|
2025-12-07 02:20:45 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.user-rank {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
justify-content: center;
|
|
|
|
|
|
width: 40px;
|
|
|
|
|
|
height: 40px;
|
|
|
|
|
|
flex-shrink: 0;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.rank-icon {
|
2025-12-07 02:27:23 +00:00
|
|
|
|
filter: drop-shadow(0 0 4px currentColor);
|
2025-12-07 02:20:45 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.rank-icon.gold {
|
|
|
|
|
|
color: #FFD700;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.rank-icon.silver {
|
|
|
|
|
|
color: #C0C0C0;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.rank-icon.bronze {
|
|
|
|
|
|
color: #CD7F32;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.rank-number {
|
|
|
|
|
|
font-size: 20px;
|
|
|
|
|
|
font-weight: 700;
|
2025-12-07 02:27:23 +00:00
|
|
|
|
color: var(--text-primary);
|
2025-12-07 02:20:45 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.user-avatar {
|
|
|
|
|
|
width: 50px;
|
|
|
|
|
|
height: 50px;
|
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
|
object-fit: cover;
|
2025-12-07 02:27:23 +00:00
|
|
|
|
border: 2px solid var(--border-color);
|
2025-12-07 02:20:45 +00:00
|
|
|
|
flex-shrink: 0;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.top-user-item.current-user .user-avatar {
|
|
|
|
|
|
border-color: #FFD700;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.user-info {
|
|
|
|
|
|
flex: 1;
|
|
|
|
|
|
min-width: 0;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.user-name {
|
|
|
|
|
|
font-size: 16px;
|
|
|
|
|
|
font-weight: 600;
|
2025-12-07 02:27:23 +00:00
|
|
|
|
color: var(--text-primary);
|
2025-12-07 02:20:45 +00:00
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
gap: 6px;
|
|
|
|
|
|
margin-bottom: 4px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.user-tickets {
|
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
|
color: #FFD700;
|
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.current-badge {
|
|
|
|
|
|
color: #FFD700;
|
|
|
|
|
|
filter: drop-shadow(0 0 4px #FFD700);
|
|
|
|
|
|
animation: twinkle 2s ease-in-out infinite;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@keyframes twinkle {
|
|
|
|
|
|
0%, 100% {
|
|
|
|
|
|
opacity: 1;
|
|
|
|
|
|
}
|
|
|
|
|
|
50% {
|
|
|
|
|
|
opacity: 0.5;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Карточка текущего пользователя */
|
|
|
|
|
|
.current-user-card {
|
|
|
|
|
|
margin: 16px;
|
2025-12-07 02:27:23 +00:00
|
|
|
|
background: var(--bg-secondary);
|
|
|
|
|
|
border-radius: 16px;
|
|
|
|
|
|
padding: 16px;
|
|
|
|
|
|
box-shadow: 0 2px 8px var(--shadow-md);
|
2025-12-07 02:20:45 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.current-user-card h3 {
|
|
|
|
|
|
font-size: 18px;
|
|
|
|
|
|
font-weight: 600;
|
2025-12-07 02:27:23 +00:00
|
|
|
|
color: var(--text-primary);
|
2025-12-07 02:20:45 +00:00
|
|
|
|
margin-bottom: 12px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.current-user-item {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
gap: 12px;
|
|
|
|
|
|
padding: 12px;
|
2025-12-07 02:27:23 +00:00
|
|
|
|
background: var(--bg-primary);
|
2025-12-07 02:20:45 +00:00
|
|
|
|
border-radius: 12px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Модальное окно с информацией */
|
|
|
|
|
|
.info-modal-overlay {
|
|
|
|
|
|
position: fixed;
|
|
|
|
|
|
top: 0;
|
|
|
|
|
|
left: 0;
|
|
|
|
|
|
right: 0;
|
|
|
|
|
|
bottom: 0;
|
2025-12-07 02:27:23 +00:00
|
|
|
|
background: rgba(0, 0, 0, 0.5);
|
2025-12-07 02:20:45 +00:00
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
justify-content: center;
|
|
|
|
|
|
z-index: 1000;
|
|
|
|
|
|
padding: 20px;
|
|
|
|
|
|
animation: fadeIn 0.3s;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.info-modal {
|
|
|
|
|
|
max-width: 500px;
|
|
|
|
|
|
max-height: 80vh;
|
|
|
|
|
|
overflow-y: auto;
|
2025-12-07 02:27:23 +00:00
|
|
|
|
background: var(--bg-secondary);
|
|
|
|
|
|
border-radius: 16px;
|
|
|
|
|
|
box-shadow: 0 4px 20px var(--shadow-lg);
|
2025-12-07 02:20:45 +00:00
|
|
|
|
position: relative;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.info-modal-header {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
padding: 16px;
|
2025-12-07 02:27:23 +00:00
|
|
|
|
border-bottom: 1px solid var(--divider-color);
|
2025-12-07 02:20:45 +00:00
|
|
|
|
position: sticky;
|
|
|
|
|
|
top: 0;
|
2025-12-07 02:27:23 +00:00
|
|
|
|
background: var(--bg-secondary);
|
2025-12-07 02:20:45 +00:00
|
|
|
|
z-index: 10;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.info-modal-header h2 {
|
|
|
|
|
|
font-size: 20px;
|
|
|
|
|
|
font-weight: 700;
|
2025-12-07 02:27:23 +00:00
|
|
|
|
color: var(--text-primary);
|
2025-12-07 02:20:45 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.close-btn {
|
|
|
|
|
|
width: 32px;
|
|
|
|
|
|
height: 32px;
|
|
|
|
|
|
border-radius: 50%;
|
2025-12-07 02:27:23 +00:00
|
|
|
|
background: var(--bg-primary);
|
|
|
|
|
|
color: var(--text-primary);
|
2025-12-07 02:20:45 +00:00
|
|
|
|
border: none;
|
|
|
|
|
|
font-size: 24px;
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
justify-content: center;
|
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
line-height: 1;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.info-modal-content {
|
|
|
|
|
|
padding: 16px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.info-section {
|
|
|
|
|
|
margin-bottom: 20px;
|
|
|
|
|
|
padding-bottom: 20px;
|
2025-12-07 02:27:23 +00:00
|
|
|
|
border-bottom: 1px solid var(--divider-color);
|
2025-12-07 02:20:45 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.info-section:last-child {
|
|
|
|
|
|
border-bottom: none;
|
|
|
|
|
|
margin-bottom: 0;
|
|
|
|
|
|
padding-bottom: 0;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.info-section h3 {
|
|
|
|
|
|
font-size: 16px;
|
|
|
|
|
|
font-weight: 600;
|
2025-12-07 02:27:23 +00:00
|
|
|
|
color: var(--text-primary);
|
2025-12-07 02:20:45 +00:00
|
|
|
|
margin-bottom: 8px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.info-section p {
|
|
|
|
|
|
font-size: 14px;
|
2025-12-07 02:27:23 +00:00
|
|
|
|
color: var(--text-primary);
|
2025-12-07 02:20:45 +00:00
|
|
|
|
line-height: 1.6;
|
|
|
|
|
|
margin-bottom: 4px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.info-limit {
|
2025-12-07 02:27:23 +00:00
|
|
|
|
color: var(--text-secondary);
|
2025-12-07 02:20:45 +00:00
|
|
|
|
font-size: 13px;
|
|
|
|
|
|
font-style: italic;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.info-section.anti-fraud {
|
2025-12-07 02:27:23 +00:00
|
|
|
|
background: var(--bg-primary);
|
2025-12-07 02:20:45 +00:00
|
|
|
|
padding: 12px;
|
|
|
|
|
|
border-radius: 8px;
|
2025-12-07 02:27:23 +00:00
|
|
|
|
border: 1px solid var(--border-color);
|
2025-12-07 02:20:45 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.info-section.anti-fraud h3 {
|
|
|
|
|
|
color: #FF6347;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.loading-state {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
justify-content: center;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
padding: 40px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.spinner {
|
|
|
|
|
|
width: 40px;
|
|
|
|
|
|
height: 40px;
|
2025-12-07 02:27:23 +00:00
|
|
|
|
border: 3px solid var(--divider-color);
|
2025-12-07 02:20:45 +00:00
|
|
|
|
border-top-color: #FFD700;
|
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
|
animation: spin 1s linear infinite;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@keyframes spin {
|
|
|
|
|
|
to {
|
|
|
|
|
|
transform: rotate(360deg);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-12-07 02:27:23 +00:00
|
|
|
|
/* Темная тема */
|
|
|
|
|
|
[data-theme="dark"] .countdown-card {
|
|
|
|
|
|
background-image:
|
|
|
|
|
|
linear-gradient(var(--bg-secondary), var(--bg-secondary)),
|
|
|
|
|
|
linear-gradient(135deg, #FFD700, #FFA500);
|
2025-12-07 02:20:45 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
2025-12-07 02:27:23 +00:00
|
|
|
|
[data-theme="dark"] .snowflake {
|
|
|
|
|
|
color: var(--text-secondary);
|
|
|
|
|
|
opacity: 0.2;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
[data-theme="dark"] .countdown-value {
|
|
|
|
|
|
color: #FFD700;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
[data-theme="dark"] .countdown-separator {
|
|
|
|
|
|
color: #FFD700;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
[data-theme="dark"] .user-tickets {
|
|
|
|
|
|
color: #FFD700;
|
|
|
|
|
|
}
|