.hero-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.hero-back-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(251, 191, 36, 0.5);
    color: white;
    transform: translateX(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero-back-btn .back-arrow {
    width: 1.25rem;
    height: 1.25rem;
    transition: transform 0.3s ease;
}

.hero-back-btn:hover .back-arrow {
    transform: translateX(-5px);
}

.hero-back-btn:active {
    transform: translateX(-3px) scale(0.98);
}

.stats-back-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.stats-back-button:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(251, 191, 36, 0.5);
    color: white;
    transform: translateX(-5px);
}

.stats-back-button i {
    transition: transform 0.3s ease;
}

.stats-back-button:hover i {
    transform: translateX(-3px);
}

@media (max-width: 640px) {
    .hero-back-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }
    
    .hero-back-btn .back-arrow {
        width: 1rem;
        height: 1rem;
    }
}