.season-timer-container {
	padding: 23px;
	backdrop-filter: blur(8px);
	margin: 0 auto;
	transition: transform 0.2s ease;

	width: 100%;
	max-width: 400px;
	border-radius: 12px;

	display: flex;
	justify-content: center;

	background-image: url('../img/leto1.png');
        background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}



.season-timer {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: nowrap;
}

.timer-labels {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.timer-title {
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.timer-display {
    color: white;
    font-weight: bold;
    font-size: 20px;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
}

.timer-display span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.15);
    padding: 0 6px;
    border-radius: 6px;
    font-size: 16px;
    transition: background 0.3s ease;
}

/* Адаптация под мобильные устройства */
@media (max-width: 768px) {
    .battlepass-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .season-timer-container {
        margin-top: 15px;
        width: 100%;
        padding: 25px 25px;
    }

    .timer-display {
        font-size: 18px;
    }

    .timer-display span {
        min-width: 26px;
        height: 28px;
        font-size: 14px;
    }
}




   :root {
        --primary-color: #4e73df;
        --secondary-color: #2e59d9;
        --premium-color: #f6c23e;
        --dark-color: #5a5c69;
    }
	
	.player-medals {
		display: flex;
		align-items: center;
		margin-top: 5px;
	}
	
	    .battlepass-containers {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 20px 0;
    }
    .battlepass-toggle {
        background: #ff3333;
        color: white;
        border: none;
        padding: 10px 20px;
        cursor: pointer;
        border-radius: 5px;
		font-size: 18px;
    }
    .battlepass-content {
        background: #ff3333;
        color: white;
        padding: 20px;
        text-align: center;
        width: 100%;
        display: none;
        margin-top: 10px;
        border-radius: 5px;
    }

	.player-medals img {
		transition: transform 0.3s;
	}

	.player-medals img:hover {
		transform: scale(1.2);
	}

	.task-card .medal-badge {
		position: absolute;
		top: 10px;
		right: 10px;
		width: 60px;
		height: 60px;
		z-index: 2;
	}

	.task-card.premium .medal-badge {
		filter: drop-shadow(0 0 5px gold);
	}
	
	.servers-horizontal-container {
        width: 100%;
        overflow: hidden;
    }
    
    .servers-horizontal-list {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        list-style: none;
        padding: 0;
		margin-bottom: 10px;
		border-radius: 10px;
    }
    
    .server-item {
        padding: 8px 16px;
		background: #31313c;
		border-radius: 4px;
		cursor: pointer;
		white-space: nowrap;
		border: 1px solid #31313c;
		transition: all 0.2s ease;
    }
    
    .server-item:hover {
        background: #1f1f24;
		border: 1px solid #1f1f24;
    }
    
    .server-item.active {
        background: #007bff;
        color: white;
        border-color: #006fe6;
    }
	
	.fire-dot {
	    display: inline-block;
		width: 12px;
		height: 12px;
		border-radius: 50%;
		background: radial-gradient(circle at center, #c14040, #323730);
		margin-right: 6px;
		vertical-align: middle;
		box-shadow: 0 0 12px #ff0000;
	}
    
    .battlepass-container {
        background: #1a1a26;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        padding: 30px;
        margin-top: 30px;
        color: white;
        margin-bottom: 20px;
    }
    
    .battlepass-header {
        text-align: center;
        margin-bottom: 30px;
        background: #12121b;
		border-radius: 10px;
		height: 100px;
    }
    
.battlepass-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 20px 0 10px; /* верх: 20px, низ: 10px */
    padding-top: 10px; /* можно увеличить по вкусу */
    background: linear-gradient(270deg, #FFD700, #FFA500, #00BFFF, #1E90FF, #FFD700);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 4s ease-in-out infinite;
}

@keyframes shimmer {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

    
.progress-container {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 30px;
    background: #0b0f1a; /* тёмный фон */
}

/* Слой с "звездами" */
.progress-container::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background-image:
        radial-gradient(circle, #fff 1px, transparent 1px),
        radial-gradient(circle, #0ff 1px, transparent 1px),
        radial-gradient(circle, #f0f 1px, transparent 1px),
        radial-gradient(circle, #ff0 1px, transparent 1px);
    background-size: 40px 40px, 60px 60px, 80px 80px, 100px 100px;
    background-position: 0 0, 10px 10px, 20px 20px, 30px 30px;
    opacity: 0.4;
    animation: moveStars 90s linear infinite;
    pointer-events: none;
    z-index: 0;
}

.progress-container::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(255,255,255,0.5) 1px, transparent 1px);
    background-size: 25px 25px;
    opacity: 0.2;
    animation: sparkle 3s infinite ease-in-out alternate;
    pointer-events: none;
    z-index: 0;
}

@keyframes sparkle {
    0% { opacity: 0.1; }
    100% { opacity: 0.25; }
}

/* Контент внутри контейнера должен быть выше фона */
.progress-container > * {
    position: relative;
    z-index: 1;
}

/* Анимация движения звёзд */
@keyframes moveStars {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    100% {
        transform: translate(50px, 50px) rotate(360deg);
    }
}

    
    .progress {
        height: 20px;
        background-color: rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        margin-bottom: 10px;
    }
    
    .progress-bar {
        /* background: linear-gradient(90deg, #4e73df 0%, #224abe 100%); */
        border-radius: 10px;
    }
    
    .tasks-container {
        display: flex;
        overflow-x: auto;
        padding-bottom: 20px;
        scrollbar-width: thin;
        scrollbar-color: var(--primary-color) rgba(255, 255, 255, 0.1);
    }
    
    .tasks-container::-webkit-scrollbar {
        height: 8px;
    }
    
    .tasks-container::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 10px;
    }
    
    .tasks-container::-webkit-scrollbar-thumb {
        background-color: var(--primary-color);
        border-radius: 10px;
    }
    
    .task-card {
        min-width: 250px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        padding: 15px;
        margin-right: 15px;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }
    
    .task-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }
    
    .task-card.premium {
        border: 2px solid var(--premium-color);
    }
    
    .task-card.completed {
        background: rgba(46, 204, 113, 0.2);
    }
    
    .task-image {
        width: 100%;
        height: 120px;
        object-fit: cover;
        border-radius: 8px;
        margin-bottom: 10px;
        background-color: #2a3f5f;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 2rem;
    }
    
    .task-title {
        font-weight: 600;
        margin-bottom: 5px;
    }
    
    .task-xp {
        color: #4e73df;
        font-weight: 700;
    }
    
    .task-reward {
        display: flex;
        justify-content: space-between;
        margin-top: 10px;
        font-size: 0.9rem;
    }
    
    .reward-item {
        display: flex;
        align-items: center;
    }
    
    .reward-icon {
        margin-right: 5px;
        color: #f6c23e;
    }
    
    .btn-claim {
        width: 100%;
        margin-top: 10px;
        background: linear-gradient(90deg, #4e73df 0%, #224abe 100%);
        border: none;
        font-weight: 600;
    }
    
    .btn-claim:hover {
        background: linear-gradient(90deg, #3b5fc5 0%, #1d3b9e 100%);
    }
    
    .btn-premium {
        background: linear-gradient(90deg, #f6c23e 0%, #dda20a 100%);
        border: none;
        font-weight: 600;
        color: #000;
    }
    
    .btn-premium:hover {
        background: linear-gradient(90deg, #e4b12e 0%, #c79200 100%);
        color: #000;
    }
    
    .btn-buy-level {
        background: linear-gradient(90deg, #1cc88a 0%, #13855c 100%);
        border: none;
        font-weight: 600;
    }
    
    .btn-buy-level:hover {
        background: linear-gradient(90deg, #17a673 0%, #0e6e4a 100%);
    }
    
    .blur-effect {
        pointer-events: none;
        user-select: none;
    }
    
    .premium-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 2;
    }
    
    .premium-lock {
        font-size: 2rem;
        color: var(--premium-color);
    }
    
    .stats-card {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        padding: 15px;
        margin-bottom: 20px;
    }
    
    .stat-value {
        font-size: 1.5rem;
        font-weight: 700;
        color: #4e73df;
    }
    
    .badge-premium {
        background-color: var(--premium-color);
        color: #000;
    }
    
    .top-players-card {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        padding: 15px;
    }
    
    .top-players-list {
        max-height: 282px;
        overflow-y: auto;
    }
    
    .top-player-item {
        display: flex;
        align-items: center;
        padding: 10px 0;
    }
    
    .top-player-item:last-child {
        border-bottom: none;
    }
    
    .top-player-item.current-user {
        background: rgba(78, 115, 223, 0.2);
        border-radius: 5px;
        padding: 10px;
    }
    
    .player-rank {
        width: 30px;
        height: 30px;
        background: var(--primary-color);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 15px;
        font-weight: bold;
    }
    
    .player-avatar {
        width: 40px;
        height: 40px;
        margin-right: 15px;
    }
    
    .player-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .player-info {
        flex: 1;
    }
    
    .player-name {
        font-weight: 600;
        margin-bottom: 2px;
    }
    
    .player-xp {
        font-size: 0.8rem;
        color: #4e73df;
    }
.fas.fa-home {
    vertical-align: middle;
    position: relative;
    top: 7px; /* если всё ещё чуть выше — попробуй 2px или 3px */
}


    .btn-sm i {
        margin-right: 5px;
    }
    
    .d-flex.justify-content-between.align-items-center {
        padding: 0 10px;
    }
    
    	@media (max-width: 768px) {
		
	.servers-horizontal-list {
        display: grid;
	}
}