* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, 'Inter', sans-serif;
            background: #f8fafc;
            color: #0f172a;
            line-height: 1.5;
            scroll-behavior: smooth;
        }

        .container-main {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .site-top-bar {
            background: #0b2b40;
            color: #fef9e3;
            padding: 8px 0;
            font-size: 13px;
            text-align: center;
            font-weight: 500;
            letter-spacing: 0.3px;
        }

        .site-header {
            background: linear-gradient(135deg, #1f3a5f 0%, #3b2b6b 100%);
            padding: 18px 0;
            box-shadow: 0 8px 20px rgba(0,0,0,0.08);
        }

        .header-flex {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 20px;
        }

        .brand-container {
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .brand-icon {
            font-size: 2.2rem;
            background: white;
            color: #1f3a5f;
            width: 52px;
            height: 52px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            box-shadow: 0 6px 12px rgba(0,0,0,0.15);
        }

        .brand-details h1 {
            font-size: 1.7rem;
            font-weight: 800;
            color: white;
            letter-spacing: -0.3px;
        }

        .brand-details p {
            font-size: 0.75rem;
            font-weight: 500;
            color: #ffecb3;
        }

        .action-group {
            display: flex;
            align-items: center;
            gap: 12px;
            background: rgba(0,0,0,0.2);
            padding: 6px 18px;
            border-radius: 60px;
            backdrop-filter: blur(4px);
            flex-wrap: wrap;
        }

        .live-status-badge {
            background: #c2410c;
            color: white;
            padding: 8px 20px;
            border-radius: 60px;
            font-weight: 800;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 8px;
            box-shadow: 0 0 10px rgba(194, 65, 12, 0.6);
            transition: all 0.2s ease;
            letter-spacing: 0.5px;
            border: 1px solid rgba(255,255,255,0.25);
        }

        .live-status-badge i {
            font-size: 1rem;
            animation: pulseLive 1s infinite;
        }

        @keyframes pulseLive {
            0% { opacity: 1; transform: scale(1);}
            50% { opacity: 0.6; transform: scale(1.1);}
            100% { opacity: 1; transform: scale(1);}
        }

        .live-status-badge.highlight-pulse {
            background: #ea580c;
            box-shadow: 0 0 18px #ea580c, 0 0 6px #fdba74;
            animation: intenseGlowAlert 1.2s infinite alternate;
        }

        @keyframes intenseGlowAlert {
            0% { box-shadow: 0 0 6px #c2410c; background: #c2410c; }
            100% { box-shadow: 0 0 20px #f97316; background: #ea580c; }
        }

        .trending-module {
            font-weight: 700;
            font-size: 1rem;
            color: white;
            background: rgba(0,0,0,0.5);
            padding: 6px 16px;
            border-radius: 40px;
            display: flex;
            align-items: center;
            gap: 8px;
            backdrop-filter: blur(4px);
            letter-spacing: 0.3px;
        }

        .trending-module span {
            background: #f59e0b;
            color: #0f172a;
            padding: 4px 12px;
            border-radius: 40px;
            font-weight: 800;
            min-width: 110px;
            text-align: center;
        }

        .youtube-subscribe-link {
            background: #b91c1c;
            padding: 6px 14px;
            border-radius: 40px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 0.85rem;
            font-weight: 700;
            transition: 0.2s;
            text-decoration: none;
            color: white;
        }

        .youtube-subscribe-link:hover {
            background: #991b1b;
            transform: scale(1.02);
        }

        .primary-navigation {
            background: #0b2b40;
            border-top: 1px solid #1f3a5f;
            border-bottom: 1px solid #1f3a5f;
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .nav-list {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            gap: 4px;
        }

        .nav-list li a {
            display: inline-block;
            padding: 14px 20px;
            color: #f1f5f9;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            transition: 0.25s;
            border-radius: 6px;
        }

        .nav-list li a:hover, .nav-list li a.active-page {
            background: #ea580c;
            color: white;
        }

        .mobile-menu-toggle {
            display: none;
            background: #ea580c;
            color: white;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            padding: 10px 16px;
            border-radius: 12px;
            transition: 0.2s;
            width: 48px;
            height: 48px;
            align-items: center;
            justify-content: center;
        }

        .mobile-menu-toggle:hover {
            background: #f59e0b;
            color: #0f172a;
        }

        .alert-notification-panel {
            background: #fff9ef;
            border-left: 6px solid #ea580c;
            border-radius: 20px;
            margin: 24px 0;
            overflow: hidden;
            box-shadow: 0 8px 18px rgba(0,0,0,0.08);
        }

        .alert-flex {
            display: flex;
            align-items: center;
            padding: 14px 20px;
            gap: 14px;
            flex-wrap: wrap;
            background: #fffdf7;
        }

        .alert-live-tag {
            background: #ea580c;
            color: white;
            padding: 6px 16px;
            border-radius: 40px;
            font-size: 0.8rem;
            font-weight: 800;
            letter-spacing: 1px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            animation: blinkUrgent 1s step-start infinite;
            box-shadow: 0 0 6px #f97316;
            white-space: nowrap;
        }

        @keyframes blinkUrgent {
            0%, 100% { opacity: 1; background: #ea580c; }
            50% { opacity: 0.75; background: #f97316; }
        }

        .rolling-message {
            flex: 1;
            font-weight: 700;
            color: #0f172a;
            font-size: 1rem;
            background: #fff2e0;
            padding: 8px 16px;
            border-radius: 50px;
            display: flex;
            align-items: center;
            gap: 10px;
            word-break: break-word;
        }

        .timestamp-badge {
            font-size: 0.7rem;
            color: #334155;
            background: #e9ecef;
            padding: 5px 12px;
            border-radius: 30px;
            font-weight: 500;
            white-space: nowrap;
        }

        .service-shortcuts {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            justify-content: space-between;
            background: white;
            padding: 24px 20px;
            border-radius: 24px;
            margin: 28px 0;
            box-shadow: 0 8px 24px rgba(0,0,0,0.05);
        }

        .shortcut-card {
            flex: 1;
            min-width: 100px;
            text-align: center;
            background: #ffffff;
            padding: 14px 10px;
            border-radius: 20px;
            transition: all 0.25s;
            text-decoration: none;
            color: #1e293b;
            border: 1px solid #eef2ff;
        }

        .shortcut-card i {
            font-size: 1.8rem;
            background: #eef2ff;
            padding: 12px;
            border-radius: 50%;
            width: 52px;
            height: 52px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 10px;
            color: #ea580c;
        }

        .shortcut-card span {
            display: block;
            font-weight: 700;
            font-size: 0.85rem;
        }

        .shortcut-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 20px rgba(0,0,0,0.1);
            border-color: #f59e0b;
        }

        .feature-grid-primary {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
            margin: 40px 0 30px;
        }

        .educational-card {
            background: white;
            border-radius: 28px;
            box-shadow: 0 12px 30px rgba(0,0,0,0.06);
            overflow: hidden;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            height: 100%;
            border: 1px solid #eef2ff;
        }

        .educational-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 35px rgba(0,0,0,0.1);
        }

        .card-header-professional {
            background: linear-gradient(110deg, #1f3a5f 0%, #3b2b6b 100%);
            padding: 18px 22px;
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .card-header-professional i {
            font-size: 1.8rem;
            background: rgba(255,255,255,0.2);
            padding: 10px;
            border-radius: 16px;
        }

        .card-header-professional h2 {
            font-size: 1.35rem;
            font-weight: 700;
            color: white;
            margin: 0;
        }

        .formal-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .formal-list li {
            border-bottom: 1px solid #f0f2f8;
        }

        .formal-list li a {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 14px 20px;
            text-decoration: none;
            color: #1e293b;
            font-weight: 500;
            transition: all 0.2s;
            font-size: 0.9rem;
        }

        .formal-list li a i {
            color: #f59e0b;
            font-size: 0.7rem;
            flex-shrink: 0;
        }

        .formal-list li a:hover {
            background: #f8fafc;
            padding-left: 28px;
            color: #ea580c;
        }

        .card-footer-action {
            display: block;
            background: #f8fafc;
            text-align: center;
            padding: 14px;
            font-weight: 700;
            text-decoration: none;
            color: #ea580c;
            border-top: 1px solid #e9eef3;
            transition: 0.2s;
            margin-top: auto;
            font-size: 0.9rem;
        }

        .card-footer-action i {
            margin-left: 6px;
            transition: 0.2s;
        }

        .card-footer-action:hover {
            background: #eef2ff;
            color: #f59e0b;
        }

        .feature-grid-secondary {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
            margin: 20px 0 48px;
        }

        .info-educational-block {
            background: white;
            border-radius: 28px;
            padding: 28px 32px;
            margin: 40px 0;
            box-shadow: 0 6px 14px rgba(0,0,0,0.03);
            border: 1px solid #eef2ff;
        }

        .info-educational-block h3 {
            color: #1f3a5f;
            font-size: 1.4rem;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        /* ===== FULLY RESPONSIVE AUTHOR SECTION (FIXED & ENHANCED) ===== */
        .author-showcase {
            background: linear-gradient(135deg, #fef9e6 0%, #ffffff 100%);
            border-radius: 32px;
            padding: clamp(20px, 5vw, 40px);
            margin: 40px 0 30px;
            box-shadow: 0 12px 30px rgba(0,0,0,0.08);
            border: 1px solid rgba(234, 88, 12, 0.2);
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: clamp(1rem, 5vw, 2.5rem);
        }

        .author-avatar-figure {
            flex-shrink: 0;
            display: flex;
            justify-content: center;
        }

        .author-avatar-figure img {
            width: min(120px, 28vw);
            height: auto;
            aspect-ratio: 1 / 1;
            border-radius: 50%;
            object-fit: cover;
            border: 4px solid #ea580c;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
            background: #fff;
            transition: transform 0.2s ease;
        }

        .author-avatar-figure img:hover {
            transform: scale(1.02);
        }

        .author-info-area {
            flex: 1;
            min-width: 180px;
        }

        .author-info-area h3 {
            font-size: clamp(1.4rem, 5vw, 1.9rem);
            color: #0f172a;
            margin-bottom: 6px;
            display: flex;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
            row-gap: 6px;
        }

        .author-designation {
            color: #ea580c;
            font-weight: 600;
            margin-bottom: 12px;
            font-size: clamp(0.85rem, 3vw, 1rem);
            letter-spacing: 0.2px;
        }

        .author-bio {
            color: #334155;
            line-height: 1.6;
            margin-bottom: 18px;
            font-size: clamp(0.85rem, 3vw, 1rem);
            word-break: break-word;
            overflow-wrap: break-word;
        }

        .author-social-links {
            display: flex;
            gap: 15px;
            margin-top: 12px;
            flex-wrap: wrap;
            justify-content: flex-start;
        }

        .author-social-links a {
            background: #eef2ff;
            width: 38px;
            height: 38px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: #ea580c;
            font-size: 1.2rem;
            transition: all 0.2s ease;
            text-decoration: none;
        }

        .author-social-links a:hover {
            background: #ea580c;
            color: white;
            transform: translateY(-3px);
        }

        /* Tablet and small desktop adjustments */
        @media (max-width: 768px) {
            .author-showcase {
                flex-direction: column;
                text-align: center;
                gap: 1.5rem;
            }
            .author-info-area {
                text-align: center;
            }
            .author-social-links {
                justify-content: center;
            }
            .author-info-area h3 {
                justify-content: center;
            }
            .author-avatar-figure img {
                width: min(110px, 25vw);
            }
        }

        /* Extra small devices (phones, 480px and below) */
        @media (max-width: 480px) {
            .author-showcase {
                padding: 20px 18px;
                margin: 30px 0 25px;
            }
            .author-avatar-figure img {
                width: 90px;
                border-width: 3px;
            }
            .author-info-area h3 {
                font-size: 1.4rem;
                gap: 6px;
            }
            .author-designation {
                font-size: 0.8rem;
                margin-bottom: 8px;
            }
            .author-bio {
                font-size: 0.85rem;
                line-height: 1.5;
                margin-bottom: 14px;
            }
            .author-social-links a {
                width: 34px;
                height: 34px;
                font-size: 1rem;
            }
        }

        /* Very small devices (375px and narrower) */
        @media (max-width: 375px) {
            .author-avatar-figure img {
                width: 80px;
            }
            .author-info-area h3 {
                font-size: 1.3rem;
            }
            .author-bio {
                font-size: 0.8rem;
            }
            .author-social-links {
                gap: 12px;
            }
            .author-social-links a {
                width: 32px;
                height: 32px;
                font-size: 0.9rem;
            }
        }

        .site-footer {
            background: #0b2b40;
            color: #cbd5e1;
            margin-top: 50px;
            padding: 45px 0 25px;
        }

        .footer-layout {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 35px;
            margin-bottom: 35px;
        }

        .footer-section h4 {
            color: white;
            margin-bottom: 18px;
            font-size: 1.1rem;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li a {
            color: #b9c8e0;
            text-decoration: none;
            line-height: 2.2;
            font-size: 0.85rem;
            transition: 0.2s;
        }

        .footer-section ul li a:hover {
            color: #f59e0b;
            padding-left: 4px;
        }

        .social-network {
            display: flex;
            gap: 18px;
            margin-top: 8px;
            flex-wrap: wrap;
        }

        .social-network a {
            background: #ea580c;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            transition: 0.2s;
        }

        .social-network a:hover {
            background: #f59e0b;
            color: #0f172a;
            transform: translateY(-3px);
        }

        .copyright-text {
            text-align: center;
            padding-top: 25px;
            border-top: 1px solid #1f3a5f;
            font-size: 0.8rem;
        }

        .back-to-top-control {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: #ea580c;
            color: white;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
            transition: 0.2s;
            z-index: 99;
            border: none;
        }

        /* Global responsive tweaks */
        @media (max-width: 1024px) {
            .feature-grid-primary, .feature-grid-secondary { gap: 20px; }
        }

        @media (max-width: 900px) {
            .feature-grid-primary, .feature-grid-secondary { grid-template-columns: repeat(2, 1fr); }
        }

        @media (max-width: 768px) {
            .action-group {
                gap: 8px;
                padding: 5px 12px;
            }
            .live-status-badge {
                padding: 5px 14px;
                font-size: 0.75rem;
                gap: 6px;
            }
            .trending-module {
                font-size: 0.75rem;
                padding: 4px 12px;
            }
            .trending-module span {
                min-width: 80px;
                font-size: 0.7rem;
                padding: 2px 8px;
            }
            .youtube-subscribe-link {
                padding: 5px 10px;
                font-size: 0.7rem;
            }
            .alert-live-tag {
                padding: 4px 12px;
                font-size: 0.7rem;
            }
            .rolling-message {
                font-size: 0.8rem;
                padding: 6px 12px;
            }
            .timestamp-badge {
                font-size: 0.6rem;
                padding: 4px 8px;
            }
            .alert-flex {
                padding: 12px 16px;
                gap: 10px;
            }
        }

        @media (max-width: 640px) {
            .feature-grid-primary, .feature-grid-secondary { grid-template-columns: 1fr; }
            .container-main { padding: 0 18px; }
            .nav-list {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #0b2b40;
                position: absolute;
                top: 100%;
                left: 0;
                padding: 16px 20px;
                border-radius: 0 0 24px 24px;
                box-shadow: 0 20px 30px rgba(0,0,0,0.2);
                z-index: 200;
            }
            .nav-list.show-mobile { display: flex; }
            .mobile-menu-toggle { display: flex; }
            .header-flex { flex-direction: column; text-align: center; }
            .action-group { justify-content: center; width: 100%; }
            .alert-flex { flex-direction: column; align-items: stretch; }
            .service-shortcuts { gap: 12px; }
            .brand-details h1 { font-size: 1.4rem; }
            .brand-icon { width: 44px; height: 44px; font-size: 1.8rem; }
            .live-status-badge {
                padding: 4px 12px;
                font-size: 0.7rem;
            }
            .trending-module span {
                min-width: 70px;
                font-size: 0.65rem;
            }
            .youtube-subscribe-link {
                padding: 4px 9px;
                font-size: 0.65rem;
            }
        }

        @media (max-width: 480px) {
            .brand-details h1 { font-size: 1.3rem; }
            .live-status-badge {
                padding: 3px 10px;
                font-size: 0.65rem;
            }
            .trending-module span {
                min-width: 60px;
                font-size: 0.6rem;
            }
            .rolling-message {
                font-size: 0.75rem;
                padding: 5px 10px;
            }
            .alert-live-tag {
                font-size: 0.6rem;
                padding: 3px 9px;
            }
        }
   



           .legal-container {
            max-width: 1280px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .info-educational-block {
            background: #ffffff;
            border-radius: 1.25rem;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.03), 0 2px 6px rgba(0, 0, 0, 0.05);
            padding: 1.25rem 1.5rem;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            border-left: 5px solid #ea580c;
        }

        .info-educational-block:hover {
            box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.1);
            transform: translateY(-2px);
        }

        .info-educational-block h3 {
            font-size: 1.65rem;
            font-weight: 700;
            margin-bottom: 1.25rem;
            display: flex;
            align-items: center;
            gap: 12px;
            color: #0f172a;
            border-bottom: 2px solid #f1f5f9;
            padding-bottom: 0.6rem;
        }

        .info-educational-block h3 i {
            color: #ea580c;
            font-size: 1.7rem;
            width: 1.8rem;
        }

        .info-educational-block p {
            margin-bottom: 1rem;
            font-size: 1rem;
            color: #334155;
        }

        .info-educational-block h4 {
            font-size: 1.2rem;
            font-weight: 600;
            margin: 1.25rem 0 0.5rem 0;
            color: #0f172a;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .info-educational-block h4 i {
            color: #ea580c;
            font-size: 1.1rem;
        }

        .info-educational-block ul, .policy-list {
            margin: 0.75rem 0 1rem 1.8rem;
            list-style-type: none;
        }

        .info-educational-block li {
            margin-bottom: 0.6rem;
            position: relative;
            padding-left: 1.5rem;
            color: #2c3e50;
        }

        .info-educational-block li::before {
            content: "▹";
            color: #ea580c;
            position: absolute;
            left: 0;
            font-weight: bold;
        }

        .highlight-badge {
            background: #fff7ed;
            border-radius: 48px;
            padding: 0.3rem 0.9rem;
            font-size: 0.85rem;
            display: inline-block;
            margin-top: 0.5rem;
            font-weight: 500;
            color: #c2410c;
        }
