:root {
    --primary-color: #ff006e;
    --secondary-color: #00f5ff;
    --background-color: #0a0a0a;
    --text-color: #e0e0e0;
    --panel-color: #1a0033;
    --accent-color: #8338ec;
    --success-color: #39ff14;
    --highlight-color: #ffffff;
    --shot-color: #ff006e;
    --shot-background: rgba(26, 0, 51, 0.8);
    --neon-pink: #ff10f0;
    --neon-cyan: #00ffff;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Courier New', 'Roboto', monospace;
    background: 
        linear-gradient(rgba(0, 255, 255, 0.03) 50%, transparent 50%),
        linear-gradient(90deg, rgba(255, 0, 110, 0.03) 50%, transparent 50%),
        radial-gradient(circle, rgba(26, 0, 51, 0.8) 0%, #0a0a0a 100%);
    background-size: 4px 4px, 4px 4px, 100% 100%;
    color: var(--text-color);
    line-height: 1.6;
    padding: 20px;
    position: relative;
    animation: flicker 0.15s infinite linear alternate;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(0, 255, 255, 0.1) 2px,
            rgba(0, 255, 255, 0.1) 4px
        );
    pointer-events: none;
    z-index: 1000;
}

#app {
    max-width: 1200px;
    margin: 0 auto;
}

.container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

header {
    text-align: center;
    margin-bottom: 2rem;
}

.title {
    font-size: 3rem;
    background: linear-gradient(45deg, var(--neon-pink), var(--neon-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(255, 16, 240, 0.5);
    animation: neonGlow 2s ease-in-out infinite alternate;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--neon-cyan);
    opacity: 0.9;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.step-title {
    color: var(--neon-cyan);
    margin-bottom: 20px;
    border-bottom: 3px solid var(--primary-color);
    padding-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.6);
}

.label {
    font-weight: bold;
    color: var(--highlight-color);
}