.nickname-wheel-container {
    text-align: center;
    font-family: Arial, sans-serif;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    padding: 20px;
    max-width: 90%;
    margin: auto;
}

.language-select {
    margin-bottom: 10px;
    font-size: 16px;
}

.wheel-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px auto;
    max-width: 100%;
}

.wheel {
    width: 100%;
    max-width: 250px;
    height: auto;
    border-radius: 50%;
    border: 5px solid #1155cc;
    background: conic-gradient(
        #ff4d4d 0deg 45deg,
        #ffcc00 45deg 90deg,
        #4dff4d 90deg 135deg,
        #33ccff 135deg 180deg,
        #ff66ff 180deg 225deg,
        #ff9933 225deg 270deg,
        #99ff33 270deg 315deg,
        #3399ff 315deg 360deg
    );
    transition: transform 2s ease-out;
}

.arrow {
    position: absolute;
    top: -10px;
    font-size: 30px;
    color: red;
}

.spin-button {
    display: block;
    margin: 20px auto;
    padding: 10px 20px;
    font-size: 18px;
    background-color: #1155cc;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s;
}

.spin-button:hover {
    background-color: #0d47a1;
}

#result-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    font-size: 22px;
    font-weight: bold;
    color: #d63384;
    text-align: center;
}

.nickname-result {
    background: #ffeb3b;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
