<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Estilos para a busca */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.3s ease-in-out;
}

#searchGames::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

#searchGames:focus {
    box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.1);
}

#searchHelper {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6) !important;
    margin-top: 0.25rem;
}

/* Estilos para as barras de progresso */
.percent {
    position: relative;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    overflow: hidden;
}

.percent-txt {
    position: absolute;
    width: 100%;
    text-align: center;
    color: white;
    font-weight: 600;
    font-size: 0.8rem;
    margin: 0;
    line-height: 15px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.percent-bar {
    height: 17px;
    transition: all 0.3s ease;
    position: relative;
    border-radius: 10px;
} </pre></body></html>