/* ============= НЕОНОВАЯ ПАЛИТРА ============= */

:root {
    --neon: #a855f7;
    /* default purple */
}

/* Темы */
.theme-purple {
    --neon: #a855f7;
}

.theme-blue {
    --neon: #3b82f6;
}

.theme-pink {
    --neon: #ec4899;
}

.theme-green {
    --neon: #22c55e;
}

.theme-orange {
    --neon: #f59e0b;
}

/* Кнопки переключения тем */
.neon-switcher {
    display: flex;
    gap: 6px;
    align-items: center;
}

.neon-switcher .neon-dot {
    width: 18px;
    height: 18px;
    border-radius: 999px;
    border: 1px solid #fff3;
    cursor: pointer;
    padding: 0;
    outline: none;
}

.neon-switcher .purple {
    background: #a855f7;
}

.neon-switcher .blue {
    background: #3b82f6;
}

.neon-switcher .pink {
    background: #ec4899;
}

.neon-switcher .green {
    background: #22c55e;
}

.neon-switcher .orange {
    background: #f59e0b;
}

/* Общая неоновая кнопка */
.neon-btn {
    width: 100%;
    padding: 16px 22px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 14px;
    border: none;
    background: var(--neon);
    color: #000;
    cursor: pointer;
    box-shadow: 0 0 25px var(--neon);
    transition: 0.2s;
}

.neon-btn:hover {
    filter: brightness(1.2);
}

.country-input {
    width: 100%;
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid var(--neon);
    background: rgba(0, 0, 0, 0.85) !important;
    color: #fff !important;
    font-size: 15px;
    outline: none;
}

.country-input::placeholder {
    color: #aaa !important;
}