.slot-game {
    text-align: center;
    background-color: #0f172a;
    margin: auto;
    max-width: 800px;
}

.slot-game h2 {
    font-size: 32px;
    color: #10b981;
    margin-bottom: 20px;
    margin-top: 0;
}

.slot-reels {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

.reel {
    width: 70px;
    height: 70px;
    border: 3px solid #10b981;
    border-radius: 8px;
    background-color: #1e293b;
    overflow: hidden;
    text-align: center;
    font-size: 28px;
    position: relative;
    line-height: 70px;
    cursor: default;
    color: #ffffff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.reel:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.4);
}

.bet-amount {
    width: 100px;
    padding: 8px;
    font-size: 16px;
    border: 2px solid #10b981;
    border-radius: 5px;
    background-color: #1e293b;
    color: #ffffff;
    text-align: center;
    margin: 10px 5px;
}

.bet-amount:focus {
    outline: none;
    border-color: #38bdf8;
}

#slot-button {
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    color: #ffffff;
    background-color: #10b981;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

#slot-button:hover {
    background-color: #38bdf8;
    transform: scale(1.05);
}

#slot-button:active {
    transform: scale(0.95);
}

#win {
    font-size: 20px;
    font-weight: bold;
    color: #38bdf8;
    margin-top: 15px;
}

.slot-game ul {
    text-align: left;
    margin: 10px auto;
    padding: 0 20px;
    list-style: disc;
    color: #94a3b8;
}

.slot-game ul li {
    margin: 5px 0;
}

.slot-game p {
    color: #94a3b8;
    font-size: 14px;
    margin-bottom: 10px;
}

.symbols {
    position: absolute;
    top: 0;
    width: 100%;
    animation: spin 1.5s linear infinite;
}

@keyframes spin {
    0% { top: -300px; }
    100% { top: 0; }
}

@media (max-width: 500px) {
    html.sidebar-expanded #slot-section {
        display: none;
    }
}

@media (max-width: 340px) {
    html.sidebar-collapsed #slot-section {
        display: none;
    }
}