.wp_spin_wheel_eighth {
    position: relative;
    text-align: center;
    margin-top: 20px;
}

.wheel-eighth {
    display: inline-block;
    position: relative;
    width: 600px;
    height: 600px;
    margin: 0 auto;
}

canvas#ultimate_spin_canvas_eighth {
    cursor: pointer;
    width: 100%;
    height: auto;
    display: block;
}

.pointer-eighth {
    position: absolute;
    top: 50%;
    right: -20px;
    width: 0;
    height: 0;
    border-top: 25px solid transparent;
    border-bottom: 25px solid transparent;
    border-right: 40px solid #333333;
    z-index: 9999;
    filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.6));
    transform: translateY(-50%);
}

.wheel-result-eighth {
    margin-top: 30px;
    font-size: 16px;
    color: #242254;
    display: none;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    background-color: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.wheel-result-eighth h3 {
    margin-top: 0;
    color: #242254;
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
    text-align: center;
}

.result-details-eighth {
    background-color: #ffffff;
    padding: 15px;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
}

.result-details-eighth p {
    margin: 10px 0;
    line-height: 1.6;
    font-size: 15px;
    color: #333333;
    text-align: left;
}

.result-details-eighth p:first-child {
    margin-top: 0;
}

.result-details-eighth p:last-child {
    margin-bottom: 0;
}

@media only screen and (max-width: 767px) {
    .wheel-eighth {
        width: 90vw;
        height: 90vw;
        max-width: 350px;
        max-height: 350px;
    }

    .wheel-result-eighth {
        width: 90%;
        padding: 20px;
    }

    .wheel-result-eighth h3 {
        font-size: 20px;
    }

    .result-details-eighth p {
        font-size: 14px;
    }
}