/* DMC 3 ORB ROULETTE - TUDO NO MESMO BOTÃO */
#orbRouletteContainer {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 10px;
}

.orb-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    background: #c0c0c0;
    border: 3px solid;
    border-color: #ffffff #808080 #808080 #ffffff;
    cursor: pointer;
    text-align: center;
    padding: 10px;
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
}

.orb-button:hover {
    background: #b0b0b0;
}

.orb-button:active {
    border-color: #808080 #ffffff #ffffff #808080;
    background: #a0a0a0;
}

/* Estado inicial do botão */
.orb-initial-text {
    font-size: 11px;
    font-weight: bold;
    color: #000;
    margin-bottom: 5px;
    line-height: 1.1;
}

.orb-question-mark {
    font-size: 24px;
    font-weight: bold;
    color: #000080;
    text-shadow: 1px 1px 0px #ffffff;
}

/* Letreiro das imagens DENTRO do botão */
.orb-marquee-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.orb-images-scroll {
    display: flex;
    align-items: center;
    height: 60px;
    animation: scrollHorizontal 0.5s linear infinite;
}

.orb-images-scroll img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    margin: 0 5px;
    border: 2px solid #808080;
}

/* Estado final - resultado */
.orb-result-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.orb-final-image {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border: 3px solid;
    border-color: #ffffff #808080 #808080 #ffffff;
    margin-bottom: 5px;
    border-radius: 0;
}

.orb-final-name {
    font-size: 10px;
    font-weight: bold;
    color: #000;
    margin-bottom: 3px;
}

.orb-final-description {
    font-size: 8px;
    color: #000;
    line-height: 1.1;
    text-align: center;
    max-width: 100px;
}

/* Animações */
@keyframes scrollHorizontal {
    0% { transform: translateX(120px); }
    100% { transform: translateX(-400px); }
}

/* Piscar SEM smooth - só troca cor */
@keyframes blinkHard {
    0% { color: #000; }
    50% { color: #fff; }
    100% { color: #000; }
}

.orb-blink {
    animation: blinkHard 0.3s steps(2, end) 4;
}