.pose-wheel-container {
    max-width: 620px;
    margin: 30px auto;
    text-align: center;
    font-family: Arial, sans-serif;
}

.category-buttons {
    margin-bottom: 25px;
}

.category-btn {
    padding: 10px 18px;
    margin: 0 6px;
    font-size: 16px;
    cursor: pointer;
    border: 2px solid #ccc;
    background: white;
    border-radius: 8px;
}

.category-btn.active {
    background: #333;
    color: white;
    border-color: #333;
}

/* Wheel */
.wheel-wrapper {
    position: relative;
    width: 320px;
    height: 320px;
    margin: 0 auto 20px;
}

#pose-wheel {
    width: 100%;
    height: 100%;
    border: 18px solid #222;
    border-radius: 50%;
    background: conic-gradient(#ff4757, #3742fa, #2ed573, #ffa502, #ff6b9d, #1e90ff);
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}

.wheel-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110px;
    height: 110px;
    background: #fff;
    border: 10px solid #222;
    border-radius: 50%;
    
    #pose-image-container img {
    max-height: 420px;
    width: auto;
    border: 4px solid #fff;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}

#pose-result-text {
    font-size: 28px;
    color: #fff;
}
