/* Style Design System for Premium URL Shortener */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;600;700;800&display=swap');

:root {
    --bg-dark: #07050f;
    --bg-card: rgba(18, 14, 36, 0.6);
    --border-color: rgba(255, 255, 255, 0.08);
    --border-focus: rgba(0, 240, 255, 0.4);
    
    /* Neon Colors */
    --neon-cyan: #00f0ff;
    --neon-pink: #ff007f;
    --neon-purple: #7000ff;
    --neon-purple-glow: rgba(112, 0, 255, 0.4);
    --neon-cyan-glow: rgba(0, 240, 255, 0.4);
    --neon-pink-glow: rgba(255, 0, 127, 0.4);
    
    /* Status Colors */
    --success: #00e676;
    --warning: #ffab00;
    --error: #ff1744;
    --text-main: #f5f5fa;
    --text-muted: #9fa0b5;
    
    /* Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(112, 0, 255, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(0, 240, 255, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(255, 0, 127, 0.05) 0%, transparent 50%);
    background-attachment: fixed;
    color: var(--text-main);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Scrollbar Styles */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--neon-cyan);
    box-shadow: 0 0 10px var(--neon-cyan);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Header & Typography */
h1, h2, h3, h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

.header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.logo-glow {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: var(--neon-purple);
    filter: blur(100px);
    opacity: 0.5;
    z-index: -1;
    pointer-events: none;
}

.title {
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #fff 20%, var(--text-muted) 50%, var(--neon-cyan) 80%, var(--neon-pink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    margin-bottom: 10px;
    text-transform: uppercase;
    position: relative;
}

.title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 25%;
    width: 50%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--neon-cyan), var(--neon-pink), transparent);
}

.subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    font-weight: 300;
    max-width: 600px;
    margin: 15px auto 0 auto;
}

/* Status Pill Panel */
.db-status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(16px);
    padding: 12px 24px;
    border-radius: 16px;
    margin-bottom: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--text-muted);
    position: relative;
}

.status-dot::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: inherit;
    animation: pulse-dot 1.8s infinite;
}

.status-dot.local {
    background-color: var(--warning);
}
.status-dot.supabase {
    background-color: var(--success);
    box-shadow: 0 0 10px var(--success);
}

.status-text {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Custom Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 12px;
    border: 1px solid transparent;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-size: 0.95rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--neon-purple), var(--neon-pink));
    color: #fff;
    box-shadow: 0 4px 15px var(--neon-purple-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(112, 0, 255, 0.6), 0 0 15px var(--neon-pink-glow);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--border-color);
    color: var(--text-main);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-cyber {
    background: transparent;
    border-color: var(--neon-cyan);
    color: var(--neon-cyan);
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.2);
}

.btn-cyber:hover {
    background: var(--neon-cyan);
    color: var(--bg-dark);
    box-shadow: 0 0 20px var(--neon-cyan);
    transform: scale(1.03);
}

.btn-danger {
    background: rgba(255, 23, 68, 0.15);
    border-color: rgba(255, 23, 68, 0.3);
    color: #ff5252;
}

.btn-danger:hover {
    background: #ff1744;
    color: #fff;
    box-shadow: 0 0 15px rgba(255, 23, 68, 0.4);
}

/* Glassmorphism Cards */
.grid-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 30px;
    margin-bottom: 40px;
}

@media (max-width: 900px) {
    .grid-layout {
        grid-template-columns: 1fr;
    }
}

.card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(16px);
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-purple), var(--neon-pink));
    opacity: 0.8;
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
}

.card-title i {
    color: var(--neon-cyan);
}

/* Inputs & Form Controls */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
}

.input-container {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 15px;
    color: var(--text-muted);
    font-size: 1.1rem;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.form-input {
    width: 100%;
    padding: 14px 16px 14px 45px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    transition: var(--transition-smooth);
}

.form-input:focus {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--neon-cyan);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.2);
}

.form-input:focus + .input-icon {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px var(--neon-cyan);
}

.custom-url-group {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
    background: rgba(255, 255, 255, 0.03);
}

.custom-url-prefix {
    background: rgba(255, 255, 255, 0.05);
    padding: 14px 16px;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    border-right: 1px solid var(--border-color);
    user-select: none;
}

.custom-url-input {
    border: none;
    background: transparent;
    padding: 14px 16px;
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    width: 100%;
}

.custom-url-group:focus-within {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.2);
}

.alias-check-badge {
    position: absolute;
    right: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 6px;
    text-transform: uppercase;
    display: none;
}

.alias-check-badge.checking {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
}
.alias-check-badge.available {
    display: inline-block;
    background: rgba(0, 230, 118, 0.15);
    color: var(--success);
}
.alias-check-badge.taken {
    display: inline-block;
    background: rgba(255, 23, 68, 0.15);
    color: var(--error);
}

.form-tip {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 6px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.form-tip.error {
    color: #ff5252;
}

/* Result Area styles */
.result-card {
    display: none;
    animation: fade-slide-in 0.5s ease-out;
}

.result-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 15px;
}

.shortened-link-display {
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    border: 1px dashed var(--neon-cyan);
    padding: 15px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.link-text {
    color: var(--neon-cyan);
    font-weight: 600;
    font-size: 1.05rem;
    word-break: break-all;
    user-select: all;
}

.qr-code-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    width: 100%;
}

.qr-code-container {
    background: white;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    display: inline-block;
    transition: var(--transition-bounce);
}

.qr-code-container canvas, .qr-code-container img {
    display: block;
    max-width: 160px;
    max-height: 160px;
}

.qr-customizer {
    width: 100%;
}

.qr-color-options {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 8px;
}

.qr-color-option {
    height: 40px;
    border-radius: 8px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

.qr-color-option:hover {
    transform: scale(1.05);
}

.qr-color-option.active {
    border-color: #fff;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.color-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
}

/* History Dashboard */
.history-section {
    margin-top: 30px;
}

.history-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.history-search-container {
    max-width: 320px;
    width: 100%;
}

.history-search-input {
    width: 100%;
    padding: 10px 12px 10px 35px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: #fff;
    font-family: inherit;
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition-smooth);
}

.history-search-input:focus {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.15);
}

.history-table-wrapper {
    overflow-x: auto;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    background: rgba(0, 0, 0, 0.2);
}

.history-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 0.9rem;
}

.history-table th {
    background: rgba(18, 14, 36, 0.8);
    padding: 16px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border-color);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.75rem;
}

.history-table td {
    padding: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    vertical-align: middle;
}

.history-table tr:last-child td {
    border-bottom: none;
}

.history-table tr:hover td {
    background: rgba(255, 255, 255, 0.01);
}

.cell-alias {
    font-weight: 700;
    color: #fff;
}

.cell-url {
    max-width: 250px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--text-muted);
}

.cell-shortlink {
    color: var(--neon-cyan);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.cell-shortlink:hover {
    text-shadow: 0 0 8px var(--neon-cyan);
}

.cell-clicks {
    text-align: center;
}

.clicks-badge {
    background: rgba(112, 0, 255, 0.15);
    border: 1px solid rgba(112, 0, 255, 0.3);
    color: #bd93f9;
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 600;
    display: inline-block;
    min-width: 45px;
}

.history-actions {
    display: flex;
    gap: 8px;
}

.action-btn {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-size: 0.85rem;
}

.action-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.action-btn.btn-copy-link:hover {
    border-color: var(--neon-cyan);
    color: var(--neon-cyan);
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
}

.action-btn.btn-stats:hover {
    border-color: var(--success);
    color: var(--success);
    box-shadow: 0 0 10px rgba(0, 230, 118, 0.3);
}

.action-btn.btn-delete:hover {
    border-color: var(--error);
    color: #ff5252;
    box-shadow: 0 0 10px rgba(255, 23, 68, 0.3);
}

.empty-state {
    padding: 50px 20px;
    text-align: center;
    color: var(--text-muted);
}

.empty-state i {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
    color: rgba(255, 255, 255, 0.1);
}

/* Modals Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(5, 3, 10, 0.8);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    padding: 20px;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal {
    background: rgba(14, 11, 29, 0.95);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(112, 0, 255, 0.15);
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    max-height: 90vh;
    overflow-y: auto;
}

.modal-overlay.active .modal {
    transform: scale(1) translateY(0);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-color);
}

.modal-title {
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.close-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
}

.close-btn:hover {
    color: #fff;
    transform: rotate(90deg);
}

.modal-body {
    padding: 24px;
}

.modal-footer {
    padding: 16px 24px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

/* Analytics charts & stats styling */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

.stat-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    padding: 15px;
    border-radius: 12px;
    text-align: center;
}

.stat-val {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--neon-cyan);
    font-family: 'Outfit', sans-serif;
    margin-bottom: 5px;
}

.stat-lbl {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.charts-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.chart-card {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    padding: 20px;
    border-radius: 16px;
}

.chart-card-title {
    font-size: 0.95rem;
    margin-bottom: 15px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
}

.chart-card-title i {
    color: var(--neon-pink);
}

.chart-wrapper {
    position: relative;
    height: 200px;
    width: 100%;
}

/* SQL Script Box in Config */
.sql-script-box {
    background: #090714;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 10px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.8rem;
    color: #bd93f9;
    max-height: 120px;
    overflow-y: auto;
    white-space: pre-wrap;
    margin-top: 8px;
    position: relative;
}

.btn-copy-sql {
    position: absolute;
    top: 5px;
    right: 5px;
    padding: 4px 8px;
    font-size: 0.7rem;
}

/* Toast Notifications */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1100;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    background: rgba(18, 14, 36, 0.95);
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--neon-cyan);
    backdrop-filter: blur(12px);
    padding: 16px 20px;
    border-radius: 12px;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    min-width: 280px;
    max-width: 380px;
    display: flex;
    align-items: center;
    gap: 12px;
    transform: translateX(120%);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s;
    opacity: 0;
}

.toast.active {
    transform: translateX(0);
    opacity: 1;
}

.toast.toast-success {
    border-left-color: var(--success);
}
.toast.toast-error {
    border-left-color: var(--error);
}
.toast.toast-warning {
    border-left-color: var(--warning);
}

.toast-icon {
    font-size: 1.2rem;
}
.toast-success .toast-icon { color: var(--success); }
.toast-error .toast-icon { color: var(--error); }
.toast-warning .toast-icon { color: var(--warning); }

.toast-message {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Redirection Screen overlay */
.redirect-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #06040d;
    background-image: 
        radial-gradient(circle at 50% 30%, rgba(112, 0, 255, 0.25) 0%, transparent 60%),
        radial-gradient(circle at 50% 70%, rgba(0, 240, 255, 0.15) 0%, transparent 60%);
    z-index: 2000;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
    color: #fff;
}

.redirect-overlay.active {
    display: flex;
}

.redirect-card {
    max-width: 500px;
    width: 100%;
    background: rgba(18, 14, 36, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border-radius: 28px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(112, 0, 255, 0.2);
}

.redirect-loader {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.03);
    border-top: 3px solid var(--neon-cyan);
    border-right: 3px solid var(--neon-pink);
    margin: 0 auto 30px auto;
    animation: spin 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.redirect-countdown {
    font-size: 2.2rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.redirect-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #fff, var(--neon-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.redirect-url {
    color: var(--text-muted);
    font-size: 0.95rem;
    word-break: break-all;
    max-width: 100%;
    margin-bottom: 30px;
    padding: 10px 15px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    display: inline-block;
}

.redirect-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
}

/* Animations */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulse-dot {
    0% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(2.2); opacity: 0; }
    100% { transform: scale(1); opacity: 0; }
}

@keyframes fade-slide-in {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Utility footer class */
.footer {
    text-align: center;
    margin-top: 60px;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer a {
    color: var(--neon-cyan);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer a:hover {
    text-shadow: 0 0 5px var(--neon-cyan);
}
