#lives-counter-box {
    margin: 0 auto;
    text-align: center;
    padding: 3.5rem 2rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 30px;
    color: var(--text);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.05),
        0 0 0 1px rgba(217, 45, 32, 0.05);
    animation: fadeIn 1.2s ease-out;
    position: relative;
    overflow: hidden;
}

#lives-counter-box::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(217, 45, 32, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.lives-icon {
    font-size: 64px;
    color: var(--brand);
    animation: pulse 1.5s infinite ease-in-out;
    margin-bottom: 1rem;
}

.lives-title {
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

#lives-number {
    font-size: 84px;
    font-weight: 900;
    letter-spacing: -2px;
    margin: 0.5rem 0;
    color: var(--brand);
    text-shadow: 0 10px 20px rgba(217, 45, 32, 0.1);
}

.lives-note {
    font-size: 17px;
    opacity: 0.95;
    margin-bottom: 15px;
}

/* Nút xem bảng vinh danh */
.btn-lives {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 14px 32px;
    background: var(--brand);
    color: white !important;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 20px rgba(217, 45, 32, 0.2);
}

    .btn-lives:hover {
        background: #ffe5e5;
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(255,255,255,0.6);
    }

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.9;
    }

    50% {
        transform: scale(1.15);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 0.9;
    }
}
