/* style.css */
body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: #1a1a2e;
    color: #e0e0e0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
}

#game-container {
    border: 4px solid #f0c419;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(240, 196, 25, 0.5);
    background: linear-gradient(145deg, #16213e, #0f3460);
    padding: 10px;
}

#ui-container {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 15px 30px;
    border-radius: 15px;
    border: 2px solid #f0c419;
}

.info-box {
    text-align: center;
    min-width: 120px; /* Ensures boxes don't resize too much */
}

.info-box span {
    font-size: 14px;
    color: #f0c419;
    font-weight: bold;
    letter-spacing: 1px;
}

.info-box p {
    font-size: 24px;
    font-weight: bold;
    margin: 5px 0 0 0;
    color: #fff;
}

#spin-button {
    padding: 15px 40px;
    font-size: 24px;
    font-weight: bold;
    color: #1a1a2e;
    background: linear-gradient(145deg, #f0c419, #ffde7a);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: all 0.2s ease-in-out;
}

#spin-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(240, 196, 25, 0.4);
}

#spin-button:active {
    transform: translateY(1px);
    box-shadow: 0 3px 10px rgba(0,0,0,0.3);
}

#spin-button:disabled {
    background: #555;
    color: #888;
    cursor: not-allowed;
    transform: translateY(0);
    box-shadow: none;
}
