  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --deep-navy: #0B132B;
            --electric-cyan: #00E5FF;
            --electric-cyan-dim: #00b8d4;
            --cloud-grey: #F0F4F8;
            --white: #ffffff;
            --text-light: #4A5568;
            --text-muted: #718096;
            --shadow: 0 20px 30px -10px rgba(0, 229, 255, 0.08);
            --shadow-hover: 0 30px 40px -12px rgba(0, 229, 255, 0.15);
            --border-radius-card: 24px;
            --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--white);
            color: var(--deep-navy);
            line-height: 1.5;
            overflow-x: hidden;
        }

        h1, h2, h3, h4 {
            font-weight: 600;
            letter-spacing: -0.02em;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 32px;
        }

        /* ---------- HEADER ---------- */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(11, 19, 43, 0.05);
            transition: var(--transition);
            padding: 16px 0;
        }

        .header-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 32px;
        }

        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
        }

        .logo-icon-img {
            width: 50px;
            height: 50px;
            border-radius: 14px;
            margin-right: 8px;
            box-shadow: 0 8px 14px rgba(0, 229, 255, 0.15);
            border: 1.5px solid rgba(0, 229, 255, 0.3);
            object-fit: cover;
        }

        .logo-text {
            display: flex;
            flex-direction: column;
            line-height: 1.1;
            margin-left: 4px;
        }

        .logo-text .eter {
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 600;
            font-size: 1.4rem;
            letter-spacing: -0.02em;
            color: var(--deep-navy);
            margin-bottom: -2px;
        }

        .logo-text .orld {
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 300;
            font-size: 1rem;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            color: var(--electric-cyan-dim);
        }

        .nav-menu {
            display: flex;
            align-items: center;
            gap: 48px;
        }

        .nav-links {
            display: flex;
            gap: 40px;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--deep-navy);
            font-weight: 500;
            font-size: 1rem;
            transition: var(--transition);
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -6px;
            left: 0;
            width: 0%;
            height: 2.5px;
            background: var(--electric-cyan);
            transition: var(--transition);
            border-radius: 2px;
        }

        .nav-links a:hover::after,
        .nav-links a.active::after {
            width: 100%;
        }

        .btn-primary {
            background: var(--deep-navy);
            color: white;
            padding: 12px 28px;
            border-radius: 40px;
            font-weight: 600;
            font-size: 0.95rem;
            text-decoration: none;
            border: none;
            cursor: pointer;
            transition: var(--transition);
            box-shadow: 0 8px 16px rgba(11, 19, 43, 0.1);
            border: 1px solid rgba(0, 229, 255, 0.2);
            display: inline-block;
        }

        .btn-primary:hover {
            background: #1a2f5e;
            box-shadow: 0 12px 20px rgba(0, 229, 255, 0.2);
            transform: translateY(-2px);
        }

        /* Hamburger */
        .hamburger {
            display: none;
            flex-direction: column;
            justify-content: space-between;
            width: 28px;
            height: 22px;
            cursor: pointer;
            z-index: 1001;
        }

        .hamburger span {
            display: block;
            height: 3px;
            width: 100%;
            background: var(--deep-navy);
            border-radius: 4px;
            transition: all 0.3s ease;
        }

        .hamburger.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
        .hamburger.active span:nth-child(2) { opacity: 0; }
        .hamburger.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

        /* Mobile Menu */
        .mobile-nav {
            position: fixed;
            top: 0;
            right: -100%;
            width: min(75%, 320px);
            height: 100vh;
            background: var(--deep-navy);
            padding: 100px 32px 40px;
            display: flex;
            flex-direction: column;
            gap: 40px;
            transition: right 0.4s cubic-bezier(0.23, 1, 0.32, 1);
            z-index: 999;
            box-shadow: -10px 0 30px rgba(0,0,0,0.2);
            border-left: 1px solid rgba(0, 229, 255, 0.2);
        }

        .mobile-nav.active { right: 0; }

        .mobile-nav a {
            color: white;
            text-decoration: none;
            font-size: 1.4rem;
            font-weight: 500;
            padding: 12px 0;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .mobile-nav a i { color: var(--electric-cyan); width: 28px; }
        .mobile-nav a:hover { color: var(--electric-cyan); padding-left: 12px; }

        .overlay {
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(0,0,0,0.5);
            backdrop-filter: blur(4px);
            opacity: 0; visibility: hidden;
            transition: 0.3s;
            z-index: 998;
        }
        .overlay.active { opacity: 1; visibility: visible; }

        /* ---------- CATEGORY HERO ---------- */
        .category-hero {
            padding: 160px 0 60px;
            background: radial-gradient(circle at 20% 30%, rgba(0, 229, 255, 0.03) 0%, transparent 50%);
            text-align: center;
        }

        .category-badge {
            display: inline-block;
            background: rgba(0, 229, 255, 0.12);
            color: var(--electric-cyan-dim);
            padding: 6px 18px;
            border-radius: 40px;
            font-weight: 500;
            margin-bottom: 20px;
            border: 1px solid rgba(0, 229, 255, 0.2);
        }

        .category-hero h1 {
            font-size: clamp(2.5rem, 6vw, 3.8rem);
            margin-bottom: 20px;
        }

        .category-description {
            font-size: 1.2rem;
            color: var(--text-light);
            max-width: 700px;
            margin: 0 auto;
        }

        /* ---------- POST GRID ---------- */
        .category-posts-section {
            padding: 40px 0 80px;
        }

        .post-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .post-card {
            background: white;
            border-radius: var(--border-radius-card);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border: 1px solid rgba(0, 229, 255, 0.05);
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .post-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-hover);
            border-color: var(--electric-cyan);
        }

        .post-image {
            position: relative;
            height: 220px;
            overflow: hidden;
        }

        .post-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .post-card:hover .post-image img {
            transform: scale(1.05);
        }

        .post-category-tag {
            position: absolute;
            top: 16px;
            right: 16px;
            background: rgba(11, 19, 43, 0.85);
            backdrop-filter: blur(4px);
            color: white;
            padding: 6px 14px;
            border-radius: 30px;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            border: 1px solid var(--electric-cyan);
        }

        .post-content {
            padding: 24px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .post-meta {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 16px;
            margin-bottom: 14px;
            font-size: 0.85rem;
            color: var(--text-muted);
        }

        .post-meta i {
            margin-right: 6px;
            color: var(--electric-cyan-dim);
        }

        .post-title {
            font-size: 1.4rem;
            margin-bottom: 12px;
            line-height: 1.3;
        }

        .post-title a {
            text-decoration: none;
            color: var(--deep-navy);
            transition: var(--transition);
        }

        .post-title a:hover {
            color: var(--electric-cyan-dim);
        }

        .post-excerpt {
            color: var(--text-light);
            margin-bottom: 20px;
            line-height: 1.6;
            flex: 1;
        }

        .read-more-link {
            color: var(--electric-cyan-dim);
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: var(--transition);
        }

        .read-more-link i {
            transition: transform 0.3s;
        }

        .read-more-link:hover {
            color: var(--deep-navy);
        }

        .read-more-link:hover i {
            transform: translateX(4px);
        }

        /* Empty State */
        .empty-state {
            text-align: center;
            padding: 60px 20px;
            background: var(--cloud-grey);
            border-radius: 24px;
        }

        .empty-state i {
            font-size: 3rem;
            color: var(--text-muted);
            margin-bottom: 20px;
        }

        /* Pagination */
        .pagination-wrapper {
            margin-top: 60px;
            display: flex;
            justify-content: center;
        }

        .pagination {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .pagination a, .pagination span {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 44px;
            height: 44px;
            padding: 0 12px;
            border-radius: 12px;
            text-decoration: none;
            color: var(--deep-navy);
            font-weight: 500;
            transition: var(--transition);
            background: white;
            box-shadow: 0 4px 10px rgba(0,0,0,0.03);
            border: 1px solid #e2e8f0;
        }

        .pagination a:hover {
            background: var(--electric-cyan);
            border-color: var(--electric-cyan);
            color: var(--deep-navy);
        }

        .pagination .active {
            background: var(--deep-navy);
            color: white;
            border-color: var(--deep-navy);
        }

        .pagination .disabled {
            opacity: 0.5;
            pointer-events: none;
        }

        /* Footer */
        footer {
            background: var(--deep-navy);
            color: white;
            padding: 40px 0 20px;
        }

        .copyright {
            text-align: center;
            color: #7e8aa2;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
        }

        .copyright a {
            color: var(--electric-cyan-dim);
            text-decoration: none;
        }

        /* Floating Widget */
        .floating-widget {
            position: fixed;
            bottom: 30px;
            right: 30px;
            display: flex;
            flex-direction: column;
            gap: 16px;
            z-index: 900;
        }
        .widget-btn {
            width: 60px;
            height: 60px;
            border-radius: 30px;
            background: var(--deep-navy);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
            transition: var(--transition);
            text-decoration: none;
            border: 1px solid var(--electric-cyan);
        }
        .widget-btn.whatsapp { background: #25D366; }
        .widget-btn.call { background: var(--electric-cyan-dim); color: var(--deep-navy); }
        .widget-btn:hover { transform: scale(1.1); }

        /* Responsive */
        @media (max-width: 1024px) {
            .post-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .nav-menu { display: none; }
            .hamburger { display: flex; }
            .category-hero { padding: 130px 0 40px; }
            .post-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            .logo-text .eter { font-size: 1.2rem; }
            .container { padding: 0 20px; }
        }