.back-link {
    position: absolute;
    top: 2rem;
    left: 2rem;
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    display: flex;
    align-items: center;
    z-index: 1000;
    opacity: 0.8;
    transition: all 0.2s ease;
    font-weight: 500;
}

.back-link:hover {
    opacity: 1;
    transform: translateX(-3px);
}

.back-link::before {
    content: "←";
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .back-link {
        top: 1.5rem;
        left: 1.5rem;
    }
}