a {
    color: #fff;
    text-decoration: none;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0;
    background: #1a1a1a;
}

.Title_Img {
    border-bottom: 1px solid #5d6488;
}
.Title_Img img {
    width: 100%;
    display: block;
}

.Meal_List img {
    width: 100%;
    display: block;
}

.Roulette_Menu {
    display: flex;
    width: 100%;
    border-bottom: 1px solid #3b4263;
    color: #fff;
    margin-bottom: 40px;
}
.Menu_block {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #5d6488;
    border-right: 1px solid #2c3353;
    padding: 15px 0;
}
.Menu_block:last-child {
    border-right: none;
    text-align: center;
    padding: 0;
}

iframe {
    width: 100%;
    height: 500px;
    border: none;
}

.wheel-wrap {
    position: relative;
    justify-content: center;
    display: flex;
    width: 320px;
    height: 320px;
}

.pointer {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 25px solid #fff;
    z-index: 10;
}

.wheel {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    position: relative;
    justify-content: center;
    display: flex;
    border: 6px solid #fff;
    transition: transform 4s cubic-bezier(0.17, 0.67, 0.12, 0.99);
}

.wheel-label {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    text-align: center;
    transform-origin: 0 0;
}

.label-text {
    display: block;
    color: #fff;
    font-weight: bold;
    font-size: 13px;
    line-height: 1.3;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.6);
    word-break: keep-all;
    /* 바퀴 회전(4s cubic-bezier)과 동일하게 맞춰야 카운터 회전이 어색하지 않게 동기화됨 */
    transition: transform 4s cubic-bezier(0.17, 0.67, 0.12, 0.99);
}

.spin-btn {
    margin-top: 5px;
    padding: 10px 40px;
    font-size: 1rem;
    border: none;
    border-radius: 4px;
    background: #da0808;
    border: 1px solid #da0808;  
    color: #fff;
    cursor: pointer;
}

.spin-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.result {
    margin: 10px 0px 0px 0px;
    font-size: 1rem;
    color: #fff;
    font-weight: bold;
    min-height: 1.3em;
}