/* ===========================
   المجرة الحضارية - CSS
   =========================== */

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

:root {
    --primary: #0a0e27;
    --secondary: #0d1b2a;
    --accent: #4fc3f7;
    --accent2: #7c4dff;
    --gold: #ffd700;
    --text: #e8f4fd;
    --text-muted: #8aa4bc;
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --card-bg: rgba(10, 20, 50, 0.85);
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    --glow: 0 0 20px rgba(79, 195, 247, 0.4);
}

html, body {
    width: 100%;
    height: 100%;
    overflow: hidden;
    font-family: 'Tajawal', sans-serif;
    background: #000010;
    color: var(--text);
    direction: rtl;
}

/* ============ HEADER ============ */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(180deg, rgba(5, 8, 20, 0.98) 0%, rgba(5, 8, 20, 0.7) 100%);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(79, 195, 247, 0.2);
    padding: 0 24px;
    height: 70px;
    display: flex;
    align-items: center;
}

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

.logo-area {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo-icon {
    position: relative;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon i {
    font-size: 28px;
    background: linear-gradient(135deg, #4fc3f7, #7c4dff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-pulse {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(79, 195, 247, 0.4);
    animation: pulse-ring 2s ease-in-out infinite;
}

@keyframes pulse-ring {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.15); opacity: 0.4; }
}

.logo-text h1 {
    font-size: 1.4rem;
    font-weight: 800;
    background: linear-gradient(90deg, #4fc3f7, #ffffff, #7c4dff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
}

.logo-text .subtitle {
    font-size: 0.72rem;
    color: var(--text-muted);
    display: block;
    margin-top: -2px;
}

.main-nav {
    display: flex;
    gap: 8px;
    align-items: center;
}

.nav-btn {
    background: transparent;
    border: 1px solid rgba(79, 195, 247, 0.2);
    color: var(--text-muted);
    padding: 8px 16px;
    border-radius: 20px;
    font-family: 'Tajawal', sans-serif;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.nav-btn:hover, .nav-btn.active {
    background: linear-gradient(135deg, rgba(79, 195, 247, 0.15), rgba(124, 77, 255, 0.15));
    border-color: var(--accent);
    color: var(--accent);
    box-shadow: 0 0 15px rgba(79, 195, 247, 0.2);
}

/* ============ VIEWS ============ */
.view {
    position: fixed;
    inset: 70px 0 0 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    overflow-y: auto;
}

.view.active {
    opacity: 1;
    pointer-events: all;
}

#galaxy-view {
    overflow: hidden;
}

/* ============ GALAXY CANVAS ============ */
#galaxy-canvas {
    width: 100%;
    height: 100%;
    display: block;
    cursor: grab;
}

#galaxy-canvas:active {
    cursor: grabbing;
}

/* ============ GALAXY UI ============ */
.galaxy-ui {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 100;
    min-width: 220px;
}

.search-box {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(10px);
}

.search-box i {
    color: var(--accent);
    font-size: 0.9rem;
}

.search-box input {
    background: none;
    border: none;
    color: var(--text);
    font-family: 'Tajawal', sans-serif;
    font-size: 0.9rem;
    width: 100%;
    outline: none;
}

.search-box input::placeholder {
    color: var(--text-muted);
}

.filter-panel {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 12px 14px;
    backdrop-filter: blur(10px);
}

.filter-title {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.filter-btn {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    color: var(--text-muted);
    padding: 4px 10px;
    border-radius: 20px;
    font-family: 'Tajawal', sans-serif;
    font-size: 0.78rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-btn:hover, .filter-btn.active {
    background: rgba(79, 195, 247, 0.2);
    border-color: var(--accent);
    color: var(--accent);
}

.galaxy-legend {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 12px 14px;
    backdrop-filter: blur(10px);
}

.legend-title {
    font-size: 0.8rem;
    color: var(--accent);
    margin-bottom: 10px;
    font-weight: 600;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 7px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.legend-star {
    background: radial-gradient(circle, #fff 0%, var(--accent) 60%, transparent 100%);
    border-radius: 50%;
    display: inline-block;
    min-width: 8px;
    min-height: 8px;
    box-shadow: 0 0 6px rgba(79, 195, 247, 0.8);
}

.controls-hint {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 8px 20px;
    font-size: 0.8rem;
    color: var(--text-muted);
    backdrop-filter: blur(10px);
    white-space: nowrap;
    z-index: 100;
}

/* ============ VIEW CONTAINER ============ */
.view-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 24px;
}

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

.view-header h2 {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(90deg, #4fc3f7, #ffffff, #7c4dff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.view-header p {
    color: var(--text-muted);
    font-size: 1rem;
}

.search-row {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
}

.search-row input,
.search-row select {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    color: var(--text);
    padding: 10px 16px;
    border-radius: 10px;
    font-family: 'Tajawal', sans-serif;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.3s ease;
    min-width: 200px;
}

.search-row input:focus,
.search-row select:focus {
    border-color: var(--accent);
}

.search-row select option {
    background: #0a1428;
}

/* ============ INSTITUTIONS GRID ============ */
.institutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    padding: 10px 0;
}

.inst-card {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.inst-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--star-color, #4fc3f7);
    box-shadow: 0 0 15px var(--star-color, #4fc3f7);
}

.inst-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
    border-color: rgba(79, 195, 247, 0.3);
}

.inst-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.inst-star-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.inst-category-badge {
    font-size: 0.72rem;
    padding: 3px 10px;
    border-radius: 20px;
    border: 1px solid;
    font-weight: 600;
}

.inst-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text);
}

.inst-card p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.inst-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 14px;
}

.inst-stat {
    background: rgba(255,255,255,0.04);
    border-radius: 8px;
    padding: 10px;
    text-align: center;
}

.inst-stat-value {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--accent);
    display: block;
}

.inst-stat-label {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.impact-bar {
    margin-top: 8px;
}

.impact-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.impact-track {
    height: 4px;
    background: rgba(255,255,255,0.08);
    border-radius: 4px;
    overflow: hidden;
}

.impact-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 1s ease;
}

/* ============ FORM ============ */
.form-container {
    max-width: 800px;
    margin: 0 auto;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 7px;
}

.form-group label i {
    color: var(--accent);
    width: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    color: var(--text);
    padding: 12px 14px;
    border-radius: 10px;
    font-family: 'Tajawal', sans-serif;
    font-size: 0.95rem;
    outline: none;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(79, 195, 247, 0.1);
}

.form-group select option {
    background: #0a1428;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
    line-height: 1.6;
}

.color-picker-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.color-picker-wrapper input[type="color"] {
    width: 60px;
    height: 44px;
    padding: 2px;
    cursor: pointer;
}

.color-preview {
    flex: 1;
    height: 44px;
    border-radius: 8px;
    border: 1px solid var(--glass-border);
    transition: background 0.3s ease;
}

.form-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    border: none;
    color: white;
    padding: 14px 32px;
    border-radius: 30px;
    font-family: 'Tajawal', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 20px rgba(79, 195, 247, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(79, 195, 247, 0.5);
}

.btn-secondary {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    color: var(--text-muted);
    padding: 14px 24px;
    border-radius: 30px;
    font-family: 'Tajawal', sans-serif;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* ============ STATS ============ */
.stats-overview {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 30px;
}

.stat-card {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    padding: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-3px);
    border-color: rgba(79, 195, 247, 0.3);
}

.stat-card .stat-icon {
    font-size: 2rem;
    margin-bottom: 12px;
    display: block;
}

.stat-card .stat-number {
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(90deg, var(--accent), var(--accent2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.stat-card .stat-title {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.charts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.chart-card {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    padding: 20px;
    backdrop-filter: blur(10px);
}

.chart-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-stars {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    padding: 24px;
    backdrop-filter: blur(10px);
}

.top-stars h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.top-star-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    border-radius: 10px;
    margin-bottom: 10px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s ease;
    cursor: pointer;
}

.top-star-item:hover {
    background: rgba(79, 195, 247, 0.08);
    border-color: rgba(79, 195, 247, 0.2);
}

.rank-badge {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.rank-1 { background: linear-gradient(135deg, #ffd700, #ff9800); color: #000; }
.rank-2 { background: linear-gradient(135deg, #c0c0c0, #90a4ae); color: #000; }
.rank-3 { background: linear-gradient(135deg, #cd7f32, #8d6e63); color: #fff; }
.rank-other { background: rgba(255,255,255,0.1); color: var(--text-muted); }

/* ============ MODAL ============ */
.modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal.open {
    opacity: 1;
    pointer-events: all;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    background: linear-gradient(135deg, #0a1428, #0d1b3a);
    border: 1px solid rgba(79, 195, 247, 0.3);
    border-radius: 20px;
    padding: 32px;
    max-width: 560px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7), 0 0 40px rgba(79, 195, 247, 0.1);
    animation: modal-in 0.3s ease;
}

@keyframes modal-in {
    from { transform: scale(0.9) translateY(20px); opacity: 0; }
    to { transform: scale(1) translateY(0); opacity: 1; }
}

.modal-close {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-muted);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: rgba(255, 100, 100, 0.2);
    color: #ff6b6b;
    border-color: #ff6b6b;
}

/* Modal body content */
.modal-star-header {
    text-align: center;
    margin-bottom: 24px;
}

.modal-star-glow {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    animation: float-star 3s ease-in-out infinite;
}

@keyframes float-star {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.modal-star-name {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.modal-star-en {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.modal-badge {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.modal-description {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 24px;
    text-align: center;
}

.modal-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
    margin-bottom: 24px;
}

.modal-metric {
    background: rgba(255,255,255,0.04);
    border-radius: 12px;
    padding: 14px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.06);
}

.modal-metric-val {
    font-size: 1.3rem;
    font-weight: 900;
    display: block;
    background: linear-gradient(90deg, var(--accent), var(--accent2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modal-metric-lbl {
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.modal-impact-section {
    margin-bottom: 24px;
}

.modal-impact-section h4 {
    font-size: 0.9rem;
    color: var(--gold);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.impact-ring-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.impact-ring-item {
    text-align: center;
}

.impact-ring-val {
    display: block;
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 4px;
}

.impact-ring-lbl {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.modal-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.modal-btn {
    padding: 10px 22px;
    border-radius: 20px;
    font-family: 'Tajawal', sans-serif;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.modal-btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    border: none;
    color: white;
}

.modal-btn-danger {
    background: rgba(255, 100, 100, 0.1);
    border: 1px solid rgba(255, 100, 100, 0.3);
    color: #ff6b6b;
}

.modal-btn:hover {
    transform: translateY(-2px);
}

/* ============ NOTIFICATION ============ */
.notification {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, rgba(10, 20, 50, 0.98), rgba(15, 30, 60, 0.98));
    border: 1px solid rgba(79, 195, 247, 0.4);
    border-radius: 12px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 3000;
    font-size: 0.9rem;
    color: var(--text);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s ease;
}

.notification.show {
    transform: translateY(0);
    opacity: 1;
}

.notification i {
    color: #66bb6a;
    font-size: 1.1rem;
}

/* ============ SCROLLBAR ============ */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.03);
}
::-webkit-scrollbar-thumb {
    background: rgba(79, 195, 247, 0.3);
    border-radius: 6px;
}

/* ============ LOADING ============ */
.loading-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px;
    gap: 16px;
    color: var(--text-muted);
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(79, 195, 247, 0.2);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 768px) {
    .main-header { padding: 0 14px; }
    .logo-text h1 { font-size: 1.1rem; }
    .logo-text .subtitle { display: none; }
    .nav-btn span { display: none; }
    .nav-btn { padding: 8px 12px; }
    .galaxy-ui { right: 10px; top: 10px; min-width: 180px; }
    .form-grid { grid-template-columns: 1fr; }
    .charts-grid { grid-template-columns: 1fr; }
    .modal-metrics { grid-template-columns: 1fr 1fr; }
    .institutions-grid { grid-template-columns: 1fr; }
}

/* Star tooltip */
.star-tooltip {
    position: absolute;
    background: var(--card-bg);
    border: 1px solid rgba(79, 195, 247, 0.4);
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 0.85rem;
    pointer-events: none;
    z-index: 500;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    transition: opacity 0.2s ease;
    max-width: 180px;
}

.star-tooltip strong {
    display: block;
    color: var(--accent);
    margin-bottom: 4px;
}

.star-tooltip span {
    color: var(--text-muted);
    font-size: 0.78rem;
}

/* Background view */
#institutions-view, #add-view, #stats-view {
    background: radial-gradient(ellipse at 20% 0%, rgba(79, 195, 247, 0.04) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 100%, rgba(124, 77, 255, 0.04) 0%, transparent 50%),
                linear-gradient(180deg, #000015 0%, #000a20 100%);
}
