body {
    background-image:
        linear-gradient(145deg, rgba(2, 9, 14, 0.88), rgba(8, 26, 36, 0.55)),
        url("../../98.webp");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: gold;
    text-align: center;
    margin: 0;
    padding: 20px;
    font-family: Arial, sans-serif;
    min-height: 100vh;
}

.container {
    background: linear-gradient(135deg, #e94560 0%, #f39c12 100%);
    border: 5px solid gold;
    border-radius: 20px;
    padding: 30px;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: 0 0 50px rgba(255, 215, 0, 0.8), 0 20px 60px rgba(0, 0, 0, 0.8);
}

h1 {
    color: #fff;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7), 0 0 20px rgba(255, 215, 0, 0.3);
    margin-top: 0;
    background: rgba(0, 0, 0, 0.3);
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.machine {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 30px 0;
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: 15px;
    box-shadow: inset 0 4px 8px rgba(0, 0, 0, 0.5), 0 4px 15px rgba(0, 0, 0, 0.3);
}

.reel {
    width: 80px;
    height: 80px;
    font-size: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fff700 0%, #ffed4e 100%);
    border: 3px solid #333;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.5), inset -2px -2px 4px rgba(0, 0, 0, 0.2);
}

#play {
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(0, 157, 204, 0.6), 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
}

#play:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 157, 204, 0.8), 0 4px 8px rgba(0, 0, 0, 0.3);
}

#play:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.bet {
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.bet-buttons {
    display: flex;
    gap: 10px;
}

.bet-btn {
    background: linear-gradient(135deg, #ffd166 0%, #ffa62b 100%);
    color: #2b2b2b;
    border: none;
    padding: 8px 16px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.15s, box-shadow 0.15s;
}

.bet-btn:hover {
    transform: translateY(-2px);
}

.bet-btn.active {
    background: linear-gradient(135deg, #ffd54a 0%, #ffb300 100%);
    box-shadow: 0 8px 25px rgba(255, 165, 0, 0.6);
}

.info {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 100%);
    padding: 20px;
    border-radius: 15px;
    margin-top: 20px;
    color: white;
    border: 2px solid rgba(255, 215, 0, 0.3);
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.4), 0 4px 15px rgba(0, 0, 0, 0.3);
}

.info p {
    margin: 10px 0;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

#message {
    font-size: 20px;
    color: #ffed4e;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    min-height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}