        /* ========== SIDEBAR NAVIGATION ========== */
        .site-sidebar {
            position: fixed;
            top: 0;
            left: 0;
            width: 260px;
            height: 100vh;
            height: 100dvh;
            background: #fdfbf7;
            border-right: 2px solid #2c2c2c;
            z-index: 150;
            overflow-y: auto;
            overflow-x: hidden;
            scrollbar-width: none;
            display: flex;
            flex-direction: column;
            box-shadow: 2px 0 8px rgba(0,0,0,0.06);
        }
        .site-sidebar::-webkit-scrollbar { display: none; }

        /* Hamburger toggle — hidden on desktop */
        .sidebar-toggle {
            display: none;
            position: fixed;
            top: 12px;
            left: 12px;
            z-index: 200;
            width: 40px;
            height: 40px;
            background: #fdfbf7;
            border: 2px solid #2c2c2c;
            box-shadow: 2px 2px 0 rgba(0,0,0,0.08);
            cursor: pointer;
            align-items: center;
            justify-content: center;
            color: #2c2c2c;
            padding: 0;
        }
        .sidebar-toggle:hover {
            background: #2c2c2c;
            color: #fdfbf7;
        }

        /* Overlay behind sidebar on mobile */
        .sidebar-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.4);
            z-index: 140;
        }
        .sidebar-overlay.active {
            display: block;
        }

        /* ========== MAIN CONTENT ========== */
        .site-content {
            margin-left: 260px;
            min-height: 100vh;
            min-height: 100dvh;
            position: relative;
            z-index: 10;
        }

        /* ========== SIDEBAR INNER ELEMENTS ========== */

        /* Profile Card in Sidebar */
        .hp-profile-card {
            background: #fff;
            border-bottom: 2px solid #e5e5e5;
            padding: 16px 20px;
            text-align: center;
        }

        .hp-profile-avatar {
            width: 60px;
            height: 60px;
            margin: 0 auto 8px;
            border-radius: 50%;
            background: #f5f5f5;
            border: 2px solid #ddd;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #bbb;
            box-shadow: inset 0 2px 6px rgba(0,0,0,0.06);
        }

        .hp-profile-name {
            font-family: 'Special Elite', cursive;
            font-size: 15px;
            font-weight: 700;
            color: #2c2c2c;
            letter-spacing: 0.06em;
            margin: 0;
        }

        .hp-profile-divider {
            width: 40px;
            height: 2px;
            background: #d93025;
            margin: 0 auto 8px;
        }

        .hp-profile-date {
            font-family: 'Courier Prime', monospace;
            font-size: 10px;
            color: #888;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            margin: 0;
        }

        .hp-profile-date-bs {
            font-family: 'Courier Prime', monospace;
            font-size: 9px;
            color: #aaa;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin: 0 0 10px;
        }

        .hp-profile-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 4px;
            justify-content: center;
        }

        .hp-profile-tags button {
            padding: 2px 6px;
            background: #fafafa;
            border: 1px solid #ddd;
            font-family: 'Courier Prime', monospace;
            font-size: 8px;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: #666;
            cursor: pointer;
            transition: all 0.2s;
        }

        .hp-profile-tags button:hover {
            background: #2c2c2c;
            color: #fff;
            border-color: #2c2c2c;
        }

        /* Sidebar Nav */
        .sidebar-nav {
            display: flex;
            flex-direction: column;
            flex: 1;
        }

        .sidebar-nav-header {
            background: #2c2c2c;
            color: #f4f1ea;
            font-family: 'Special Elite', cursive;
            font-size: 12px;
            letter-spacing: 0.1em;
            padding: 8px 16px;
        }

        .sidebar-nav-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 10px 16px;
            cursor: pointer;
            border-bottom: 1px solid rgba(0,0,0,0.05);
            transition: all 0.15s;
            text-decoration: none;
            color: inherit;
        }

        .sidebar-nav-item:hover {
            background: rgba(217, 48, 37, 0.06);
        }

        .sidebar-nav-item:last-child {
            border-bottom: none;
        }

        .sidebar-nav-item.active {
            background: rgba(217, 48, 37, 0.08);
            border-left: 3px solid #d93025;
        }

        .sidebar-nav-icon {
            width: 28px;
            height: 28px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .sidebar-nav-text {
            display: flex;
            flex-direction: column;
            min-width: 0;
        }

        .sidebar-nav-text strong {
            font-family: 'Courier Prime', monospace;
            font-size: 13px;
            color: #2c2c2c;
            font-weight: 700;
        }

        .sidebar-nav-text span {
            font-family: 'Patrick Hand', cursive;
            font-size: 11px;
            color: #999;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        /* ========== WIDGETS ROW (Home Page) ========== */

        .hp-widgets-row {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0;
            border-top: 2px dashed rgba(0,0,0,0.08);
            margin-top: 12px;
        }

        .hp-widget {
            padding: 12px 16px;
            border-right: 1px solid rgba(0,0,0,0.06);
        }
        .hp-widget:last-child {
            border-right: none;
        }

        .hp-widget-label {
            font-family: 'Courier Prime', monospace;
            font-size: 11px;
            color: #d93025;
            letter-spacing: 0.1em;
            border-bottom: 1px dashed rgba(0,0,0,0.1);
            padding-bottom: 6px;
            margin-bottom: 8px;
            font-weight: bold;
        }

        @media (max-width: 768px) {
            .hp-widgets-row {
                grid-template-columns: 1fr;
            }
            .hp-widget {
                border-right: none;
                border-bottom: 1px solid rgba(0,0,0,0.06);
            }
            .hp-widget:last-child {
                border-bottom: none;
            }
        }

        /* ========== PAGE CONTENT CONTAINER ========== */
        .page-content-wrap {
            max-width: 960px;
            margin: 0 auto;
            padding: 8px 20px 60px;
        }

        /* ========== WIDGET STYLES (kept from original) ========== */

        .gochar-planet-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 3px 0;
            border-bottom: 1px dashed rgba(0, 0, 0, 0.06);
            font-size: 13px;
        }

        .gochar-planet-row:last-child {
            border-bottom: none;
        }

        .gochar-planet-name {
            font-family: 'Noto Serif Devanagari', serif;
            font-weight: bold;
            min-width: 30px;
        }

        .gochar-planet-rashi {
            font-family: 'Noto Serif Devanagari', serif;
            font-size: 12px;
            color: #555;
            flex: 1;
            text-align: center;
        }

        .gochar-planet-deg {
            font-family: 'Courier Prime', monospace;
            font-size: 11px;
            color: #888;
            min-width: 40px;
            text-align: right;
        }

        .gochar-retro {
            color: #dc2626;
        }

        .gochar-combust {
            color: #71717a;
        }

        .astro-event-card {
            text-align: center;
            padding: 6px 0;
        }

        .astro-event-name {
            font-family: 'Special Elite', cursive;
            font-size: 14px;
            color: #2c2c2c;
            margin-bottom: 4px;
        }

        .astro-event-date {
            font-family: 'Courier Prime', monospace;
            font-size: 11px;
            color: #888;
            margin-bottom: 6px;
        }

        .astro-event-countdown {
            font-family: 'Patrick Hand', cursive;
            font-size: 18px;
            color: #d93025;
            font-weight: bold;
        }

        .astro-event-desc {
            font-family: 'Patrick Hand', cursive;
            font-size: 12px;
            color: #555;
            margin-top: 4px;
            line-height: 1.3;
        }

        .astro-sun-times {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 5px 0;
            border-top: 1px dashed rgba(0, 0, 0, 0.08);
            margin-top: 6px;
            font-family: 'Courier Prime', monospace;
            font-size: 10px;
            color: #888;
        }

        /* ========== PHOTO LIGHTBOX ========== */
        .photo-lightbox {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 300;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(0,0,0,0.85);
        }
        .photo-lightbox-inner {
            max-width: 90vw;
            max-height: 85vh;
            display: flex;
            flex-direction: column;
            overflow: hidden;
        }
        .photo-lightbox-title {
            font-family: 'Special Elite', cursive;
            font-size: 13px;
            color: #fff;
            padding: 10px 16px;
            text-align: center;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }
        .photo-lightbox-close {
            position: absolute;
            top: 16px;
            right: 20px;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: #d93025;
            border: none;
            color: #fff;
            font-size: 18px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.2s;
        }
        .photo-lightbox-close:hover {
            background: #b91c1c;
        }
        .photo-lightbox-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: rgba(255,255,255,0.15);
            border: 1px solid rgba(255,255,255,0.3);
            color: #fff;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.2s;
            z-index: 310;
        }
        .photo-lightbox-nav:hover {
            background: rgba(255,255,255,0.3);
        }
        .photo-lightbox-prev { left: 16px; }
        .photo-lightbox-next { right: 16px; }
        @media (max-width: 768px) {
            .photo-lightbox-nav { width: 36px; height: 36px; }
            .photo-lightbox-prev { left: 8px; }
            .photo-lightbox-next { right: 8px; }
        }
        .photo-lightbox img {
            max-width: 100%;
            max-height: 80vh;
            object-fit: contain;
        }

        /* ========== RESPONSIVE — MOBILE & TABLET ========== */
        @media (max-width: 768px) {
            .site-sidebar {
                transform: translateX(-100%);
                transition: transform 0.3s ease;
                width: 280px;
            }
            .site-sidebar.open {
                transform: translateX(0);
            }
            .sidebar-toggle {
                display: flex !important;
                flex-direction: column;
                gap: 2px;
                top: auto;
                bottom: 20px;
                left: 50%;
                transform: translateX(-50%) translateY(0);
                width: auto;
                min-width: 52px;
                height: auto;
                padding: 10px 16px 8px;
                border-radius: 26px;
                box-shadow: 0 4px 16px rgba(0,0,0,0.18);
                z-index: 9990;
                transition: transform 0.15s ease, opacity 0.15s ease;
            }
            .sidebar-toggle.scrolling {
                transform: translateX(-50%) translateY(100px);
                opacity: 0;
                pointer-events: none;
            }
            .sidebar-toggle .menu-label {
                font-family: 'Courier Prime', monospace;
                font-size: 8px;
                letter-spacing: 0.1em;
                text-transform: uppercase;
                line-height: 1;
            }
            .sidebar-toggle:hover {
                background: #2c2c2c;
                color: #fdfbf7;
            }
            .site-content {
                margin-left: 0;
                padding-bottom: 80px;
            }
        }
