body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif !important;
            /* padding-top: 180px !important; /* Increased to account for header height */ */
            /* padding-bottom: 120px; /* Add bottom padding for footer */ */
            overflow-x: hidden;
            background: var(--tp-page-background);
            min-height: 100vh; /* Ensure full viewport height */
            margin-bottom: 0px !important;
        }
          @media (max-width: 576px) {
            body {
                /* padding-top: 240px !important; /* Increased for mobile */ 
                /* padding-bottom: 140px; /* Increased for mobile footer */ 
                margin-bottom: 0px !important;
            }
        }
          @media (max-width: 768px) {
            body {
                /* padding-top: 220px !important; /* Medium adjustment for tablets */ */
                /* padding-bottom: 130px; */
                margin-bottom: 0px !important;
            }
        }
        
        /* Static background — no particles */
        #particles-js { 
            display: none;
        }

        .editorial-backdrop {
            position: fixed;
            inset: 0;
            z-index: 0;
            overflow: hidden;
            pointer-events: none;
        }

        .editorial-backdrop video {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center center;
            filter: saturate(1.02) contrast(1.06) brightness(0.38);
            transform: scale(1.04);
        }

        .editorial-backdrop::after {
            content: '';
            position: absolute;
            inset: 0;
            background:
                linear-gradient(180deg, rgb(var(--tp-shadow-rgb) / 0.66) 0%, rgb(var(--tp-shadow-rgb) / 0.74) 40%, rgb(var(--tp-shadow-rgb) / 0.90) 100%),
                radial-gradient(circle at 20% 18%, rgb(var(--tp-gold-rgb) / 0.18) 0%, transparent 34%),
                radial-gradient(circle at 82% 22%, rgb(var(--tp-surface-rgb) / 0.08) 0%, transparent 28%);
        }

        header {
            position: relative;
            z-index: 1090;
        }

        .header-bg {
            position: relative;
            z-index: 1080;
            overflow: visible !important;
        }

        .navbar .container,
        .navbar-collapse {
            overflow: visible;
        }
          /* Header styles */
        .navbar.fixed-top {
            z-index: 1070 !important; /* Higher z-index to stay on top */
            background-color: rgba(35, 39, 65, 0.95) !important; /* More opaque */
            backdrop-filter: blur(15px);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
            top: 0;
            left: 0;
            right: 0;
        }
        
        .navbar.fixed-top.scrolled {
            background-color: rgba(25, 29, 45, 0.98) !important;
        }

        .header-brand-row {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: auto;
            min-height: 0;
            z-index: 2;
        }

        .header-brand-row .navbar-brand {
            margin: 0;
        }

        .header-brand-row .navbar-toggler {
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
        }

        .header-utility-group {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.85rem;
            flex-wrap: wrap;
        }

        header .navbar > .container {
            position: relative;
            display: block !important;
            padding-top: 0.55rem;
            padding-bottom: 0.55rem;
            min-height: 4.3rem;
        }

        header .navbar-collapse > .d-flex {
            display: grid !important;
            grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
            align-items: center;
            gap: 0.75rem;
        }

        header .navbar-collapse > .d-flex > .navbar-nav {
            flex-direction: row !important;
            flex-wrap: wrap;
            justify-content: flex-start;
            gap: 0;
            padding-right: 6.25rem;
        }

        header .navbar-collapse > .d-flex > .navbar-nav .nav-item {
            width: auto;
            margin: 0;
        }

        header .navbar-collapse > .d-flex > .navbar-nav .nav-link {
            font-size: 0.8rem;
            letter-spacing: 0.08em;
            padding: 0.3rem 0.48rem !important;
        }

        header .header-utility-group {
            justify-content: flex-end;
            gap: 0.4rem;
            padding-left: 6.25rem;
        }

        .header-utility-group .navbar-nav {
            flex-direction: row;
            gap: 0.35rem;
        }

        .header-social-cluster {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-wrap: wrap;
            gap: 0.45rem;
            margin-right: 0.2rem;
        }

        .header-social-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 2.65rem;
            height: 2.65rem;
            padding: 0;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.14);
            color: rgba(255, 255, 255, 0.86);
            font-size: 1rem;
            line-height: 1;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .header-social-link:hover {
            background: rgba(255, 255, 255, 0.14);
            border-color: rgba(255, 255, 255, 0.22);
            color: #ffffff;
            transform: translateY(-1px);
            text-decoration: none;
        }

        .header-social-link i,
        .header-social-link svg,
        .header-social-x-mark {
            width: 1rem;
            height: 1rem;
            flex-shrink: 0;
        }

        .header-social-link i {
            font-size: 1rem;
            line-height: 1;
        }

        .header-social-link svg {
            fill: currentColor;
        }

        .header-social-x-mark {
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }
        
        /* Main content container */
        .main-container {
            position: relative;
            z-index: 1;
            min-height: calc(100vh - 140px - 120px); /* Subtract header and footer heights */
            background: transparent;
        }

        .main-container-home {
            width: 100%;
            max-width: none;
            margin: 0;
            padding: 0;
        }

        .main-container-home > main {
            padding-bottom: 0 !important;
        }
        
        /* Footer styles */
        .footerGG {
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 1040; /* High z-index but lower than header */
            background-color: rgba(35, 39, 65, 0.95) !important; /* More opaque */
            backdrop-filter: blur(15px);
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.2);
            padding: 1rem 0;
            min-height: 100px; /* Ensure consistent height */
            position: unset !important;
        }

        .footer-community {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
            line-height: 1.4;
        }

        .footer-social-cluster {
            justify-content: center;
            margin-right: 0;
        }

        .footer-service-status {
            max-width: 980px;
            margin: 0 auto;
        }

        .footer-meta-row {
            margin-top: 1rem;
            padding-top: 1rem;
            border-top: 1px solid rgba(255, 255, 255, 0.14);
            line-height: 1.5;
        }
        
        /* Service status adjustments */
        .service-status {
            width: 100%;
            position: relative;
            background: linear-gradient(180deg, rgba(12, 18, 30, 0.40), rgba(12, 18, 30, 0.26));
            border: 1px solid rgba(255, 255, 255, 0.10);
            padding: 0.7rem;
            border-radius: 1rem;
            box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
            transition: all 0.3s ease;
            z-index: 1055; /* Higher than navbar */
        }

        .service-status-grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 0.65rem;
        }

        .service-status-item {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 0.35rem;
            min-width: 0;
            padding: 0.8rem 0.95rem;
            border-radius: 0.9rem;
            border: 1px solid rgba(255, 255, 255, 0.08);
            background: rgba(255, 255, 255, 0.05);
        }

        .service-status-item.status-offline {
            background: rgba(128, 32, 32, 0.14);
            border-color: rgba(215, 84, 84, 0.22);
        }

        .service-status-item.status-live {
            background: rgba(53, 132, 94, 0.16);
            border-color: rgba(91, 192, 139, 0.24);
        }

        .service-status-name {
            font-size: 0.66rem;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.62);
            font-weight: 600;
        }

        .service-status-value {
            font-size: 0.86rem;
            line-height: 1.35;
            color: rgba(255, 255, 255, 0.94);
            font-weight: 600;
            word-break: break-word;
        }

        .service-status-value b {
            font-weight: 600;
        }

        .service-status-value .text-danger {
            color: #ffcdc7 !important;
        }

        .service-status-value .text-success {
            color: #b7ffd4 !important;
        }
        
        /* Stats status - similar to service status */
        .stats-status {
            width: 100%;
            font-size: 0.9rem;
            position: relative;
            background-color: rgba(102, 126, 234, 0.15);
            padding: 6px;
            border-radius: 4px;
            transition: all 0.3s ease;
            z-index: 1055;
        }
        
        .stats-status strong {
            color: #ffd700;
        }
        
        /* Mobile responsive adjustments */
        @media (max-width: 576px) {
            .service-status {
                padding: 0.55rem;
                margin-top: 0.5rem !important;
            }

            .service-status-grid {
                gap: 0.45rem;
            }

            .service-status-item {
                padding: 0.7rem 0.75rem;
            }

            .service-status-name {
                font-size: 0.58rem;
                letter-spacing: 0.12em;
            }

            .service-status-value {
                font-size: 0.76rem;
                line-height: 1.3;
            }            
            .stats-status {
                font-size: 0.7rem;
                padding: 4px;
                margin-top: 0.5rem !important;
                word-wrap: break-word;
                line-height: 1.2;
            }            
            .footerGG {
                min-height: 120px;
                padding: 0.75rem 0;
            }
            
            .footerGG .container {
                padding: 0 0.5rem;
            }
            
            .footerGG small {
                font-size: 0.7rem !important;
                line-height: 1.2;
            }
            .navbar-brand img {
                max-width: 120px !important;
                height: auto;
            }

            .header-social-link {
                width: 2.45rem;
                height: 2.45rem;
            }
            
            .navbar .container {
                padding: 8px 15px;
            }

            .navbar-toggler {
                padding: 0.25rem 0.5rem;
                font-size: 1rem;
            }
        }
        
        @media (max-width: 768px) {
            .service-status {
                padding: 0.6rem;
            }

            .service-status-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }            
            .stats-status {
                font-size: 0.8rem;
                padding: 5px;
            }            
            .footerGG {
                line-height: 0px !important;
                min-height: 0px !important;
            }
        }
        
        /* Ensure content doesn't get hidden behind fixed elements */
        .container.mt-3 {
            margin-top: 1rem !important; /* Remove top margin since we have body padding */
            margin-bottom: 2rem !important; /* Add bottom margin for spacing above footer */
        }
        
        /* Fix for navbar expansion on small screens */
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background-color: rgba(35, 39, 65, 0.98);
                backdrop-filter: blur(20px);
                border-radius: 0.5rem;
                padding: 1rem;
                margin-top: 0.5rem;
                border: 1px solid rgba(255, 255, 255, 0.15);
                z-index: 1065;
                width: 100% !important;
            }
        
        /* Ensure proper spacing in the navbar */
        .navbar .container {
            padding: 12px 15px;
            position: relative;
            z-index: 1055;
        }

        /* Stack nav items vertically on mobile */
        .navbar-nav {
            flex-direction: column !important;
            width: 100%;
        }
        .nav-item {
            width: 100%;
            text-align: center;
            margin: 0.25rem 0;
        }
        
        .nav-link {
            padding: 0.75rem 1rem !important;
            border-radius: 0.25rem;
            transition: background-color 0.3s ease;
        }

        .nav-link:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }
        
        /* Adjust language selector and login on mobile */
        .navbar-collapse .d-flex {
            margin-top: 1rem;
            padding-top: 1rem;
            border-top: 1px solid rgba(255, 255, 255, 0.15);
        }
        
        /* Make sure all interactive elements are accessible */
        .navbar-brand, .navbar-toggler {
            position: relative;
            z-index: 1055;
        }
        }
        
        .particles-js-canvas-el {
            display: none !important;
        }
        
        /* Make elements interactive */
        .navbar-brand img {
            transition: transform 0.3s ease;
        }
        
        .navbar-brand:hover img {
            transform: scale(1.03);
        }
        
        /* Floating animation for nav links */
        .nav-item {
            position: relative;
            z-index: 1055;
        }
        
        .nav-link {
            position: relative;
            transition: all 0.3s ease;
            overflow: hidden;
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--tp-link-hover);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        /* Card and container effects */
        .card {
            background-color: var(--tp-surface);
            border: 1px solid var(--tp-border);
            backdrop-filter: blur(10px);
            box-shadow: var(--tp-shadow);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            z-index: 2;
        }
        
        .card:hover {
            transform: translateY(-5px);
            box-shadow: var(--tp-shadow);
        }
        
        /* Floating status indicators */
        .status-indicator {
            display: inline-block;
            width: 10px;
            height: 10px;
            border-radius: 50%;
            margin-right: 5px;
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% { transform: scale(1); opacity: 1; }
            50% { transform: scale(1.2); opacity: 0.7; }
            100% { transform: scale(1); opacity: 1; }
        }

        body.home-page-active {
            background: var(--tp-page-background);
            color: var(--tp-text-primary);
        }

        body.editorial-page-active,
        body.identity-page,
        body.subscription-auth-page,
        body.admin-page {
            background: #fcfaf4;
            color: var(--tp-text-primary);
        }

        /* Atmospheric sky banner for non-home pages */
        body.editorial-page-active::before,
        body.identity-page::before,
        body.subscription-auth-page::before,
        body.admin-page::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 420px;
            background:
                linear-gradient(180deg,
                    #1a3a5c 0%,
                    #2a5580 18%,
                    #3d7ab5 36%,
                    rgba(100, 160, 210, 0.45) 56%,
                    rgba(160, 200, 230, 0.18) 74%,
                    transparent 100%),
                radial-gradient(ellipse 140% 70% at 65% 0%,
                    rgba(80, 150, 220, 0.25) 0%,
                    transparent 55%),
                radial-gradient(ellipse 100% 50% at 25% 5%,
                    rgba(120, 180, 240, 0.15) 0%,
                    transparent 50%);
            z-index: 0;
            pointer-events: none;
        }

        body.editorial-page-active .main-container,
        body.identity-page .main-container,
        body.subscription-auth-page .main-container,
        body.admin-page .main-container {
            position: relative;
            z-index: 1;
        }

        body.home-page-active header {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
        }

        body.home-page-active .navbar > .container {
            position: relative;
            display: block !important;
            padding-top: 0.55rem;
            padding-bottom: 0.55rem;
            min-height: 4.3rem;
        }

        body.home-page-active .header-brand-row {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: auto;
            min-height: 0;
            z-index: 2;
        }

        body.home-page-active .header-brand-row .navbar-brand {
            margin: 0;
        }

        body.home-page-active .navbar-collapse .d-flex {
            display: grid !important;
            grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
            align-items: center;
            gap: 0.75rem;
        }

        body.home-page-active .navbar-nav {
            flex-direction: row !important;
            flex-wrap: wrap;
            justify-content: flex-start;
            gap: 0;
            padding-right: 6.25rem;
        }

        body.home-page-active .nav-item {
            width: auto;
            margin: 0;
        }

        body.home-page-active .nav-link {
            font-size: 0.8rem;
            letter-spacing: 0.08em;
            padding: 0.3rem 0.48rem !important;
        }

        body.home-page-active .header-utility-group {
            justify-content: flex-end;
            gap: 0.4rem;
            padding-left: 6.25rem;
        }

        body.home-page-active .header-bg {
            background: transparent !important;
            border-color: transparent !important;
            box-shadow: none !important;
            backdrop-filter: none;
            -webkit-backdrop-filter: none;
        }

        body.editorial-page-active .header-bg,
        body.identity-page .header-bg,
        body.subscription-auth-page .header-bg,
        body.admin-page .header-bg {
            background: rgba(20, 50, 80, 0.65) !important;
            border-color: rgba(60, 120, 180, 0.18) !important;
            box-shadow: 0 18px 40px rgba(10, 30, 50, 0.12);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
        }

        body.home-page-active .navbar-brand img {
            filter: brightness(0) invert(1) drop-shadow(0 10px 24px rgba(0, 0, 0, 0.28));
        }

        body.editorial-page-active .navbar-brand img,
        body.identity-page .navbar-brand img,
        body.subscription-auth-page .navbar-brand img,
        body.admin-page .navbar-brand img {
            filter: brightness(0) invert(1) drop-shadow(0 10px 24px rgba(0, 0, 0, 0.28));
        }

        body.home-page-active .nav-link {
            color: rgb(var(--tp-ivory-rgb) / 0.92) !important;
        }

        body.editorial-page-active header .nav-link,
        body.identity-page header .nav-link,
        body.subscription-auth-page header .nav-link,
        body.admin-page header .nav-link {
            color: rgba(255, 255, 255, 0.90) !important;
        }

        body.home-page-active .nav-link:hover {
            color: rgb(var(--tp-ivory-rgb) / 1) !important;
            background-color: rgb(var(--tp-surface-rgb) / 0.08);
        }

        body.editorial-page-active header .nav-link:hover,
        body.identity-page header .nav-link:hover,
        body.subscription-auth-page header .nav-link:hover,
        body.admin-page header .nav-link:hover {
            color: rgba(255, 255, 255, 1) !important;
            background-color: rgba(255, 255, 255, 0.10);
        }

        body.home-page-active .nav-link::after {
            background: rgb(var(--tp-ivory-rgb) / 0.88);
            height: 1px;
        }

        body.editorial-page-active header .nav-link::after,
        body.identity-page header .nav-link::after,
        body.subscription-auth-page header .nav-link::after,
        body.admin-page header .nav-link::after {
            background: rgba(255, 255, 255, 0.88);
            height: 1px;
        }

        body.home-page-active .service-status,
        body.editorial-page-active .service-status {
            background: var(--tp-service-status-bg);
            border: 1px solid var(--tp-header-border);
            color: var(--tp-text-primary);
            box-shadow: var(--tp-shadow);
        }

        body.home-page-active .service-status-item,
        body.editorial-page-active .service-status-item {
            background: var(--tp-service-status-item-bg);
            border-color: var(--tp-border);
        }

        body.home-page-active .service-status-item.status-offline,
        body.editorial-page-active .service-status-item.status-offline {
            background: var(--tp-service-status-offline-bg);
            border-color: var(--tp-danger);
        }

        body.home-page-active .service-status-item.status-live,
        body.editorial-page-active .service-status-item.status-live {
            background: var(--tp-service-status-live-bg);
            border-color: var(--tp-success);
        }

        body.home-page-active .service-status-name,
        body.editorial-page-active .service-status-name {
            color: var(--tp-text-muted);
        }

        body.home-page-active .service-status-value,
        body.editorial-page-active .service-status-value {
            color: var(--tp-text-primary);
        }

        body.home-page-active .service-status-value .text-danger,
        body.editorial-page-active .service-status-value .text-danger {
            color: var(--tp-danger) !important;
        }

        body.home-page-active .service-status-value .text-success,
        body.editorial-page-active .service-status-value .text-success {
            color: var(--tp-success) !important;
        }

        body.home-page-active .header-social-link {
            background: rgb(var(--tp-surface-rgb) / 0.08);
            border-color: rgb(var(--tp-surface-rgb) / 0.16);
            color: rgb(var(--tp-ivory-rgb) / 0.88);
            box-shadow: none;
        }

        body.editorial-page-active .header-social-link,
        body.identity-page .header-social-link,
        body.subscription-auth-page .header-social-link,
        body.admin-page .header-social-link {
            background: rgb(var(--tp-slate-rgb) / 0.05);
            border-color: var(--tp-header-border);
            color: var(--tp-nav-link);
            box-shadow: none;
        }

        body.home-page-active .header-social-link:hover {
            background: rgb(var(--tp-surface-rgb) / 0.92);
            border-color: rgb(var(--tp-surface-rgb) / 0.92);
            color: var(--tp-accent-strong);
        }

        body.editorial-page-active .header-social-link:hover,
        body.identity-page .header-social-link:hover,
        body.subscription-auth-page .header-social-link:hover,
        body.admin-page .header-social-link:hover {
            background: rgb(var(--tp-slate-rgb) / 0.08);
            border-color: var(--tp-border-strong);
            color: var(--tp-nav-link-hover);
        }

        body.home-page-active .footerGG {
            background: linear-gradient(180deg, rgb(var(--tp-shadow-rgb) / 0.86) 0%, rgb(var(--tp-shadow-rgb) / 0.92) 100%) !important;
            border-top: 1px solid rgb(var(--tp-surface-rgb) / 0.10);
            box-shadow: 0 -18px 36px rgba(0, 0, 0, 0.16);
            color: rgb(var(--tp-ivory-rgb) / 0.82) !important;
        }

        body.editorial-page-active .footerGG,
        body.identity-page .footerGG,
        body.subscription-auth-page .footerGG,
        body.admin-page .footerGG {
            --bs-secondary-color: #2a1f0e !important;
            position: relative;
            z-index: 2;
            isolation: isolate;
            background:
                linear-gradient(180deg, #ede0cc 0%, #ddd0b0 20%, #d4c49e 45%, #ccba92 70%, #c4ae82 100%) !important;
            border-top: none !important;
            box-shadow: none !important;
            color: #2a1f0e !important;
            overflow: hidden;
        }

        /* Sand grain noise overlay using SVG feTurbulence */
        body.editorial-page-active .footerGG::before,
        body.identity-page .footerGG::before,
        body.subscription-auth-page .footerGG::before,
        body.admin-page .footerGG::before {
            content: '';
            position: absolute;
            inset: 0;
            background: #c8b48a;
            filter: url(#sandGrain);
            opacity: 0.55;
            mix-blend-mode: multiply;
            z-index: 0;
            pointer-events: none;
        }

        /* Ensure footer content sits above the noise layer */
        body.editorial-page-active .footerGG > .container,
        body.identity-page .footerGG > .container,
        body.subscription-auth-page .footerGG > .container,
        body.admin-page .footerGG > .container {
            position: relative;
            z-index: 1;
        }

        body.editorial-page-active .footerGG *,
        body.identity-page .footerGG *,
        body.subscription-auth-page .footerGG *,
        body.admin-page .footerGG * {
            --bs-secondary-color: #2a1f0e !important;
            color: #2a1f0e !important;
        }

        body.editorial-page-active .footer-copyright,
        body.identity-page .footer-copyright,
        body.subscription-auth-page .footer-copyright,
        body.admin-page .footer-copyright {
            color: #000 !important;
            font-weight: 600;
        }

        body.editorial-page-active .footer-copyright a,
        body.identity-page .footer-copyright a,
        body.subscription-auth-page .footer-copyright a,
        body.admin-page .footer-copyright a {
            color: #000 !important;
            font-weight: 600;
            text-decoration: underline;
        }

        body.home-page-active .footer-meta-row {
            border-top-color: var(--tp-header-border);
        }

        body.editorial-page-active .footer-meta-row,
        body.identity-page .footer-meta-row,
        body.subscription-auth-page .footer-meta-row,
        body.admin-page .footer-meta-row {
            border-top-color: rgba(160, 140, 100, 0.30);
        }

        body.home-page-active .footerGG a {
            color: rgb(var(--tp-ivory-rgb) / 0.88);
        }

        body.editorial-page-active .footerGG a,
        body.identity-page .footerGG a,
        body.subscription-auth-page .footerGG a,
        body.admin-page .footerGG a {
            color: #2a1f0e !important;
            text-decoration: underline;
            text-decoration-color: rgba(42, 31, 14, 0.40);
        }

        body.editorial-page-active .footerGG .text-muted,
        body.identity-page .footerGG .text-muted,
        body.subscription-auth-page .footerGG .text-muted,
        body.admin-page .footerGG .text-muted {
            color: #2a1f0e !important;
        }

        body.home-page-active .navbar-toggler {
            border-color: rgb(var(--tp-surface-rgb) / 0.24);
            padding: 0.3rem 0.55rem;
        }

        body.editorial-page-active .navbar-toggler,
        body.identity-page .navbar-toggler,
        body.subscription-auth-page .navbar-toggler,
        body.admin-page .navbar-toggler {
            border-color: var(--tp-header-border);
        }

        body.home-page-active .navbar-toggler:focus {
            box-shadow: 0 0 0 0.2rem rgb(var(--tp-surface-rgb) / 0.18);
        }

        body.editorial-page-active .navbar-toggler:focus,
        body.identity-page .navbar-toggler:focus,
        body.subscription-auth-page .navbar-toggler:focus,
        body.admin-page .navbar-toggler:focus {
            box-shadow: 0 0 0 0.2rem rgb(var(--tp-slate-rgb) / 0.14);
        }

        body.home-page-active .navbar-toggler-icon {
            filter: brightness(0) invert(1);
        }

        body.editorial-page-active .navbar-toggler-icon,
        body.identity-page .navbar-toggler-icon,
        body.subscription-auth-page .navbar-toggler-icon,
        body.admin-page .navbar-toggler-icon {
            filter: none;
        }

        body.home-page-active .navbar-collapse {
            background-color: transparent;
            border: 0;
            box-shadow: none;
        }

        body.editorial-page-active .navbar-collapse,
        body.identity-page .navbar-collapse,
        body.subscription-auth-page .navbar-collapse,
        body.admin-page .navbar-collapse {
            background-color: transparent;
            border: 0;
            box-shadow: none;
            backdrop-filter: none;
            -webkit-backdrop-filter: none;
        }

        @media (max-width: 991.98px) {
            header .navbar > .container {
                display: flex !important;
                flex-direction: column;
                min-height: 0;
            }

            .header-brand-row {
                position: relative;
                top: auto;
                left: auto;
                transform: none;
                display: flex;
                align-items: center;
                justify-content: center;
                width: 100%;
                min-height: 4rem;
                z-index: 1096;
            }

            .header-brand-row .navbar-brand {
                display: flex;
                justify-content: center;
                width: 100%;
            }

            .header-brand-row .navbar-brand img {
                max-width: 156px !important;
                width: 100%;
                height: auto;
            }

            body.home-page-active .navbar-collapse {
                background-color: transparent;
                backdrop-filter: none;
                -webkit-backdrop-filter: none;
                border: 0;
                box-shadow: none;
                margin-top: 0;
            }

            body.home-page-active .navbar-collapse:not(.show) {
                display: none !important;
                visibility: hidden !important;
            }

            body.home-page-active .navbar-collapse.show {
                display: block !important;
                visibility: visible !important;
                position: fixed;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                padding: 6.5rem 1.25rem 1.75rem;
                background-color: rgb(0 0 0 / 0.18);
                backdrop-filter: blur(12px);
                -webkit-backdrop-filter: blur(12px);
                border: 0;
                border-radius: 0;
                box-shadow: none;
                z-index: 1085;
                max-height: 100svh;
                overflow-y: auto;
            }

            body.home-page-active .navbar-collapse .d-flex {
                display: flex !important;
                flex-direction: column;
                gap: 1rem;
                border-top: 0;
                padding-top: 0;
                margin-top: 0;
                align-items: center !important;
            }

            body.home-page-active .navbar-nav {
                flex-direction: column !important;
                width: 100%;
                gap: 0;
                padding-right: 0;
                align-items: center;
            }

            body.home-page-active .nav-item {
                width: 100%;
                text-align: center;
                margin: 0.25rem 0;
            }

            body.home-page-active .header-utility-group {
                width: 100%;
                justify-content: center;
                gap: 0.85rem;
                padding-left: 0;
                margin-top: 0.5rem !important;
            }

            body.home-page-active .navbar-collapse .d-flex {
                border-top-color: transparent;
            }

            body.editorial-page-active .navbar-collapse,
            body.identity-page .navbar-collapse,
            body.subscription-auth-page .navbar-collapse,
            body.admin-page .navbar-collapse {
                background-color: transparent;
                backdrop-filter: none;
                -webkit-backdrop-filter: none;
                border: 0;
                box-shadow: none;
                margin-top: 0;
            }

            body.editorial-page-active .navbar-collapse:not(.show),
            body.identity-page .navbar-collapse:not(.show),
            body.subscription-auth-page .navbar-collapse:not(.show),
            body.admin-page .navbar-collapse:not(.show) {
                display: none !important;
                visibility: hidden !important;
            }

            body.editorial-page-active .navbar-collapse.show,
            body.identity-page .navbar-collapse.show,
            body.subscription-auth-page .navbar-collapse.show,
            body.admin-page .navbar-collapse.show {
                display: block !important;
                visibility: visible !important;
                position: fixed;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                padding: 6.5rem 1.25rem 1.75rem;
                background-color: rgb(var(--tp-cream-rgb) / 0.94);
                backdrop-filter: blur(16px);
                -webkit-backdrop-filter: blur(16px);
                border: 0;
                border-radius: 0;
                box-shadow: none;
                z-index: 1085;
                max-height: 100svh;
                overflow-y: auto;
            }

            body.editorial-page-active .navbar-collapse > .d-flex,
            body.identity-page .navbar-collapse > .d-flex,
            body.subscription-auth-page .navbar-collapse > .d-flex,
            body.admin-page .navbar-collapse > .d-flex {
                display: flex !important;
                flex-direction: column;
                gap: 1rem;
                border-top: 0;
                padding-top: 0;
                margin-top: 0;
                align-items: center !important;
            }

            body.editorial-page-active .navbar-collapse > .d-flex > .navbar-nav,
            body.identity-page .navbar-collapse > .d-flex > .navbar-nav,
            body.subscription-auth-page .navbar-collapse > .d-flex > .navbar-nav,
            body.admin-page .navbar-collapse > .d-flex > .navbar-nav {
                flex-direction: column !important;
                width: 100%;
                gap: 0;
                padding-right: 0;
                align-items: center;
            }

            body.editorial-page-active .navbar-collapse > .d-flex > .navbar-nav .nav-item,
            body.identity-page .navbar-collapse > .d-flex > .navbar-nav .nav-item,
            body.subscription-auth-page .navbar-collapse > .d-flex > .navbar-nav .nav-item,
            body.admin-page .navbar-collapse > .d-flex > .navbar-nav .nav-item {
                width: 100%;
                text-align: center;
                margin: 0.25rem 0;
            }

            body.editorial-page-active .header-utility-group,
            body.identity-page .header-utility-group,
            body.subscription-auth-page .header-utility-group,
            body.admin-page .header-utility-group {
                width: 100%;
                justify-content: center;
                gap: 0.85rem;
                padding-left: 0;
                margin-top: 0.5rem !important;
            }
        }
