/* Container que isola o widget */
#my-ring {
    all: initial; /* Reseta estilos herdados do site */
    display: block;
    width: 350px;
    height: 350px;
    margin: 20px auto;
    position: relative;
    font-family: Arial, sans-serif;
}

.mh-widget-container {
    width: 350px;
    height: 350px;
    position: relative;
    background-image: url('https://i.pinimg.com/736x/94/6e/44/946e449ce802c862e5d58556a0657382.jpg');
    background-size: cover;
    background-position: center;
    border: 5px solid #ef43a7;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

/* Personagem - centralizada e no fundo */
.mh-character-img {
    height: 85%;
    width: auto;
    z-index: 5;
    pointer-events: none;
    margin-bottom: -10px;
}

/* Caveira/Random - No topo absoluto */
.mh-random-btn-link {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
}

.mh-random-btn {
    width: 50px;
    height: auto;
    cursor: pointer;
    transition: transform 0.3s;
}

.mh-random-btn:hover {
    transform: scale(1.2) rotate(15deg);
}

/* Navegação - Setas */
.mh-navigation {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
    box-sizing: border-box;
    z-index: 50;
    pointer-events: none;
}

.mh-arrow-link {
    pointer-events: auto;
    text-decoration: none;
}

.mh-arrow-img {
    width: 60px;
    height: auto;
    filter: drop-shadow(2px 2px 5px black);
    transition: 0.2s;
}

.mh-arrow-link:hover .mh-arrow-img {
    transform: scale(1.2);
}

/* Botão de texto inferior */
.mh-footer-button {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white !important;
    padding: 5px 15px;
    border-radius: 20px;
    border: 2px solid #b388ff;
    text-decoration: none;
    font-size: 11px;
    z-index: 80;
    white-space: nowrap;
}