/* =============================================================================
   Telegram Forwarder SaaS — State-of-the-Art CSS Stylesheet
   ============================================================================= */

:root {
    /* Color Tokens */
    --bg-primary: #060913;
    --bg-secondary: #0b0f19;
    --bg-card: rgba(18, 24, 41, 0.4);
    --border-glass: rgba(255, 255, 255, 0.06);
    
    --accent-blue: #2563eb;
    --accent-blue-gradient: linear-gradient(135deg, #3b82f6, #1d4ed8);
    --accent-purple: #7c3aed;
    --accent-purple-gradient: linear-gradient(135deg, #a78bfa, #6d28d9);
    --accent-green: #10b981;
    --accent-green-gradient: linear-gradient(135deg, #34d399, #047857);
    --accent-orange: #f59e0b;
    --accent-orange-gradient: linear-gradient(135deg, #fbbf24, #b45309);
    
    --text-primary: #f3f4f6;
    --text-secondary: #9ca3af;
    --text-muted: #4b5563;
    
    --warning-color: #ef4444;
    
    /* Font family */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --shadow-premium: 0 8px 32px 0 rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 15px rgba(59, 130, 246, 0.2);
}

/* ── Reset & Baseline ───────────────────────────────────────────────────────── */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    overflow: hidden;
    height: 100vh;
}

/* ── SaaS AUTHENTICATION OVERLAY ────────────────────────────────────────────── */
.auth-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: radial-gradient(circle at center, #111827 0%, #030712 100%);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

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

.auth-box {
    width: 420px;
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-premium);
    backdrop-filter: blur(20px);
}

.auth-header {
    text-align: center;
    margin-bottom: 30px;
}

.auth-header .logo-icon {
    font-size: 36px;
    background: var(--accent-blue-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 12px;
    animation: spin 10s linear infinite;
}

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

.auth-header h2 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 6px;
}

.auth-header p {
    font-size: 14px;
    color: var(--text-secondary);
}

.auth-form {
    display: none;
}

.auth-form.active {
    display: block;
}

.auth-step {
    display: none;
}

.auth-step.active {
    display: block;
}

.form-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 13px;
}

.checkbox-container {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    cursor: pointer;
}

.auth-link {
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 500;
}

.auth-link:hover {
    text-decoration: underline;
}

.auth-footer-text {
    text-align: center;
    font-size: 13px;
    color: var(--text-secondary);
    margin-top: 24px;
}

/* ── App Workspace structure ────────────────────────────────────────────────── */
.app-container {
    display: flex;
    height: 100vh;
    width: 100vw;
}

/* Sidebar */
.sidebar {
    width: 270px;
    background: var(--bg-secondary);
    border-right: 1px solid var(--border-glass);
    display: flex;
    flex-direction: column;
    padding: 24px;
}

.sidebar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 36px;
    padding-left: 8px;
}

.brand-text {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.sidebar-menu {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}

.menu-item {
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.menu-item:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.03);
}

.menu-item.active {
    color: var(--text-primary);
    background: var(--accent-blue-gradient);
    box-shadow: var(--shadow-glow);
}

.sidebar-footer {
    padding-top: 20px;
    border-top: 1px solid var(--border-glass);
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-secondary);
}

.status-indicator .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.status-indicator.online .dot {
    background-color: var(--accent-green);
    box-shadow: 0 0 8px var(--accent-green);
}

/* ── Main Layout Workspace ──────────────────────────────────────────────────── */
.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    background: radial-gradient(circle at 50% 0%, #0d1222 0%, var(--bg-primary) 70%);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    border-bottom: 1px solid var(--border-glass);
    backdrop-filter: blur(16px);
}

.navbar-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.navbar h1 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
}

/* Profile dropdown styling */
.profile-dropdown-container {
    position: relative;
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 14px;
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.user-profile:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.avatar {
    font-size: 18px;
    color: var(--text-secondary);
}

.profile-name {
    font-size: 13px;
    font-weight: 500;
}

.caret {
    font-size: 11px;
    color: var(--text-secondary);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 220px;
    background: #0f172a;
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    box-shadow: var(--shadow-premium);
    display: none;
    flex-direction: column;
    padding: 8px 0;
    z-index: 1000;
}

.dropdown-menu.active {
    display: flex;
}

.dropdown-header {
    padding: 12px 16px;
}

.dd-name {
    font-weight: 600;
    font-size: 14px;
    color: var(--text-primary);
}

.dd-email {
    font-size: 12px;
    color: var(--text-secondary);
}

.dropdown-divider {
    border: 0;
    border-top: 1px solid var(--border-glass);
    margin: 4px 0;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    font-size: 13px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-primary);
}

.dropdown-item.danger {
    color: var(--warning-color);
}

.dropdown-item.danger:hover {
    background: rgba(239, 68, 68, 0.08);
}

/* ── Content View Transitions ───────────────────────────────────────────────── */
.content-view {
    display: none;
    padding: 40px;
    animation: slideUp 0.4s ease-out;
}

.content-view.active {
    display: block;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ── Welcome Banner ── */
.welcome-banner {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(124, 58, 237, 0.05) 100%);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 30px;
}

.welcome-text h2 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 6px;
}

.welcome-text p {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Metrics Dashboard grid */
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.metric-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    backdrop-filter: blur(16px);
    box-shadow: var(--shadow-premium);
}

.metric-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.metric-icon.green { background: var(--accent-green-gradient); }
.metric-icon.blue { background: var(--accent-blue-gradient); }
.metric-icon.purple { background: var(--accent-purple-gradient); }
.metric-icon.orange { background: var(--accent-orange-gradient); }

.metric-value {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
}

.metric-label {
    font-size: 12px;
    color: var(--text-secondary);
}

/* Panels */
.panel {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 24px;
    backdrop-filter: blur(16px);
    box-shadow: var(--shadow-premium);
    margin-bottom: 24px;
}

.panel h2 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
}

.dashboard-details {
    display: grid;
    grid-template-columns: 2.5fr 1fr;
    gap: 24px;
}

/* ── Split Panel Forms ── */
.panel-split {
    display: grid;
    grid-template-columns: 2fr 1.2fr;
    gap: 24px;
}

.panel-split-wide {
    display: grid;
    grid-template-columns: 2.2fr 1fr;
    gap: 24px;
}

/* Accounts Grid cards */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 16px;
}

.tg-account-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-title {
    font-weight: 600;
    font-size: 14px;
}

.card-phone {
    font-size: 12px;
    color: var(--text-secondary);
}

.card-actions {
    display: flex;
    gap: 8px;
    margin-top: 8px;
}

/* ── 4-STEP WIZARD STYLING ── */
.wizard-progress {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    padding: 0 10px;
}

.wstep {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.wstep.active {
    background: var(--accent-blue-gradient);
    border-color: var(--accent-blue);
    color: var(--text-primary);
    box-shadow: var(--shadow-glow);
}

.wstep.completed {
    background: var(--accent-green-gradient);
    border-color: var(--accent-green);
    color: var(--text-primary);
}

.wline {
    flex: 1;
    height: 2px;
    background: rgba(255, 255, 255, 0.05);
    margin: 0 12px;
}

.wline.active {
    background: var(--accent-blue);
}

.wizard-panel-step {
    display: none;
    animation: fadeIn 0.3s ease;
}

.wizard-panel-step.active {
    display: block;
}

.wstep-desc {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.5;
}

.wizard-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 24px;
}

/* ── Activity Search controls ── */
.log-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.form-control-small {
    padding: 8px 12px;
    font-size: 12px;
    width: 180px;
}

/* Data Tables */
.table-container {
    overflow-x: auto;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
    text-align: left;
}

.data-table th {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border-glass);
    color: var(--text-secondary);
    font-weight: 500;
}

.data-table td {
    padding: 14px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

/* Badge classes */
.badge {
    font-size: 11px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 4px;
}

.badge-live {
    background: rgba(124, 58, 237, 0.15);
    color: #a78bfa;
}

.badge-history {
    background: rgba(245, 158, 11, 0.15);
    color: #fcd34d;
}

.badge-green {
    background: rgba(16, 185, 129, 0.15);
    color: var(--accent-green);
}

.badge-red {
    background: rgba(239, 68, 68, 0.15);
    color: var(--warning-color);
}

/* Form Controls */
.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 12px;
    color: var(--text-secondary);
    margin-bottom: 6px;
    font-weight: 500;
}

.form-control {
    width: 100%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    border-radius: 8px;
    padding: 10px 14px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 13px;
    outline: none;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.15);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
    font-size: 13px;
    padding: 10px 18px;
    border-radius: 8px;
    cursor: pointer;
    border: none;
    outline: none;
    transition: all 0.2s ease;
}

.btn-primary {
    background: var(--accent-blue-gradient);
    color: var(--text-primary);
}

.btn-primary:hover {
    box-shadow: 0 0 16px rgba(59, 130, 246, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-primary);
    border: 1px solid var(--border-glass);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.06);
}

.btn-danger {
    background: rgba(239, 68, 68, 0.15);
    color: var(--warning-color);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.btn-danger:hover {
    background: rgba(239, 68, 68, 0.25);
}

.btn-full {
    width: 100%;
}

.btn-small {
    padding: 6px 12px;
    font-size: 11px;
}

/* Empty States */
.empty-state {
    text-align: center;
    padding: 30px;
    color: var(--text-muted);
}

.empty-state i {
    font-size: 32px;
    margin-bottom: 12px;
}

/* ── ADMIN CIRCULAR PROGRESS LOADER GRAPH ── */
.server-health-grid {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    margin-top: 10px;
}

.health-card {
    text-align: center;
}

.health-card h3 {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.circular-progress {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: conic-gradient(var(--accent-blue) 0%, rgba(255, 255, 255, 0.05) 0%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.circular-progress::before {
    content: "";
    position: absolute;
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background-color: var(--bg-secondary);
}

.progress-val {
    position: relative;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
}

/* System Console Log Box */
.log-panel {
    display: flex;
    flex-direction: column;
    height: calc(100vh - 160px);
}

.console-wrapper {
    flex: 1;
    background: #02040a;
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    padding: 20px;
    overflow: hidden;
    display: flex;
}

.console-box {
    flex: 1;
    overflow-y: auto;
    font-family: 'Courier New', Courier, monospace;
    font-size: 12px;
    color: #10b981;
    line-height: 1.6;
    white-space: pre-wrap;
    word-break: break-all;
}

/* ── Mobile & Tablet Responsiveness ─────────────────────────────────────────── */

/* Default Sidebar toggle/close controls hidden on desktop */
.sidebar-toggle-btn, .sidebar-close-btn {
    display: none;
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-primary);
    cursor: pointer;
    font-size: 20px;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.sidebar-toggle-btn:hover, .sidebar-close-btn:hover {
    color: var(--accent-blue);
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(3, 7, 18, 0.6);
    backdrop-filter: blur(8px);
    z-index: 998;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sidebar-overlay.active {
    display: block;
    opacity: 1;
}

@media (max-width: 992px) {
    /* Adjust grid systems for tablet-size screens */
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .dashboard-main-grid {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 768px) {
    body {
        overflow-y: auto;
        height: auto;
    }

    .app-container {
        flex-direction: column;
        height: auto;
        min-height: 100vh;
    }

    /* Sidebar Drawer */
    .sidebar {
        position: fixed;
        top: 0;
        left: -280px;
        width: 280px;
        height: 100vh;
        z-index: 999;
        transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 10px 0 30px rgba(0, 0, 0, 0.5);
    }

    .sidebar.active {
        left: 0;
    }

    /* Sidebar close button */
    .sidebar-close-btn {
        display: flex;
        position: absolute;
        top: 20px;
        right: 20px;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.05);
    }

    /* Navbar adjust */
    .navbar {
        padding: 16px 20px;
        gap: 12px;
    }

    .sidebar-toggle-btn {
        display: flex;
        width: 40px;
        height: 40px;
        border-radius: 10px;
        background: var(--bg-card);
        border: 1px solid var(--border-glass);
    }

    .navbar h1 {
        font-size: 18px;
        flex: 1;
    }

    /* Content Area paddings */
    .main-content {
        padding: 0;
        min-height: calc(100vh - 72px);
    }

    .content-view {
        padding: 20px 16px;
    }

    /* Grids scaling down to single column on mobile */
    .metrics-grid,
    .dashboard-details,
    .panel-split,
    .panel-split-wide {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    .welcome-banner {
        padding: 20px;
        margin-bottom: 20px;
        text-align: center;
    }

    .welcome-banner h2 {
        font-size: 20px;
    }

    /* Form rows and control inputs */
    .form-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .btn-full-mobile {
        width: 100% !important;
    }

    /* Table horizontal scroll wrappers */
    .table-container, .table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin-bottom: 15px;
        border: 1px solid var(--border-glass);
        border-radius: 12px;
    }

    /* Convert table to card list on mobile screens */
    .data-table, .data-table thead, .data-table tbody, .data-table th, .data-table td, .data-table tr {
        display: block !important;
    }
    
    .data-table thead {
        display: none !important; /* Hide headers */
    }
    
    .data-table tr {
        margin-bottom: 16px !important;
        background: rgba(255, 255, 255, 0.01) !important;
        border: 1px solid var(--border-glass) !important;
        border-radius: 12px !important;
        padding: 16px !important;
    }
    
    .data-table td {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 10px 0 !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
        font-size: 13px !important;
        text-align: right !important;
        background: none !important;
    }
    
    .data-table td:last-child {
        border-bottom: none !important;
        padding-top: 14px !important;
        justify-content: flex-end !important;
        gap: 12px !important;
    }
    
    /* Generate dynamic label titles before values */
    .data-table td::before {
        content: attr(data-label) !important;
        font-weight: 600 !important;
        color: var(--text-muted) !important;
        text-align: left !important;
        padding-right: 12px !important;
        float: left !important;
    }

    /* Auth Overlay */
    .auth-box {
        width: 90%;
        padding: 24px;
        margin: 20px;
    }

    /* Logs view wrapping */
    .log-panel {
        height: calc(100vh - 200px);
    }

    .server-health-grid {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }
}

/* ── DIAGNOSTICS & ACTIVE TRANSFERS PROGRESS BAR STYLING ── */
.diag-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.diag-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.diag-label {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 500;
}

.diag-progress-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 3px;
    overflow: hidden;
    position: relative;
}

.diag-progress {
    height: 100%;
    border-radius: 3px;
    transition: width 0.4s ease;
}

.diag-value {
    font-size: 11px;
    color: var(--text-muted);
    text-align: right;
}

.progress-list-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.transfer-progress-box {
    margin-top: 8px;
    font-size: 11px;
    background: rgba(255, 255, 255, 0.02);
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Forwarder Scope Tabs Selector Styling */
.scope-tab-bar {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.02);
    padding: 6px;
    border-radius: 12px;
    border: 1px solid var(--border-glass);
    width: fit-content;
}

.scope-tab-btn {
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-secondary);
    padding: 10px 20px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.scope-tab-btn:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.04);
}

.scope-tab-btn.active {
    color: var(--text-primary);
    background: var(--accent-blue-gradient);
    box-shadow: var(--shadow-glow);
}

