:root {
    --bg-dark: #070707;
    --glass-bg: rgba(20, 20, 20, 0.4);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-highlight: rgba(255, 255, 255, 0.15);

    --primary-color: #9d4edd;
    --primary-glow: rgba(157, 78, 221, 0.6);
    --accent-gold: #e9c46a;
    --text-main: #f8f9fa;
    --text-muted: #adb5bd;

    --success: #2a9d8f;
    --warning: #f4a261;
    --danger: #e76f51;

    --font-main: 'Outfit', sans-serif;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-main);
    overflow-x: hidden;
    min-height: 100vh;
}

/* Base Utility Classes */
.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.w-100 {
    width: 100%;
}

.mt-4 {
    margin-top: 2rem;
}

/* Glassmorphism Panel */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

/* =========================================================
   Login Page Styles
========================================================= */
.login-bg {
    background: radial-gradient(circle at top right, rgba(157, 78, 221, 0.15), transparent 40%),
        radial-gradient(circle at bottom left, rgba(233, 196, 106, 0.1), transparent 40%),
        var(--bg-dark);
}

.login-container {
    height: 100vh;
    padding: 20px;
}

.login-box {
    width: 100%;
    max-width: 420px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.login-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    animation: scanline 4s linear infinite;
}

@keyframes scanline {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(50%);
    }
}

.login-header {
    text-align: center;
    margin-bottom: 30px;
}

.logo-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), #3c096c);
    margin: 0 auto 15px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #fff;
    box-shadow: 0 0 20px var(--primary-glow);
}

.login-header h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.login-header p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.input-group {
    position: relative;
    margin-bottom: 20px;
}

.input-group i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    transition: var(--transition);
}

.input-group input {
    width: 100%;
    padding: 14px 15px 14px 45px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: var(--text-main);
    font-family: var(--font-main);
    font-size: 1rem;
    transition: var(--transition);
}

.input-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(157, 78, 221, 0.2);
}

.input-group input:focus+i {
    color: var(--primary-color);
}

.login-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    font-size: 0.9rem;
}

.remember {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    cursor: pointer;
}

.forgot-link {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.forgot-link:hover {
    color: var(--accent-gold);
    text-shadow: 0 0 10px rgba(233, 196, 106, 0.5);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), #5a189a);
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--font-main);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.btn-primary:hover {
    box-shadow: 0 5px 20px var(--primary-glow);
    transform: translateY(-2px);
}

.login-footer {
    margin-top: 30px;
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    border-top: 1px solid var(--glass-border);
    padding-top: 15px;
}

/* =========================================================
   Dashboard Styles
========================================================= */
.dashboard-wrapper {
    display: flex;
    min-height: 100vh;
}

/* Sidebar */
.sidebar {
    width: 260px;
    height: 100vh;
    position: fixed;
    border-radius: 0;
    border-left: none;
    border-top: none;
    border-bottom: none;
    display: flex;
    flex-direction: column;
    z-index: 100;
}

.sidebar-header {
    padding: 30px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid var(--glass-border);
}

.logo-circle-small {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), #3c096c);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #fff;
    box-shadow: 0 0 10px var(--primary-glow);
}

.nav-menu {
    list-style: none;
    padding: 20px 15px;
    flex: 1;
}

.nav-item {
    margin-bottom: 8px;
}

.nav-item a {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 15px;
    color: var(--text-muted);
    text-decoration: none;
    border-radius: 8px;
    transition: var(--transition);
    font-weight: 400;
}

.nav-item a i {
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.nav-item:hover a,
.nav-item.active a {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
}

.nav-item.active a {
    border-left: 3px solid var(--primary-color);
    background: linear-gradient(90deg, rgba(157, 78, 221, 0.15), transparent);
}

.nav-item.active a i {
    color: var(--primary-color);
}

.sidebar-footer {
    padding: 20px;
    border-top: 1px solid var(--glass-border);
}

.logout-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--danger);
    text-decoration: none;
    padding: 10px;
    border-radius: 8px;
    transition: var(--transition);
}

.logout-btn:hover {
    background: rgba(231, 111, 81, 0.1);
}

/* Main Content Area */
.main-content {
    flex: 1;
    margin-left: 260px;
    padding: 20px 40px;
}

.topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 25px;
    margin-bottom: 30px;
}

.search-bar {
    position: relative;
    width: 300px;
}

.search-bar i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}

.search-bar input {
    width: 100%;
    padding: 10px 15px 10px 45px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    color: var(--text-main);
    font-family: var(--font-main);
}

.search-bar input:focus {
    outline: none;
    border-color: var(--glass-highlight);
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.icon-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.2rem;
    position: relative;
    cursor: pointer;
    transition: var(--transition);
}

.icon-btn:hover {
    color: var(--text-main);
}

.badge {
    position: absolute;
    top: -5px;
    right: -8px;
    background: var(--danger);
    color: #fff;
    font-size: 0.7rem;
    padding: 2px 5px;
    border-radius: 10px;
    font-weight: 600;
}

.admin-profile {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-color);
}

.page-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 25px;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.stat-card {
    padding: 25px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--glass-highlight);
}

.stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.stat-icon.purple {
    background: rgba(157, 78, 221, 0.15);
    color: var(--primary-color);
}

.stat-icon.gold {
    background: rgba(233, 196, 106, 0.15);
    color: var(--accent-gold);
}

.stat-icon.green {
    background: rgba(42, 157, 143, 0.15);
    color: var(--success);
}

.stat-icon.red {
    background: rgba(231, 111, 81, 0.15);
    color: var(--danger);
}

.stat-info h3 {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 400;
    margin-bottom: 5px;
}

.stat-info h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.trend {
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.trend.up {
    color: var(--success);
}

.trend.down {
    color: var(--danger);
}

/* Table Styles */
.table-container {
    padding: 25px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: 1.2rem;
    font-weight: 600;
}

.btn-outline-small {
    background: transparent;
    border: 1px solid var(--glass-highlight);
    color: var(--text-main);
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-family: var(--font-main);
    transition: var(--transition);
}

.btn-outline-small:hover {
    background: var(--glass-highlight);
}

.table-responsive {
    overflow-x: auto;
}

.premium-table {
    width: 100%;
    border-collapse: collapse;
}

.premium-table th {
    text-align: left;
    padding: 15px;
    color: var(--text-muted);
    font-weight: 400;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--glass-border);
}

.premium-table td {
    padding: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    vertical-align: middle;
}

.user-block {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatar-sm {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #3a0ca3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #fff;
}

.diff-bg {
    background: #f72585;
}

.diff-bg2 {
    background: #4cc9f0;
}

.status {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.status.active {
    background: rgba(42, 157, 143, 0.15);
    color: var(--success);
}

.status.pending {
    background: rgba(244, 162, 97, 0.15);
    color: var(--warning);
}

.status.premium-badge {
    background: linear-gradient(135deg, rgba(233, 196, 106, 0.2), rgba(157, 78, 221, 0.2));
    color: var(--accent-gold);
    border: 1px solid rgba(233, 196, 106, 0.3);
}

.action-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 4px;
    transition: var(--transition);
}

.action-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-main);
}

/* =========================================================
   Pagination Styles
========================================================= */
.pagination-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-top: 1px solid var(--glass-border);
}

.pagination-info {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.pagination-controls,
ul.pagination {
    display: flex;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

    .page-btn,
    ul.pagination li a {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid var(--glass-border);
        color: var(--text-main);
        min-width: 35px;
        height: 35px;
        padding: 0 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 6px;
        cursor: pointer;
        font-family: var(--font-main);
        transition: var(--transition);
        text-decoration: none;
        font-size: 0.9rem;
    }

        .page-btn:hover,
        ul.pagination li a:hover {
            background: rgba(157, 78, 221, 0.2);
            border-color: var(--primary-color);
            color: #fff;
        }

        .page-btn.active,
        ul.pagination li.active a {
            background: var(--primary-color);
            color: #fff;
            border-color: var(--primary-color);
            box-shadow: 0 0 10px var(--primary-glow);
        }

        .page-btn:disabled,
        ul.pagination li.disabled a {
            opacity: 0.5;
            cursor: not-allowed;
            background: rgba(255, 255, 255, 0.02);
            pointer-events: none;
        }

            .page-btn:disabled:hover,
            ul.pagination li.disabled a:hover {
                background: rgba(255, 255, 255, 0.02);
                border-color: var(--glass-border);
            }

/* PagedList Specific Adjustments */
.pagination-container .pagination {
    margin-left: auto;
}

.PagedList-skipToPrevious a,
.PagedList-skipToNext a {
    font-weight: bold;
}

/* =========================================================
   Modal Styles
========================================================= */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: #0d0d0d;
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    transform: translateY(20px);
    transition: var(--transition);
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid var(--glass-border);
    position: sticky;
    top: 0;
    background: rgba(13, 13, 13, 0.95);
    z-index: 10;
}

.modal-header h2 {
    font-size: 1.25rem;
    font-weight: 600;
}

.close-modal {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--danger);
}

.modal-body {
    padding: 25px;
}

.filter-section {
    margin-bottom: 25px;
}

.filter-section h3 {
    font-size: 1rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 5px;
}

.modal-footer {
    padding: 20px 25px;
    border-top: 1px solid var(--glass-border);
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    position: sticky;
    bottom: 0;
    background: rgba(13, 13, 13, 0.95);
    z-index: 10;
}

.form-select,
.form-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    border: 1px solid var(--glass-border);
    padding: 10px 15px;
    border-radius: 8px;
    font-family: var(--font-main);
}

.form-select:focus,
.form-input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-select option {
    background: #0d0d0d;
    color: #fff;
}

/* =========================================================
   Charts Grid
========================================================= */
.charts-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 25px;
}

.chart-card {
    padding: 25px;
    display: flex;
    flex-direction: column;
}

.chart-container {
    position: relative;
    height: 300px;
    width: 100%;
    flex-grow: 1;
}

/* =========================================================
   View Profile Details Styles
========================================================= */
.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.flex-align {
    display: flex;
    align-items: center;
}

.flex-gap-2 {
    gap: 10px;
}

.flex-gap-3 {
    gap: 15px;
}

.flex-wrap {
    flex-wrap: wrap;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.mt-1 {
    margin-top: 0.25rem;
}

.mt-3 {
    margin-top: 1rem;
}

.mt-4 {
    margin-top: 1.5rem;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-muted {
    color: var(--text-muted);
}

.text-sm {
    font-size: 0.85rem;
}

.no-margin {
    margin: 0;
}

.back-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    text-decoration: none;
    transition: var(--transition);
}

.back-link:hover {
    background: var(--primary-color);
    box-shadow: 0 0 10px var(--primary-glow);
}

.btn-outline-danger {
    background: transparent;
    border: 1px solid var(--danger);
    color: var(--danger);
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-outline-danger:hover {
    background: rgba(231, 111, 81, 0.1);
    box-shadow: 0 0 15px rgba(231, 111, 81, 0.3);
}

.btn-danger {
    background: linear-gradient(135deg, #e63946, #d90429);
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.btn-danger:hover {
    box-shadow: 0 5px 15px rgba(230, 57, 70, 0.5);
    transform: translateY(-2px);
}

.grid-layout-large {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 25px;
    align-items: start;
}

.profile-sidebar {
    padding: 30px 20px;
}

.profile-avatar-large {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    position: relative;
}

.avatar-ph {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    border: 3px solid var(--primary-color);
}

.profile-name {
    font-size: 1.5rem;
    font-weight: 600;
}

.divider {
    border: 0;
    height: 1px;
    background: var(--glass-border);
}

.quick-info .info-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.quick-info .info-row i {
    width: 20px;
    text-align: center;
}

.profile-details-main {
    padding: 30px;
}

.details-tab-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 15px;
}

.tab-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-family: var(--font-main);
    font-size: 1rem;
    padding: 10px 20px;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 400;
}

.tab-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
}

.tab-btn.active {
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 0 15px var(--primary-glow);
}

.grid-layout-2-col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.detail-group label {
    display: block;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.detail-group p {
    font-size: 1.1rem;
    color: var(--text-main);
    font-weight: 400;
}

.w-100-span {
    grid-column: 1 / -1;
}

.line-height-1\.6 {
    line-height: 1.6;
}

/* Photo Gallery Grid */
.profile-photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 15px;
    margin-top: 10px;
}

.photo-item {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
    cursor: pointer;
}

.photo-item:hover {
    transform: scale(1.03);
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px var(--primary-glow);
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.photo-item:hover img {
    opacity: 0.9;
}

/* Image Lightbox Modal */
.image-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.image-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.image-lightbox img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 1);
    transform: scale(0.9);
    transition: var(--transition);
    border: 2px solid var(--glass-border);
}

.image-lightbox.active img {
    transform: scale(1);
    border-color: var(--primary-color);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    transition: var(--transition);
    text-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

.lightbox-close:hover {
    color: var(--danger);
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 992px) {
    .sidebar {
        width: 80px;
    }

    .sidebar .sidebar-header h2,
    .sidebar .nav-item span,
    .sidebar .logout-btn span {
        display: none;
    }

    .main-content {
        margin-left: 80px;
        padding: 20px;
    }

    .sidebar-header {
        justify-content: center;
        padding: 20px 0;
    }

    .nav-item a {
        justify-content: center;
        padding: 15px 0;
    }

    .nav-item a i {
        margin: 0;
    }
}

/* Stepper Component */
.stepper-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 0 20px;
}

.stepper-container::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 40px;
    right: 40px;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.stepper-progress {
    position: absolute;
    top: 20px;
    left: 40px;
    height: 3px;
    background: var(--primary-color);
    box-shadow: 0 0 10px var(--primary-glow);
    z-index: 2;
    transition: var(--transition);
}

.step-item {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 60px;
}

.step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 2px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.step-item.active .step-circle {
    border-color: var(--primary-color);
    background: rgba(138, 43, 226, 0.2);
    box-shadow: 0 0 15px var(--primary-glow);
}

.step-item.completed .step-circle {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.step-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
    white-space: nowrap;
}

.step-item.active .step-label {
    color: white;
}

.step-content {
    display: none;
    animation: fadeIn 0.4s ease-out;
}

.step-content.active {
    display: block;
}

@media (max-width: 768px) {

    .stats-grid,
    .charts-grid {
        grid-template-columns: 1fr;
    }

    .topbar {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .search-bar {
        width: 100%;
    }
}
a {
    text-decoration: none;
}