        :root {
            --primary-accent: #3b82f6;
            --glass-bg: rgba(255, 255, 255, 0.65);
            --glass-border: rgba(255, 255, 255, 0.4);
            --bg-gradient: linear-gradient(135deg, #3073B7 0%, #3d8fe2 100%);
        }

        [data-bs-theme="dark"] {
            --glass-bg: rgba(23, 23, 23, 0.7);
            --glass-border: rgba(255, 255, 255, 0.08);
            --bg-gradient: linear-gradient(135deg, #15304c 0%, #1c456e 100%);
        }

        body {
            font-family: 'Inter', sans-serif;
            background: var(--bg-gradient);
            background-attachment: fixed;
            min-height: 100vh;
            color: var(--bs-body-color);
            transition: background 0.5s ease;
            padding-bottom: 120px;
        }

        h1, h4, .card-title {
            font-family: 'Plus Jakarta Sans', sans-serif;
        }

        /* Glassmorphism Effect */
        .glass-card {
            background: var(--glass-bg) !important;
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border: 1px solid var(--glass-border) !important;
            border-radius: 24px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            overflow: hidden;
        }

        .glass-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.12);
        }

        /* Top Banner - Mesh Gradient Look */
        .hero-section {
            padding: 4rem 0;
            margin-bottom: 2rem;
            position: relative;
        }

        .hero-title {
            font-weight: 800;
            letter-spacing: -1px;
            font-size: 3.5rem;
        }

        /* Nav/Status Bar */
        .top-nav {
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        /* The Bento Grid Adjustments */
        .bento-tall { min-height: 450px; }
        
        .card-img-modern {
            height: 180px;
            object-fit: cover;
            opacity: 0.9;
            transition: opacity 0.3s ease;
        }
        
        .glass-card:hover .card-img-modern {
            opacity: 1;
        }

        .btn-modern {
            border-radius: 12px;
            padding: 10px 20px;
            font-weight: 600;
            transition: all 0.2s;
        }

        /* Floating Cat Easter Egg */
        .cat-accent {
            position: absolute;
            right: 20px;
            bottom: -15px;
            font-size: 10rem;
            opacity: 0;
            transition: all 0.3s ease;
            pointer-events: none;
        }

        .glass-card:hover .cat-accent {
            opacity: 0.2;
            transform: translateY(-10px) rotate(10deg);
        }

        .background-graphic {
            position: fixed;
            bottom: 100px;
            right: 10px;
            font-size: 50rem;
            opacity: 0.1;
            transition: all 0.3s ease;
            transform: translateY(-10px);
            pointer-events: none;
        }

        /* Custom Switch */
        .form-check-input:checked {
            background-color: var(--primary-accent);
            border-color: var(--primary-accent);
        }

        footer {
            backdrop-filter: blur(10px);
            background: rgba(0,0,0,0.05);
            border-top: 1px solid var(--glass-border);
        }
        
        .status-dot {
            height: 10px;
            width: 10px;
            background-color: #10b981;
            border-radius: 50%;
            display: inline-block;
            margin-right: 8px;
            box-shadow: 0 0 8px #10b981;
        }
        
        /*custom*/
        .top-logo{
            pointer-events: none !important;
            max-height: 120px !important;
        }
        .pusheen{
            pointer-events: none !important;
            max-height: 60px !important;
        }
        .img-button{
            max-height:32px !important;
        }
        .icon{
            border-radius: 22.5%;
            max-height:64px ;
            pointer-events: none;
        }