.slots-game-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #f1c40f;
    background: #1a0b0b;
    font-family: 'Outfit', sans-serif;
    overflow: hidden;
    transform-origin: center center;
}

.slots-header {
    margin-bottom: 1rem;
    text-align: center;
    z-index: 10;
}

.slots-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    /* Larger header */
    color: #f1c40f;
    text-shadow: 0 0 10px rgba(241, 196, 15, 0.8), 2px 2px 0 #c0392b;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.machine-frame {
    width: 1500px;
    /* Increased from 1000px */
    height: 900px;
    /* Increased from 600px */
    background-image: url('../../assets/dragon_bg.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 60px;
}

.reels-container {
    display: flex;
    flex-direction: row;
    gap: 25px;
    /* Larger gap */
    padding: 30px;
    width: 1050px;
    /* Increased to fit frame */
    height: 600px;
    /* Increased height */
    position: relative;
    z-index: 5;
}

.reel {
    flex: 1;
    height: 100%;
    background: rgba(245, 230, 200, 0.9);
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    font-size: 5rem;
    /* Much larger symbols */
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 0 15px rgba(139, 69, 19, 0.3);
    border-left: 2px solid rgba(139, 69, 19, 0.2);
    border-right: 2px solid rgba(139, 69, 19, 0.2);
}

.symbol {
    height: 33.33%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    font-family: 'Playfair Display', serif;
    font-weight: bold;
    color: #2c3e50;
    text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.5);
}

.reel.spinning .symbol {
    animation: blur-spin 0.1s infinite linear;
    filter: blur(8px);
    /* More blur for larger size */
}

@keyframes blur-spin {
    0% {
        transform: translateY(-30px);
        opacity: 0.7;
    }

    100% {
        transform: translateY(30px);
        opacity: 0.7;
    }
}

/* Controls Bar */
.slots-controls {
    margin-top: -30px;
    width: 100%;
    max-width: 1500px;
    /* Match frame width */
    background: linear-gradient(to bottom, #4a0e0e, #2c0505);
    border-top: 3px solid #f1c40f;
    padding: 25px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 0 0 40px 40px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.9);
    z-index: 10;
}

.bet-display {
    font-size: 2rem;
    /* Larger text */
    color: #f1c40f;
    font-weight: bold;
    text-transform: uppercase;
}

.spin-btn {
    width: 100px;
    /* Larger button */
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #f1c40f, #f39c12);
    border: 5px solid #d35400;
    color: #5e3004;
    font-weight: 900;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5), inset 0 0 15px rgba(255, 255, 255, 0.5);
    transition: transform 0.1s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spin-btn:active {
    transform: scale(0.95);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.message-display {
    font-size: 1.5rem;
    color: #fff;
    text-shadow: 0 0 8px #f1c40f;
    min-width: 300px;
    text-align: center;
}

.debug-panel {
    background: rgba(0, 0, 0, 0.9) !important;
    border: 1px solid #f1c40f;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
    transform: scale(1.2);
    /* Scale up debug panel too */
    transform-origin: right center;
}

.debug-panel button {
    background: #333;
    color: #fff;
    border: 1px solid #555;
    padding: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s;
}

.debug-panel button:hover {
    background: #555;
}