/* Back to Home Button - Simple and Elegant */
.back-to-home-btn {
    position: fixed;
    top: 30px;
    left: 30px;
    z-index: 10000;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', sans-serif;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.back-to-home-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(139, 92, 246, 0.4);
    color: #ffffff;
    transform: translateX(-3px);
    box-shadow: 0 6px 24px rgba(139, 92, 246, 0.2);
}

.back-to-home-btn .arrow {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.back-to-home-btn:hover .arrow {
    transform: translateX(-3px);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .back-to-home-btn {
        top: 20px;
        left: 20px;
        padding: 10px 18px;
        font-size: 13px;
    }
}
