
        /* ===== VARIABLES - Health Blog Theme ===== */
        :root {
            /* Primary Colors - Fresh & Clean */
            --primary: #2b7a78;        /* Deep Teal - Trust */
            --primary-dark: #1e5f5d;     /* Darker Teal */
            --primary-light: #d9f0f0;     /* Light Teal */
            --primary-soft: #e8f6f6;       /* Soft Teal */
            
            /* Secondary Colors - Calm & Soothing */
            --secondary: #3a506b;        /* Slate Blue - Professional */
            --secondary-dark: #2a3b4f;     /* Dark Slate */
            --secondary-light: #e9ecf2;     /* Light Slate */
            --secondary-soft: #f4f7fc;       /* Soft Slate */
            
            /* Accent Colors - Warm & Inviting */
            --accent: #ff9f68;            /* Soft Orange - Energy */
            --accent-dark: #e6854d;         /* Dark Orange */
            --accent-light: #ffe4d6;         /* Light Peach */
            --accent-soft: #fff4ed;           /* Soft Peach */
            
            /* Natural Colors - Earthy & Organic */
            --sage: #86a788;               /* Sage Green - Natural */
            --sage-light: #e2f0e4;           /* Light Sage */
            --lavender: #a58eb3;            /* Lavender - Calm */
            --lavender-light: #eee5f5;        /* Light Lavender */
            
            /* Neutral Colors */
            --text-dark: #1e2b37;           /* Rich Black */
            --text-body: #3d4b5b;            /* Medium Gray */
            --text-light: #6c7a8a;            /* Light Gray */
            --bg-white: #ffffff;               /* Pure White */
            --bg-light: #fafdff;                /* Ice White */
            --bg-soft: #f5f9ff;                  /* Soft Blue */
            --bg-warm: #fff9f5;                   /* Warm White */
            
            /* Gradients */
            --gradient-primary: linear-gradient(145deg, #2b7a78 0%, #3a506b 100%);
            --gradient-accent: linear-gradient(145deg, #ff9f68 0%, #a58eb3 100%);
            --gradient-sage: linear-gradient(145deg, #86a788 0%, #e2f0e4 100%);
            --gradient-lavender: linear-gradient(145deg, #a58eb3 0%, #eee5f5 100%);
            --gradient-sunset: linear-gradient(145deg, #ff9f68 0%, #86a788 100%);
            
            /* Shadows */
            --shadow-sm: 0 5px 20px rgba(43, 122, 120, 0.08);
            --shadow-md: 0 10px 30px rgba(43, 122, 120, 0.12);
            --shadow-lg: 0 20px 40px rgba(43, 122, 120, 0.15);
            --shadow-xl: 0 30px 60px rgba(43, 122, 120, 0.2);
            --shadow-accent: 0 10px 30px rgba(255, 159, 104, 0.15);
            --shadow-inner: inset 0 2px 10px rgba(0, 0, 0, 0.02);
            
            /* Transitions - All SLOW */
            --transition-slow: all 2s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-medium: all 1.5s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-fast: all 1s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-bounce: all 1.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            --transition-elastic: all 1.8s cubic-bezier(0.68, -0.6, 0.32, 1.6);
            
            /* Border Radius */
            --radius-sm: 15px;
            --radius-md: 25px;
            --radius-lg: 35px;
            --radius-xl: 45px;
            --radius-full: 60px;
            --radius-circle: 50%;
            
            /* Spacing */
            --spacing-xs: 10px;
            --spacing-sm: 20px;
            --spacing-md: 30px;
            --spacing-lg: 50px;
            --spacing-xl: 80px;
        }
        
        /* ===== RESET & BASE ===== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', 'Source Sans Pro', sans-serif;
            background: var(--bg-light);
            color: var(--text-body);
            line-height: 1.7;
            overflow-x: hidden;
            width: 100%;
        }
        
        .container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 20px;
            width: 100%;
        }
        
        /* ===== HERO SECTION ===== */
        .hero-section {
            background: var(--gradient-primary);
            padding: 100px 0;
            position: relative;
            overflow: hidden;
            isolation: isolate;
        }
        
        /* Animated Background */
        .hero-section::before {
            content: '';
            position: absolute;
            top: -30%;
            right: -10%;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            border-radius: 50%;
            animation: floatSlow 20s ease-in-out infinite;
            z-index: 0;
        }
        
        .hero-section::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(255,159,104,0.1) 0%, transparent 70%);
            border-radius: 50%;
            animation: floatSlow 25s ease-in-out infinite reverse;
            z-index: 0;
        }
        
        @keyframes floatSlow {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            25% { transform: translate(-50px, 30px) rotate(5deg); }
            50% { transform: translate(50px, -50px) rotate(-5deg); }
            75% { transform: translate(-30px, 50px) rotate(5deg); }
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: white;
        }
        
        .hero-badge {
            display: inline-block;
            background: rgba(255,255,255,0.15);
            backdrop-filter: blur(10px);
            padding: 12px 35px;
            border-radius: var(--radius-full);
            font-size: 15px;
            font-weight: 500;
            letter-spacing: 3px;
            margin-bottom: 30px;
            text-transform: uppercase;
            border: 1px solid rgba(255,255,255,0.3);
            transform: translateY(40px);
            opacity: 0;
            animation: fadeInUpHero 2s ease 0.2s forwards;
        }
        
        .hero-badge i {
            margin-right: 10px;
            color: var(--accent);
            animation: pulseSoft 3s ease-in-out infinite;
        }
        
        @keyframes pulseSoft {
            0%, 100% { transform: scale(1); opacity: 1; }
            50% { transform: scale(1.2); opacity: 0.8; }
        }
        
        .hero-title {
            font-size: 72px;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
            transform: translateY(40px);
            opacity: 0;
            animation: fadeInUpHero 2s ease 0.4s forwards;
        }
        
        .hero-title span {
            display: block;
            font-size: 28px;
            font-weight: 400;
            margin-top: 10px;
            font-family: 'Playfair Display', serif;
            letter-spacing: 2px;
            background: linear-gradient(135deg, #fff, var(--accent-light));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: gradientShift 5s ease infinite;
        }
        
        @keyframes gradientShift {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }
        
        .hero-description {
            max-width: 700px;
            margin: 0 auto;
            font-size: 19px;
            opacity: 0.95;
            transform: translateY(40px);
            opacity: 0;
            animation: fadeInUpHero 2s ease 0.6s forwards;
        }
        
        @keyframes fadeInUpHero {
            0% { opacity: 0; transform: translateY(40px); }
            100% { opacity: 1; transform: translateY(0); }
        }
        
        /* ===== CATEGORY FILTER ===== */
        .category-section {
            padding: var(--spacing-lg) 0;
            background: white;
            box-shadow: var(--shadow-sm);
            /* position: sticky; */
            top: 0;
            z-index: 100;
            transform: translateY(-100%);
            opacity: 0;
            animation: slideDownSticky 1.2s ease 0.8s forwards;
        }
        
        @keyframes slideDownSticky {
            to { transform: translateY(0); opacity: 1; }
        }
        
        .category-container {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
            justify-content: center;
        }
        
        .category-btn {
            padding: 12px 25px;
            border: 2px solid var(--primary-light);
            background: white;
            border-radius: var(--radius-full);
            color: var(--text-body);
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition-medium);
            transform: scale(0.9);
            opacity: 0;
            animation: categoryPopIn 1s ease forwards;
            position: relative;
            overflow: hidden;
        }
        
        .category-btn:nth-child(1) { animation-delay: 1.0s; }
        .category-btn:nth-child(2) { animation-delay: 1.1s; }
        .category-btn:nth-child(3) { animation-delay: 1.2s; }
        .category-btn:nth-child(4) { animation-delay: 1.3s; }
        .category-btn:nth-child(5) { animation-delay: 1.4s; }
        .category-btn:nth-child(6) { animation-delay: 1.5s; }
        
        @keyframes categoryPopIn {
            to { transform: scale(1); opacity: 1; }
        }
        
        .category-btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: var(--accent);
            transform: translate(-50%, -50%);
            transition: width 0.8s ease, height 0.8s ease;
            z-index: -1;
        }
        
        .category-btn:hover {
            color: white;
            border-color: var(--accent);
            transform: translateY(-5px) scale(1.05);
            box-shadow: var(--shadow-accent);
        }
        
        .category-btn:hover::before {
            width: 300px;
            height: 300px;
        }
        
        .category-btn.active {
            background: var(--primary);
            color: white;
            border-color: var(--primary);
        }
        
        /* ===== FEATURED POST ===== */
        .featured-post {
            padding: var(--spacing-xl) 0 var(--spacing-lg);
        }
        
        .featured-card {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            background: white;
            border-radius: var(--radius-xl);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            opacity: 0;
            transform: translateY(50px);
            animation: featuredFloat 2s ease 1.6s forwards;
            position: relative;
        }
        
        @keyframes featuredFloat {
            to { opacity: 1; transform: translateY(0); }
        }
        
        .featured-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,159,104,0.05) 0%, transparent 70%);
            animation: rotateSlow 30s linear infinite;
            pointer-events: none;
        }
        
        @keyframes rotateSlow {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
        
        .featured-image {
            position: relative;
            height: 500px;
            overflow: hidden;
        }
        
        .featured-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition-slow);
        }
        
        .featured-card:hover .featured-image img {
            transform: scale(1.1);
        }
        
        .featured-tag {
            position: absolute;
            top: 30px;
            left: 30px;
            background: var(--accent);
            color: white;
            padding: 10px 25px;
            border-radius: var(--radius-full);
            font-size: 14px;
            font-weight: 600;
            z-index: 2;
            transform: translateX(-50px);
            opacity: 0;
            animation: slideInTag 1.5s ease 2.0s forwards;
            box-shadow: var(--shadow-accent);
        }
        
        @keyframes slideInTag {
            to { transform: translateX(0); opacity: 1; }
        }
        
        .featured-content {
            padding: 60px 60px 60px 0;
            position: relative;
            z-index: 2;
        }
        
        .featured-meta {
            display: flex;
            gap: 25px;
            margin-bottom: 20px;
            transform: translateY(20px);
            opacity: 0;
            animation: fadeInMeta 1.5s ease 2.2s forwards;
        }
        
        @keyframes fadeInMeta {
            to { transform: translateY(0); opacity: 1; }
        }
        
        .featured-meta span {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--text-light);
            font-size: 15px;
        }
        
        .featured-meta i {
            color: var(--accent);
            animation: bounceSoft 3s ease-in-out infinite;
        }
        
        @keyframes bounceSoft {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-3px); }
        }
        
        .featured-title {
            font-size: 36px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 20px;
            line-height: 1.3;
            transform: translateY(20px);
            opacity: 0;
            animation: fadeInTitle 1.5s ease 2.4s forwards;
        }
        
        @keyframes fadeInTitle {
            to { transform: translateY(0); opacity: 1; }
        }
        
        .featured-title a {
            color: var(--text-dark);
            text-decoration: none;
            transition: var(--transition-fast);
            background: linear-gradient(135deg, var(--primary), var(--accent));
            background-size: 0% 2px;
            background-repeat: no-repeat;
            background-position: left bottom;
        }
        
        .featured-title a:hover {
            background-size: 100% 2px;
            color: var(--primary);
        }
        
        .featured-excerpt {
            font-size: 18px;
            color: var(--text-body);
            margin-bottom: 30px;
            line-height: 1.8;
            transform: translateY(20px);
            opacity: 0;
            animation: fadeInExcerpt 1.5s ease 2.6s forwards;
        }
        
        @keyframes fadeInExcerpt {
            to { transform: translateY(0); opacity: 1; }
        }
        
        .featured-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            transform: translateY(20px);
            opacity: 0;
            animation: fadeInFooter 1.5s ease 2.8s forwards;
        }
        
        @keyframes fadeInFooter {
            to { transform: translateY(0); opacity: 1; }
        }
        
        .author-info {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .author-img {
            width: 50px;
            height: 50px;
            border-radius: var(--radius-circle);
            overflow: hidden;
            border: 3px solid var(--accent-light);
            transition: var(--transition-medium);
        }
        
        .featured-card:hover .author-img {
            border-color: var(--accent);
            transform: scale(1.1);
        }
        
        .author-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .author-details h4 {
            font-size: 16px;
            color: var(--text-dark);
            margin-bottom: 3px;
        }
        
        .author-details p {
            font-size: 13px;
            color: var(--text-light);
        }
        
        .read-more {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 12px 30px;
            background: var(--primary);
            color: white;
            text-decoration: none;
            border-radius: var(--radius-full);
            font-weight: 600;
            transition: var(--transition-medium);
            border: 2px solid transparent;
        }
        
        .read-more:hover {
            background: transparent;
            color: var(--primary);
            border-color: var(--primary);
            transform: translateX(10px) scale(1.05);
            box-shadow: var(--shadow-md);
        }
        
        .read-more i {
            transition: var(--transition-fast);
        }
        
        .read-more:hover i {
            transform: translateX(8px);
        }
        
        /* ===== BLOG GRID ===== */
        .blog-grid-section {
            padding: var(--spacing-lg) 0 var(--spacing-xl);
            background: var(--bg-soft);
            position: relative;
        }
        
        .blog-grid-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 200px;
            background: linear-gradient(to bottom, white, transparent);
            pointer-events: none;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 50px;
            transform: translateY(30px);
            opacity: 0;
            animation: fadeInSection 1.5s ease 3.0s forwards;
        }
        
        @keyframes fadeInSection {
            to { transform: translateY(0); opacity: 1; }
        }
        
        .section-subtitle {
            color: var(--accent);
            font-size: 16px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 4px;
            margin-bottom: 15px;
            display: inline-block;
            position: relative;
        }
        
        .section-subtitle::before,
        .section-subtitle::after {
            content: '';
            position: absolute;
            top: 50%;
            width: 50px;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--accent), transparent);
            animation: pulseWidth 3s ease-in-out infinite;
        }
        
        .section-subtitle::before {
            right: 100%;
            margin-right: 20px;
        }
        
        .section-subtitle::after {
            left: 100%;
            margin-left: 20px;
        }
        
        @keyframes pulseWidth {
            0%, 100% { width: 50px; opacity: 0.5; }
            50% { width: 80px; opacity: 1; }
        }
        
        .section-title {
            font-size: 42px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 15px;
        }
        
        .section-title span {
            color: var(--primary);
            position: relative;
            display: inline-block;
        }
        
        .section-title span::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 0;
            width: 100%;
            height: 8px;
            background: var(--primary-light);
            z-index: -1;
            animation: underlineSlide 3s ease-in-out infinite;
        }
        
        @keyframes underlineSlide {
            0%, 100% { width: 100%; left: 0; }
            50% { width: 120%; left: -10%; }
        }
        
        .blog-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        
        /* Blog Card */
        .blog-card {
            background: white;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-md);
            transition: var(--transition-slow);
            cursor: pointer;
            position: relative;
            opacity: 0;
            transform: translateY(50px) scale(0.95);
            animation: cardFloatIn 2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
        }
        
        .blog-card:nth-child(1) { animation-delay: 3.2s; }
        .blog-card:nth-child(2) { animation-delay: 3.4s; }
        .blog-card:nth-child(3) { animation-delay: 3.6s; }
        .blog-card:nth-child(4) { animation-delay: 3.8s; }
        .blog-card:nth-child(5) { animation-delay: 4.0s; }
        .blog-card:nth-child(6) { animation-delay: 4.2s; }
        .blog-card:nth-child(7) { animation-delay: 4.4s; }
        .blog-card:nth-child(8) { animation-delay: 4.6s; }
        .blog-card:nth-child(9) { animation-delay: 4.8s; }
        
        @keyframes cardFloatIn {
            to { opacity: 1; transform: translateY(0) scale(1); }
        }
        
        .blog-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: var(--shadow-xl);
        }
        
        .blog-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 50%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.8s ease;
            z-index: 2;
            pointer-events: none;
        }
        
        .blog-card:hover::before {
            left: 150%;
        }
        
        .card-image {
            position: relative;
            height: 240px;
            overflow: hidden;
        }
        
        .card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition-slow);
        }
        
        .blog-card:hover .card-image img {
            transform: scale(1.15) rotate(2deg);
        }
        
        .card-category {
            position: absolute;
            bottom: 20px;
            left: 20px;
            background: var(--accent);
            color: white;
            padding: 8px 20px;
            border-radius: var(--radius-full);
            font-size: 12px;
            font-weight: 600;
            z-index: 3;
            transform: translateY(20px);
            opacity: 0;
            transition: var(--transition-medium);
            box-shadow: var(--shadow-accent);
        }
        
        .blog-card:hover .card-category {
            transform: translateY(0);
            opacity: 1;
        }
        
        .card-content {
            padding: 25px;
        }
        
        .card-meta {
            display: flex;
            gap: 20px;
            margin-bottom: 15px;
            font-size: 13px;
            color: var(--text-light);
        }
        
        .card-meta span {
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        .card-meta i {
            color: var(--accent);
            font-size: 12px;
            transition: var(--transition-fast);
        }
        
        .blog-card:hover .card-meta i {
            animation: iconPulse 1s ease infinite;
        }
        
        @keyframes iconPulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.3); color: var(--primary); }
        }
        
        .card-title {
            font-size: 22px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 12px;
            line-height: 1.4;
            transition: var(--transition-fast);
        }
        
        .card-title a {
            color: var(--text-dark);
            text-decoration: none;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            background-size: 0% 2px;
            background-repeat: no-repeat;
            background-position: left bottom;
            transition: var(--transition-medium);
        }
        
        .card-title a:hover {
            background-size: 100% 2px;
            color: var(--primary);
        }
        
        .card-excerpt {
            color: var(--text-body);
            font-size: 15px;
            line-height: 1.7;
            margin-bottom: 20px;
        }
        
        .card-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-top: 15px;
            border-top: 1px solid var(--primary-light);
        }
        
        .card-author {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .card-author img {
            width: 35px;
            height: 35px;
            border-radius: var(--radius-circle);
            object-fit: cover;
            border: 2px solid var(--accent-light);
            transition: var(--transition-medium);
        }
        
        .blog-card:hover .card-author img {
            border-color: var(--accent);
            transform: scale(1.1);
        }
        
        .card-author span {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-dark);
        }
        
        .card-link {
            color: var(--primary);
            font-size: 20px;
            transition: var(--transition-medium);
            width: 40px;
            height: 40px;
            border-radius: var(--radius-circle);
            background: var(--primary-light);
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
        }
        
        .card-link:hover {
            background: var(--primary);
            color: white;
            transform: rotate(360deg) scale(1.1);
        }
        
        /* ===== NEWSLETTER SECTION ===== */
        .newsletter-section {
            padding: var(--spacing-xl) 0;
            background: var(--gradient-primary);
            position: relative;
            overflow: hidden;
        }
        
        .newsletter-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            border-radius: 50%;
            animation: floatSlow 20s ease-in-out infinite;
        }
        
        .newsletter-section::after {
            content: '';
            position: absolute;
            bottom: -50%;
            left: -20%;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(255,159,104,0.1) 0%, transparent 70%);
            border-radius: 50%;
            animation: floatSlow 25s ease-in-out infinite reverse;
        }
        
        .newsletter-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: white;
            max-width: 600px;
            margin: 0 auto;
            transform: translateY(30px);
            opacity: 0;
            animation: fadeInNewsletter 2s ease 5.0s forwards;
        }
        
        @keyframes fadeInNewsletter {
            to { transform: translateY(0); opacity: 1; }
        }
        
        .newsletter-content h2 {
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .newsletter-content h2 span {
            color: var(--accent);
        }
        
        .newsletter-content p {
            font-size: 18px;
            margin-bottom: 40px;
            opacity: 0.95;
        }
        
        .newsletter-form {
            display: flex;
            gap: 15px;
            max-width: 500px;
            margin: 0 auto;
            position: relative;
        }
        
        .newsletter-form input {
            flex: 1;
            padding: 18px 25px;
            border: none;
            border-radius: var(--radius-full);
            font-size: 16px;
            transition: var(--transition-medium);
            box-shadow: var(--shadow-lg);
        }
        
        .newsletter-form input:focus {
            outline: none;
            transform: scale(1.02);
            box-shadow: var(--shadow-xl);
        }
        
        .newsletter-form button {
            padding: 18px 35px;
            background: var(--accent);
            color: white;
            border: none;
            border-radius: var(--radius-full);
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition-medium);
            border: 2px solid transparent;
            box-shadow: var(--shadow-lg);
        }
        
        .newsletter-form button:hover {
            background: transparent;
            border-color: white;
            color: white;
            transform: translateY(-5px) scale(1.05);
            box-shadow: var(--shadow-xl);
        }
        
        /* ===== POPULAR TAGS ===== */
        .tags-section {
            padding: var(--spacing-lg) 0;
            background: white;
        }
        
        .tags-container {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            justify-content: center;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInTags 2s ease 5.2s forwards;
        }
        
        @keyframes fadeInTags {
            to { opacity: 1; transform: translateY(0); }
        }
        
        .tag {
            padding: 10px 25px;
            background: var(--bg-soft);
            border-radius: var(--radius-full);
            color: var(--text-body);
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            transition: var(--transition-medium);
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .tag::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: var(--accent);
            transform: translate(-50%, -50%);
            transition: width 0.8s ease, height 0.8s ease;
            z-index: -1;
        }
        
        .tag:hover {
            color: white;
            border-color: var(--accent);
            transform: translateY(-3px) scale(1.05);
        }
        
        .tag:hover::before {
            width: 300px;
            height: 300px;
        }
        
        .tag i {
            margin-right: 5px;
            color: var(--accent);
            transition: var(--transition-fast);
        }
        
        .tag:hover i {
            color: white;
            transform: rotate(360deg);
        }
        
        /* ===== PAGINATION ===== */
        .pagination {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 50px;
        }
        
        .page-btn {
            width: 45px;
            height: 45px;
            border-radius: var(--radius-circle);
            background: white;
            border: 2px solid var(--primary-light);
            color: var(--text-body);
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition-medium);
            display: flex;
            align-items: center;
            justify-content: center;
            transform: scale(0.9);
            opacity: 0;
            animation: pageBtnIn 1s ease forwards;
        }
        
        .page-btn:nth-child(1) { animation-delay: 5.4s; }
        .page-btn:nth-child(2) { animation-delay: 5.5s; }
        .page-btn:nth-child(3) { animation-delay: 5.6s; }
        .page-btn:nth-child(4) { animation-delay: 5.7s; }
        .page-btn:nth-child(5) { animation-delay: 5.8s; }
        
        @keyframes pageBtnIn {
            to { transform: scale(1); opacity: 1; }
        }
        
        .page-btn:hover {
            background: var(--primary);
            color: white;
            border-color: var(--primary);
            transform: translateY(-5px) scale(1.1);
            box-shadow: var(--shadow-md);
        }
        
        .page-btn.active {
            background: var(--accent);
            color: white;
            border-color: var(--accent);
        }
        
        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 1200px) {
            .hero-title { font-size: 56px; }
            .blog-grid { grid-template-columns: repeat(2, 1fr); }
            .featured-card { grid-template-columns: 1fr; }
            .featured-content { padding: 40px; }
            .featured-image { height: 400px; }
        }
        
        @media (max-width: 992px) {
            .hero-title { font-size: 48px; }
            .hero-title span { font-size: 24px; }
            .section-title { font-size: 36px; }
            .featured-title { font-size: 32px; }
            
            .category-section {
                position: relative;
                top: auto;
            }
        }
        
        @media (max-width: 768px) {
            .hero-title { font-size: 36px; }
            .hero-badge { font-size: 13px; padding: 8px 20px; }
            
            .blog-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
            
            .featured-meta { flex-direction: column; gap: 10px; }
            .featured-footer { flex-direction: column; gap: 20px; align-items: flex-start; }
            
            .newsletter-form {
                flex-direction: column;
                padding: 0 20px;
            }
            
            .newsletter-form button {
                width: 100%;
            }
            
            .section-title { font-size: 32px; }
            .featured-title { font-size: 28px; }
            .featured-content { padding: 30px; }
        }
        
        @media (max-width: 480px) {
            .hero-title { font-size: 28px; }
            .hero-title span { font-size: 18px; }
            
            .category-btn {
                width: calc(50% - 10px);
                text-align: center;
            }
            
            .featured-title { font-size: 24px; }
            .section-title { font-size: 26px; }
            
            .card-meta {
                flex-direction: column;
                gap: 8px;
            }
            
            .tags-container .tag {
                width: calc(50% - 10px);
                text-align: center;
            }
        }
        
        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 12px;
        }
        
        ::-webkit-scrollbar-track {
            background: var(--primary-light);
            border-radius: 6px;
        }
        
        ::-webkit-scrollbar-thumb {
            background: linear-gradient(145deg, var(--primary), var(--accent));
            border-radius: 6px;
            transition: var(--transition-medium);
        }
        
        ::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(145deg, var(--accent), var(--primary));
            transform: scale(1.1);
        }
        
        /* Loading Animation */
        .loading-pulse {
            animation: loadingPulse 2s ease-in-out infinite;
        }
        
        @keyframes loadingPulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }