.otros-resultados {
    margin: 1.5rem 0;
    padding: 1.5rem;
    overflow: hidden;
    background: linear-gradient(135deg, #fff8d6 0%, #ffffff 72%);
    border: 1px solid rgba(25, 135, 84, 0.2);
    border-left: 6px solid #198754;
    border-radius: 0.85rem;
    box-shadow: 0 0.35rem 1rem rgba(33, 37, 41, 0.1);
}

.otros-resultados__contenido {
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: space-between;
}

.otros-resultados__etiqueta {
    display: block;
    margin-bottom: 0.3rem;
    color: #146c43;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.otros-resultados h2 {
    margin-bottom: 0.5rem;
    color: #212529;
    font-size: clamp(1.35rem, 2.5vw, 1.7rem);
    font-weight: 700;
}

.otros-resultados p {
    max-width: 46rem;
    margin-bottom: 0.85rem;
    color: #495057;
}

.otros-resultados__juegos {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.otros-resultados__juegos span {
    padding: 0.25rem 0.65rem;
    color: #146c43;
    background-color: #dff3e8;
    border: 1px solid rgba(25, 135, 84, 0.2);
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
}

.otros-resultados__acciones {
    display: flex;
    flex: 0 0 auto;
    flex-direction: column;
    gap: 0.45rem;
    align-items: center;
}

.otros-resultados__acciones small {
    color: #6c757d;
    font-size: 0.78rem;
    text-align: center;
}

.otros-resultados__boton {
    display: inline-flex;
    gap: 0.55rem;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.15rem;
    color: #ffffff;
    background-color: #198754;
    border: 1px solid #198754;
    border-radius: 0.6rem;
    box-shadow: 0 0.25rem 0.6rem rgba(25, 135, 84, 0.22);
    font-weight: 700;
    text-decoration: none;
    transition: background-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.otros-resultados__boton:hover {
    color: #ffffff;
    background-color: #146c43;
    border-color: #146c43;
    box-shadow: 0 0.4rem 0.9rem rgba(25, 135, 84, 0.3);
    transform: translateY(-2px);
}

.otros-resultados__boton:focus-visible {
    outline: 3px solid rgba(255, 193, 7, 0.75);
    outline-offset: 3px;
}

@media (max-width: 767.98px) {
    .otros-resultados {
        padding: 1.25rem;
    }

    .otros-resultados__contenido {
        flex-direction: column;
        gap: 1.25rem;
        align-items: stretch;
    }

    .otros-resultados__boton {
        width: 100%;
    }

    .otros-resultados__acciones {
        align-items: stretch;
    }
}

@media (prefers-reduced-motion: reduce) {
    .otros-resultados__boton {
        transition: none;
    }
}
