/* Основные стили для игрового дизайна */
:root {
    --primary: #340CE8;
    --secondary: #FD37FE;
    --gradient: linear-gradient(135deg, var(--primary), var(--secondary));
    --light: #f8f9fa;
    --dark: #212529;
    --accent: #FFD166;
    --success: #06D6A0;
}

/* Игровой прогресс-бар */
.progress-container {
    width: 100%;
    max-width: 600px;
    margin: 40px auto 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    height: 12px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    width: 75%;
    background: var(--accent);
    border-radius: 50px;
    position: relative;
    animation: progressAnimation 2s ease-in-out;
}

@keyframes progressAnimation {
    0% { width: 0%; }
    100% { width: 75%; }
}

.progress-text {
    margin-top: 15px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    color: white;
}

/* Игровые элементы */
.feature-icon {
    font-size: 3rem;
    margin-bottom: 25px;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    padding: 15px;
    border-radius: 50%;
    background-color: rgba(52, 12, 232, 0.1);
}

/* Статистика в игровом стиле */
.game-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    min-width: 150px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 10px;
}

/* Достижения */
.achievement {
    display: flex;
    align-items: center;
    background: white;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.achievement-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-right: 15px;
    flex-shrink: 0;
}

/* Плавающая кнопка */
.floating-icon {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    z-index: 999;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Кастомные кнопки */
.custom-btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    margin: 0 15px;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

.btn-primary {
    background: white;
    color: var(--primary) !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.btn-outline {
    border: 3px solid white;
    color: white !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background: transparent;
}

.btn-outline:hover {
    background: white;
    color: var(--primary) !important;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Адаптивность */
@media (max-width: 768px) {
    .custom-btn {
        display: block;
        margin: 15px auto;
        width: 250px;
    }
    
    .game-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .stat {
        width: 100%;
        max-width: 250px;
    }
}