.aurora-board {
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    background: linear-gradient(135deg, #1a3a2e 0%, #2d5f4c 100%);
    position: relative;
    overflow: hidden;
}

.aurora-board::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 50%, rgba(126, 200, 80, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(77, 184, 232, 0.2) 0%, transparent 50%);
    animation: auroraGlow 8s ease-in-out infinite;
}

@keyframes auroraGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.slot-machine {
    display: flex;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.slot-reel {
    width: 120px;
    height: 120px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.slot-reel.spinning {
    animation: spinReel 0.5s linear infinite;
}

@keyframes spinReel {
    0% { transform: translateY(0); }
    100% { transform: translateY(-100%); }
}

.win-message {
    color: #ffd700;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    min-height: 2rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 1;
}

.win-message.show {
    animation: winPulse 0.5s ease-in-out;
}

@keyframes winPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.bet-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
}

.bet-controls span {
    font-weight: 600;
    color: var(--pine-dark);
}

@media (max-width: 768px) {
    .slot-machine {
        padding: 1rem;
        gap: 0.5rem;
    }

    .slot-reel {
        width: 90px;
        height: 90px;
        font-size: 3rem;
    }

    .win-message {
        font-size: 1.2rem;
    }

    .game-controls {
        flex-direction: column;
    }

    .bet-controls {
        width: 100%;
        justify-content: space-between;
    }
}