        /* ===== HEADER STYLES ===== */
        .header {
            position: sticky;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1200;
            background-color: transparent;
            transition: all 0.3s ease;
            padding: 0.5rem 0;
        }

        .header.scrolled {
            background-color: white;
            box-shadow: 0 1px 3px 0 var(--shadow-color);
        }

        .header-container {
            max-width: 100%;
            margin: 0 auto;
            padding: 0 1rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
        }

        @media (min-width: 600px) {
            .header-container {
                max-width: 720px;
            }
        }

        @media (min-width: 900px) {
            .header-container {
                max-width: 1236px;
            }
        }

        .header-logo {
            display: flex;
            width: 100px;
        }

        @media (min-width: 768px) {
            .header-logo {
                width: 120px;
            }
        }

        .header-logo img {
            max-width: 40px;
            height: auto;
            width: 100%;
        }

        /* Desktop Navigation */
        .desktop-nav {
            display: none;
            align-items: center;
            gap: 0;
        }

        .desktop-nav > * {
            margin-left: 1.5rem;
        }

        .desktop-nav > *:first-child {
            margin-left: 0;
        }

        .desktop-nav a,
        .desktop-nav button {
            color: var(--text-color);
            font-weight: 400;
            transition: color 0.2s ease;
            padding: 0;
            border: none;
            background: none;
            cursor: pointer;
            font-size: 1rem;
            text-decoration: none;
        }

        .desktop-nav a:hover,
        .desktop-nav button:hover {
            color: var(--primary-500);
        }

        .desktop-nav a.active,
        .desktop-nav button.active {
            font-weight: 700;
        }

        /* Email Dropdown */
        .email-dropdown-container {
            position: relative;
        }

        .email-dropdown-btn {
            display: flex;
            align-items: center;
            color: var(--text-color);
            font-weight: 400;
            background: none;
            border: none;
            cursor: pointer;
            transition: color 0.2s ease;
        }

        .email-dropdown-btn:hover {
            color: var(--primary-500);
        }

        .email-dropdown-btn.active {
            font-weight: 700;
        }

        .email-dropdown-btn svg {
            margin-left: 0.25rem;
            width: 1rem;
            height: 1rem;
            transition: transform 0.2s ease;
        }

        .email-dropdown-content {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            margin-top: 0.5rem;
            width: 250px;
            max-width: 250px;
            background-color: white;
            border-radius: 0.5rem;
            border-top-left-radius: 0;
            border-top-right-radius: 0;
            border-bottom-left-radius: 0.5rem;
            border-bottom-right-radius: 0.5rem;
            box-shadow: 0 10px 15px -3px var(--shadow-color), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            padding: 1rem;
            border-top: 3px solid var(--primary-500);
            display: none;
            z-index: 1000;
        }

        .email-dropdown-content.open {
            display: block;
        }

        .email-dropdown-content a {
            display: block;
            width: 100%;
            text-align: left;
            padding: 0.5rem 0.75rem;
            color: var(--text-color);
            border-radius: 0.25rem;
            transition: all 0.2s ease;
            font-weight: 400;
            text-decoration: none;
        }

        .email-dropdown-content a:hover {
            color: var(--primary-500);
            background-color: rgba(55, 125, 255, 0.1);
        }

        .email-dropdown-content a.active {
            color: var(--primary-500);
            background-color: rgba(55, 125, 255, 0.1);
            font-weight: 600;
        }

        /* Mobile Menu Button */
        .mobile-menu-btn {
            padding: 0.5rem;
            border: 1px solid rgba(0, 0, 0, 0.2);
            border-radius: 0.5rem;
            background-color: transparent;
            cursor: pointer;
            display: block;
            margin-left: 0.5rem;
            min-width: auto;
            color: var(--text-color);
            transition: border-color 0.2s ease;
        }

        .mobile-menu-btn:hover {
            border-color: rgba(0, 0, 0, 0.3);
        }

        .mobile-menu-btn svg {
            width: 1.5rem;
            height: 1.5rem;
        }

        /* Show desktop nav on medium screens and up */
        @media (min-width: 768px) {
            .desktop-nav {
                display: flex;
            }
            .mobile-menu-btn {
                display: none;
            }
        }
        /* ===== MOBILE SIDEBAR STYLES ===== */
        .mobile-sidebar-overlay {
            display: none;
            position: fixed;
            inset: 0;
            z-index: 1300;
        }

        .mobile-backdrop {
            position: fixed;
            inset: 0;
            background-color: rgba(0, 0, 0, 0.5);
        }

        .mobile-menu {
            position: fixed;
            top: 0;
            left: 0;
            bottom: 0;
            width: 20rem;
            background-color: white;
            box-shadow: 0 20px 25px -5px var(--shadow-color), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
            transform: translateX(-100%);
            transition: transform 0.225s cubic-bezier(0, 0, 0.2, 1);
            overflow-y: auto;
        }

        .mobile-menu.open {
            transform: translateX(0);
        }

        .mobile-menu-content {
            padding: 1.5rem;
        }

        .mobile-menu-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 2rem;
        }

        .mobile-menu-logo {
            height: 2.5rem;
            width: 2.5rem;
        }

        .mobile-menu-close-btn {
            padding: 0.5rem;
            background: none;
            border: none;
            cursor: pointer;
            color: var(--text-color);
        }

        .mobile-menu-close-btn svg {
            width: 1.5rem;
            height: 1.5rem;
        }

        .mobile-menu-nav {
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .mobile-menu-link {
            padding: 0.75rem 0;
            color: var(--text-color);
            font-weight: 400;
            text-decoration: none;
            border-bottom: 1px solid var(--gray-200);
            transition: color 0.2s ease;
        }

        .mobile-menu-link:hover {
            color: var(--primary-500);
        }

        .mobile-menu-link.active {
            font-weight: 700;
        }

        .mobile-menu-dropdown-btn {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            padding: 0.75rem 0;
            color: var(--text-color);
            font-weight: 400;
            background: none;
            border: none;
            border-bottom: 1px solid var(--gray-200);
            cursor: pointer;
            text-align: left;
            transition: color 0.2s ease;
        }

        .mobile-menu-dropdown-btn:hover {
            color: var(--primary-500);
        }

        .mobile-menu-dropdown-btn.active {
            font-weight: 700;
        }

        .mobile-menu-dropdown-btn svg {
            width: 1rem;
            height: 1rem;
            transition: transform 0.2s ease;
        }

        .mobile-menu-dropdown {
            display: none;
            padding-left: 1rem;
            padding-bottom: 0.5rem;
            flex-direction: column;
            gap: 0;
            border-bottom: 1px solid var(--gray-200);
        }

        .mobile-menu-dropdown.open {
            display: flex;
        }

        .mobile-menu-dropdown-link {
            padding: 0.5rem 0;
            color: var(--gray-600);
            text-decoration: none;
            font-size: 0.875rem;
            transition: color 0.2s ease;
        }

        .mobile-menu-dropdown-link:hover {
            color: var(--primary-500);
        }

        .mobile-menu-dropdown-link.active {
            color: var(--primary-500);
            font-weight: 600;
        }

        /* Mobile Menu Auth Styles */
        .mobile-menu-divider {
            border-top: 2px solid var(--gray-300);
            margin: 1rem 0;
        }

        .mobile-menu-user {
            padding: 0.75rem 0;
            border-bottom: 1px solid var(--gray-200);
        }

        .mobile-menu-user-email {
            color: var(--text-muted);
            font-size: 0.875rem;
            font-weight: 500;
        }

        .mobile-menu-link-primary {
            color: var(--primary-500);
            font-weight: 600;
        }

        .mobile-menu-link-primary:hover {
            color: var(--primary-600);
        }

        .mobile-menu-auth-btn {
            display: block;
            width: 100%;
            text-align: left;
            border: none;
            background: none;
            cursor: pointer;
            font-size: 1rem;
            font-family: inherit;
        }

        /* ===== DASHBOARD LAYOUT WITH SIDEBAR ===== */
        .dashboard-wrapper {
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }

        .dashboard-layout {
            display: flex;
            flex: 1;
            width: 80%;
            max-width: 1400px;
            margin: 0 auto;
        }

        .dashboard-sidebar {
            width: 16rem;
            background-color: var(--card-background);
            border-right: 1px solid var(--border-color);
            flex-shrink: 0;
        }

        .sidebar-content {
            padding: 1rem;
        }

        .sidebar-section-title {
            font-size: 0.75rem;
            font-weight: 600;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.05em;
            padding: 0.75rem;
            margin-top: 1.5rem;
        }

        .sidebar-section-title:first-child {
            margin-top: 0;
        }

        .sidebar-link {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.75rem;
            margin-bottom: 0.25rem;
            color: var(--text-color);
            text-decoration: none;
            border-radius: 0.5rem;
            transition: all 0.2s ease;
            font-weight: 500;
            border: none;
            background: none;
            cursor: pointer;
            width: 100%;
            text-align: left;
            font-size: 0.875rem;
        }

        .sidebar-link:hover {
            background-color: var(--alternate-main);
            color: var(--primary-500);
        }

        .sidebar-link.active {
            background-color: var(--primary-50);
            color: var(--primary-600);
            font-weight: 600;
        }

        .sidebar-icon {
            width: 1.25rem;
            height: 1.25rem;
            flex-shrink: 0;
        }

        .dashboard-main {
            flex: 1;
            padding: 2rem 0;
            overflow-x: hidden;
        }

        .dashboard-container {
            max-width: 1200px;
            padding: 0 1rem;
        }

        /* Responsive Dashboard Layout */
        @media (max-width: 768px) {
            .dashboard-sidebar {
                display: none;
            }

            .dashboard-main {
                padding: 1rem 0;
            }
        }

        /* ===== JSON MODAL STYLES ===== */
        .json-modal {
            display: none;
            position: fixed;
            inset: 0;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 1300;
            align-items: center;
            justify-content: center;
            padding: 2rem;
        }

        .json-modal.open {
            display: flex;
        }

        .json-modal-content {
            background-color: white;
            border-radius: 0.75rem;
            max-width: 48rem;
            width: 100%;
            max-height: calc(100vh - 4rem);
            overflow: hidden;
            box-shadow: 0 25px 50px rgba(0,0,0,0.25);
            display: flex;
            flex-direction: column;
        }

        .json-modal-header {
            padding: 1.5rem;
            border-bottom: 1px solid var(--border-color);
            flex-shrink: 0;
        }

        .json-modal-title {
            font-size: 1.25rem;
            font-weight: 600;
            margin: 0;
        }

        .json-modal-body {
            flex: 1;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }

        .json-content-container {
            background-color: #1e1e1e;
            border-radius: 0.5rem;
            margin: 1.5rem;
            flex: 1;
            overflow: auto;
            max-height: 70vh;
        }

        .json-content {
            margin: 0;
            padding: 1.5rem;
            font-size: 13px;
            line-height: 1.6;
            color: #f8f8f2;
            font-family: 'Fira Code', 'JetBrains Mono', 'SF Mono', Consolas, monospace;
            white-space: pre;
            overflow: auto;
            border-radius: 0.5rem;
        }

        .json-modal-footer {
            padding: 1.5rem;
            border-top: 1px solid var(--border-color);
            display: flex;
            justify-content: flex-end;
            gap: 0.75rem;
            flex-shrink: 0;
        }

        .json-modal-btn {
            padding: 0.5rem 1rem;
            border: none;
            border-radius: 0.5rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s ease;
            text-transform: none;
            font-size: 0.875rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .json-modal-btn.copy-btn {
            color: var(--primary-500);
            background-color: transparent;
        }

        .json-modal-btn.copy-btn:hover {
            background-color: rgba(55, 125, 255, 0.04);
        }

        .json-modal-btn.close-btn {
            color: var(--gray-600);
            background-color: transparent;
        }

        .json-modal-btn.close-btn:hover {
            background-color: rgba(0, 0, 0, 0.04);
            color: var(--gray-800);
        }

        .json-modal-btn svg {
            width: 1rem;
            height: 1rem;
        }
        /* ===== FOOTER STYLES ===== */
        .footer-hr {
            border: 0;
            border-top: 1px solid var(--border-color);
            margin: 0;
        }

        .footer-container {
            max-width: 100%;
            margin: 0 auto;
            padding: 2rem 1rem;
        }

        @media (min-width: 600px) {
            .footer-container {
                max-width: 720px;
            }
        }

        @media (min-width: 640px) {
            .footer-container {
                padding: 3rem 1rem;
            }
        }

        @media (min-width: 768px) {
            .footer-container {
                padding: 4rem 1rem;
            }
        }

        @media (min-width: 900px) {
            .footer-container {
                max-width: 1236px;
            }
        }

        /* Footer Main Content */
        .footer-main {
            margin-bottom: 1rem;
        }

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

        @media (min-width: 640px) {
            .footer-flex {
                flex-direction: row;
            }
        }

        .footer-logo a {
            display: inline-block;
        }

        .footer-logo img {
            width: 100%;
            height: 100%;
            transition: transform 0.3s ease;
        }

        .footer-logo img:hover {
            transform: rotate(6deg);
        }

        .footer-links {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            margin-top: 0.25rem;
        }

        @media (min-width: 640px) {
            .footer-links {
                margin-top: 0;
            }
        }

        .footer-link-item {
            margin-top: 0.25rem;
            margin-right: 1rem;
        }

        .footer-link-item:last-child {
            margin-right: 0;
        }

        .footer-link {
            color: var(--text-color);
            transition: color 0.2s ease;
            font-size: 0.875rem;
            font-weight: 500;
        }

        .footer-link:hover {
            color: var(--text-muted);
        }

        .footer-visit-btn {
            display: inline-block;
            padding: 0.375rem 0.75rem;
            border: 1px solid var(--primary-500);
            color: var(--primary-500);
            border-radius: 0.25rem;
            font-size: 0.75rem;
            font-weight: 500;
            transition: background-color 0.2s ease;
        }

        .footer-visit-btn:hover {
            background-color: var(--primary-50);
        }

        /* Footer Copyright */
        .footer-copyright {
            text-align: center;
            margin-top: 1rem;
        }

        .footer-copyright p {
            color: var(--text-muted);
            font-size: 0.875rem;
            font-weight: 500;
            margin-bottom: 0.25rem;
        }

        .footer-copyright .text-xs {
            font-size: 0.75rem;
        }

        .footer-copyright a {
            color: var(--text-color);
            transition: color 0.2s ease;
        }

        .footer-copyright a:hover {
            color: var(--text-muted);
        }
