/* Neon Dash Styling */
#neon-dash-container {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(10, 10, 10, 0.95);
    border-radius: 20px;
    border: 2px solid var(--neon-cyan);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
    margin: 30px auto;
    max-width: 900px;
    animation: neon-pulse 2s infinite ease-in-out;
}

@keyframes neon-pulse {
    0% {
        box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
    }

    50% {
        box-shadow: 0 0 40px rgba(0, 255, 255, 0.4);
    }

    100% {
        box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
    }
}

#dash-canvas {
    background: #050505;
    border: 3px solid #1a1a1a;
    border-radius: 8px;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 1);
    cursor: crosshair;
    image-rendering: pixelated;
}

.dash-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.dash-stats {
    display: flex;
    gap: 30px;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--neon-cyan);
    text-shadow: 0 0 10px var(--neon-cyan);
}

.dash-controls {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    align-items: center;
}

#dash-start-btn {
    background: linear-gradient(135deg, var(--neon-cyan), #00cccc);
    color: #000;
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 15px var(--neon-cyan);
}

#dash-start-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px var(--neon-cyan);
}

.dash-bet-input {
    background: #111;
    border: 1px solid #444;
    color: #fff;
    padding: 8px 15px;
    border-radius: 5px;
    width: 100px;
    font-family: 'Inter', sans-serif;
}

.dash-instructions {
    margin-top: 15px;
    color: #888;
    font-size: 0.9rem;
}