  /* DARK THEME VARIABLES - MATCHING INDEX.HTML */
        * { margin: 0; padding: 0; box-sizing: border-box; }
        :root {
            --primary: #e74c3c;    --primary-dark: #c0392b;
            --secondary: #3498db;  --accent: #f1c40f;
            --dark: #121212;       --darker: #0a0a0a;
            --card-dark: #1e1e1e;  --card-darker: #171717;
            --text: #ffffff;       --text-muted: #aaaaaa;
            --border: #333333;     --hover: #2c2c2c;
        }
        body {
            font-family: 'Roboto', sans-serif;
            line-height: 1.6;
            color: var(--text);
            background: var(--dark);
            overflow-x: hidden;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* COMIC TEXT STYLES */
        h1, h2, h3, h4 {
            font-family: 'Bangers', cursive;
            letter-spacing: 2px;
            line-height: 1.2;
            text-transform: uppercase;
        }
        h1 {
            font-size: 4rem;
            margin-bottom: 1rem;
            text-shadow: 3px 3px 0 var(--primary),
                        6px 6px 0 rgba(0, 0, 0, 0.5);
        }
        h2 {
            font-size: 3rem;
            margin-bottom: 2rem;
            position: relative;
            display: inline-block;
        }
        h2::after {
            content: '!';
            color: var(--primary);
            animation: blink 1s infinite;
        }
        @keyframes blink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.3; }
        }
        
        /* BUTTONS - COMIC STYLE */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 14px 28px;
            border-radius: 8px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            border: none;
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            text-decoration: none;
            font-family: 'Roboto', sans-serif;
            position: relative;
            overflow: hidden;
        }
        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.6s;
        }
        .btn:hover::before {
            left: 100%;
        }
        .btn-primary {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: var(--text);
            box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4),
                        inset 0 1px 0 rgba(255,255,255,0.2);
        }
        .btn-primary:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 8px 25px rgba(231, 76, 60, 0.6),
                        inset 0 1px 0 rgba(255,255,255,0.3);
        }
        .btn-outline {
            background: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
            box-shadow: 0 3px 10px rgba(231, 76, 60, 0.2);
        }
        .btn-outline:hover {
            background: var(--primary);
            color: var(--text);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
        }
        .btn-large {
            padding: 18px 36px;
            font-size: 1.1rem;
        }
        .btn-discord {
            background: linear-gradient(135deg, #5865F2, #4752C4);
            color: var(--text);
            font-weight: 700 !important;
        }
        .btn-discord:hover {
            background: linear-gradient(135deg, #4752C4, #3C45A5);
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 8px 25px rgba(88, 101, 242, 0.6);
        }
        .btn-small {
            padding: 10px 20px;
            font-size: 0.9rem;
            text-align: center;
            min-height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        /* TAG STYLES */
        .post-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin: 10px 0;
        }
        
        .tag {
            background: rgba(241, 196, 15, 0.1);
            color: var(--accent);
            padding: 4px 10px;
            border-radius: 15px;
            font-size: 0.75rem;
            font-weight: 600;
            border: 1px solid rgba(241, 196, 15, 0.3);
            text-transform: lowercase;
        }
        
        /* UPDATED NAVIGATION - MATCHING INDEX.HTML */
        .navbar {
            background: rgba(18, 18, 18, 0.95);
            backdrop-filter: blur(10px);
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            border-bottom: 2px solid var(--primary);
            box-shadow: 0 5px 20px rgba(0,0,0,0.5);
        }
        
        .navbar .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 10px 20px;
            min-height: 70px;
            gap: 20px;
        }
        
        /* LOGO - MATCHING INDEX.HTML */
        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
            position: relative;
            transition: transform 0.3s ease;
            margin-right: 20px;
            flex-shrink: 0;
        }
        .logo:hover {
            transform: scale(1.05);
        }
        .logo-icon {
            width: 90px;
            height: 90px;
            background-image: url('https://res.cloudinary.com/dq4gl4bmg/image/upload/v1765482796/Firefly_Gemini_Flash_Can_you_remove_the_background_and_just_leave_the_explosion_and_LCS-_Easy_to_upload_ri_564460_2_pdi4gf.png');
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
            filter: drop-shadow(0 0 10px rgba(231, 76, 60, 0.5));
            animation: pulse 2s infinite;
            margin-right: 15px;
        }
        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }
        .logo-text {
            font-family: 'Bangers', cursive;
            font-size: 1.8rem;
            letter-spacing: 3px;
            background: linear-gradient(to right, var(--primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            white-space: nowrap;
        }
        
        /* NAVIGATION LINKS - MATCHING INDEX.HTML */
        .nav-links {
            display: flex;
            align-items: center;
            gap: 25px;
            flex-wrap: nowrap;
            flex: 1;
            justify-content: flex-start;
            margin-left: 20px;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            padding-bottom: 2px;
        }
        
        .nav-links::-webkit-scrollbar {
            display: none;
        }
        
        .nav-link {
            color: var(--text);
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 8px;
            text-decoration: none;
            position: relative;
            padding: 8px 0;
            white-space: nowrap;
            flex-shrink: 0;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: width 0.3s;
        }
        .nav-link:hover::after,
        .nav-link.active::after {
            width: 100%;
        }
        .nav-link i {
            color: var(--primary);
        }
        
        .menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: var(--text);
            cursor: pointer;
            margin-left: 15px;
        }
        
        /* BLOG HEADER */
        .blog-header {
            margin-top: 70px;
            padding: 80px 0;
            background: linear-gradient(135deg, rgba(231, 76, 60, 0.1) 0%, rgba(52, 152, 219, 0.1) 100%);
            position: relative;
            border-bottom: 3px solid var(--primary);
        }
        
        .blog-header .container {
            position: relative;
            z-index: 2;
        }
        
        .blog-header::before {
            content: 'BLOG';
            position: absolute;
            font-family: 'Bangers', cursive;
            font-size: 20rem;
            color: rgba(52, 152, 219, 0.03);
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            pointer-events: none;
            letter-spacing: 10px;
            text-shadow: 5px 5px 0 rgba(231, 76, 60, 0.1);
        }
        
        .blog-title {
            text-align: center;
            margin-bottom: 20px;
        }
        
        .blog-description {
            text-align: center;
            font-size: 1.2rem;
            color: var(--text-muted);
            max-width: 800px;
            margin: 0 auto 40px;
            line-height: 1.6;
        }
        
        /* BLOG GRID - 3x3 LAYOUT */
        #wordpress-posts {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 40px;
            padding: 40px 0;
        }
        
        .wordpress-post {
            background: var(--card-dark);
            border-radius: 15px;
            overflow: hidden;
            border: 2px solid var(--border);
            transition: all 0.3s ease;
            cursor: pointer;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        .wordpress-post:hover {
            border-color: var(--primary);
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.3);
        }
        
        .post-image {
            width: 100%;
            height: 200px;
            overflow: hidden;
        }
        .post-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .wordpress-post:hover .post-image img {
            transform: scale(1.05);
        }
        
        .post-content-wrapper {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .post-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px solid var(--border);
        }
        .post-date {
            color: var(--primary);
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .post-category {
            background: rgba(52, 152, 219, 0.1);
            color: var(--secondary);
            padding: 4px 12px;
            border-radius: 20px;
            text-transform: uppercase;
            font-size: 0.75rem;
            font-weight: 600;
        }
        
        .post-title {
            font-family: 'Roboto', sans-serif;
            font-size: 1.4rem;
            font-weight: 700;
            line-height: 1.4;
            margin-bottom: 15px;
            color: var(--text);
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        
        .post-excerpt {
            font-size: 1rem;
            line-height: 1.6;
            color: var(--text-muted);
            margin-bottom: 20px;
            flex-grow: 1;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        
        .read-more-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 12px 25px;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: var(--text);
            text-decoration: none;
            border-radius: 8px;
            font-weight: 600;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            font-size: 1rem;
            width: 100%;
            margin-top: auto;
            box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
        }
        .read-more-btn:hover {
            background: linear-gradient(135deg, var(--primary-dark), #a93226);
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
        }
        
        /* LOAD MORE BUTTON */
        .load-more-container {
            grid-column: 1 / -1;
            text-align: center;
            margin-top: 40px;
            padding-top: 40px;
            border-top: 1px solid var(--border);
        }
        
        .load-more-btn {
            background: linear-gradient(135deg, var(--secondary), #2980b9);
            color: var(--text);
            border: none;
            padding: 16px 40px;
            border-radius: 10px;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            font-family: 'Roboto', sans-serif;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 5px 20px rgba(52, 152, 219, 0.4);
            min-width: 220px;
            justify-content: center;
        }
        
        .load-more-btn:hover {
            background: linear-gradient(135deg, #2980b9, #1f6394);
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(52, 152, 219, 0.6);
        }
        
        .load-more-btn:disabled {
            background: var(--border);
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
        }
        
        .load-more-btn .loading-spinner {
            border: 2px solid rgba(255,255,255,0.3);
            border-top: 2px solid var(--text);
            border-radius: 50%;
            width: 20px;
            height: 20px;
            animation: spin 1s linear infinite;
        }
        
        /* ALL POSTS LOADED MESSAGE */
        .all-posts-loaded {
            color: var(--text-muted);
            font-size: 1.1rem;
            text-align: center;
            padding: 20px;
            border-top: 1px solid var(--border);
            margin-top: 40px;
            grid-column: 1 / -1;
        }
        
        .all-posts-loaded i {
            color: var(--primary);
            margin-right: 10px;
        }
        
        /* FULL SCREEN ARTICLE MODAL - MATCHING INDEX.HTML */
        .article-modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.98);
            backdrop-filter: blur(10px);
            z-index: 3000;
            display: none;
            opacity: 0;
            transition: opacity 0.4s ease;
        }
        .article-modal-overlay.active {
            display: block;
            opacity: 1;
        }
        
        .article-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--darker);
            z-index: 3001;
            display: none;
            opacity: 0;
            transition: opacity 0.4s ease;
            overflow-y: auto;
            overflow-x: hidden;
        }
        .article-modal.active {
            display: block;
            opacity: 1;
        }
        
        .article-header {
            background: linear-gradient(135deg, var(--darker), rgba(231, 76, 60, 0.1));
            padding: 40px 20px 60px 20px; /* Added bottom padding for back button */
            border-bottom: 3px solid var(--primary);
            position: relative;
        }
        
        .article-header-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 30px;
        }
        
        .article-header-info {
            flex: 1;
            min-width: 300px;
        }
        
        .article-header-title {
            font-family: 'Roboto', sans-serif;
            font-size: 3.5rem;
            font-weight: 900;
            line-height: 1.2;
            margin-bottom: 20px;
            color: var(--text);
            text-transform: none;
            letter-spacing: normal;
        }
        
        .article-header-meta {
            display: flex;
            gap: 30px;
            align-items: center;
            margin-bottom: 30px;
        }
        
        .article-date {
            color: var(--primary);
            font-size: 1.2rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .article-category {
            background: rgba(52, 152, 219, 0.2);
            color: var(--secondary);
            padding: 8px 20px;
            border-radius: 30px;
            text-transform: uppercase;
            font-size: 1rem;
            font-weight: 600;
            border: 2px solid rgba(52, 152, 219, 0.3);
        }
        
        .article-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 20px;
        }
        
        .article-tag {
            background: rgba(241, 196, 15, 0.1);
            color: var(--accent);
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
            border: 1px solid rgba(241, 196, 15, 0.3);
        }
        
        /* Position back button lower in header */
        .article-back-btn {
            background: rgba(52, 152, 219, 0.2);
            color: var(--secondary);
            border: 2px solid rgba(52, 152, 219, 0.3);
            padding: 15px 30px;
            border-radius: 10px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.1rem;
            margin-top: 40px; /* Pushed lower */
        }
        .article-back-btn:hover {
            background: var(--secondary);
            color: var(--text);
            transform: translateX(-5px);
        }
        
        .article-close-btn {
            position: absolute;
            top: 30px;
            right: 30px;
            background: var(--primary);
            color: var(--text);
            border: none;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s;
            font-size: 1.5rem;
            box-shadow: 0 5px 20px rgba(231, 76, 60, 0.4);
            z-index: 10;
        }
        .article-close-btn:hover {
            background: var(--primary-dark);
            transform: rotate(90deg) scale(1.1);
        }
        
        .article-image-container {
            width: 100%;
            max-height: 600px;
            overflow: hidden;
            position: relative;
        }
        .article-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(0.9);
        }
        
        .article-content {
            max-width: 800px;
            margin: 60px auto;
            padding: 0 20px;
        }
        
        .article-content p {
            font-size: 1.3rem;
            line-height: 1.8;
            margin-bottom: 30px;
            color: var(--text);
            text-align: justify;
        }
        
        .article-content h2 {
            font-family: 'Roboto', sans-serif;
            font-size: 2.5rem;
            font-weight: 700;
            margin: 60px 0 30px;
            color: var(--text);
            text-transform: none;
            letter-spacing: normal;
            border-left: 5px solid var(--primary);
            padding-left: 20px;
        }
        
        .article-content h3 {
            font-family: 'Roboto', sans-serif;
            font-size: 2rem;
            font-weight: 600;
            margin: 50px 0 25px;
            color: var(--accent);
        }
        
        .article-content blockquote {
            border-left: 4px solid var(--primary);
            padding-left: 30px;
            margin: 40px 0;
            font-style: italic;
            font-size: 1.4rem;
            color: var(--text-muted);
        }
        
        .article-content ul, .article-content ol {
            margin: 30px 0;
            padding-left: 40px;
        }
        
        .article-content li {
            font-size: 1.2rem;
            line-height: 1.8;
            margin-bottom: 15px;
            color: var(--text);
        }
        
        /* FIX FOR ARTICLE IMAGES */
        .article-content img {
            max-width: 100%;
            height: auto;
            display: block;
            margin: 30px auto;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        
        .article-content * {
            max-width: 100%;
        }
        
        .article-content iframe,
        .article-content video,
        .article-content embed {
            max-width: 100%;
            display: block;
            margin: 30px auto;
        }
        
        .article-footer {
            max-width: 800px;
            margin: 80px auto 40px;
            padding: 40px 20px;
            border-top: 2px solid var(--border);
            text-align: center;
        }
        
        /* ADDITIONAL BACK TO BLOG BUTTON AT BOTTOM */
        .article-footer-actions {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
            margin-top: 40px;
        }
        
        .article-back-to-blog-btn {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: var(--text);
            border: none;
            padding: 18px 40px;
            border-radius: 10px;
            font-size: 1.2rem;
            font-weight: 700;
            cursor: pointer;
            font-family: 'Roboto', sans-serif;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 5px 20px rgba(231, 76, 60, 0.4);
        }
        .article-back-to-blog-btn:hover {
            background: linear-gradient(135deg, var(--primary-dark), #a93226);
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(231, 76, 60, 0.6);
        }
        
        .article-navigation {
            display: flex;
            justify-content: space-between;
            margin-top: 40px;
            width: 100%;
        }
        
        .article-nav-btn {
            background: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
            padding: 15px 30px;
            border-radius: 10px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.1rem;
        }
        .article-nav-btn:hover {
            background: var(--primary);
            color: var(--text);
        }
        .article-nav-btn.prev {
            transform: translateX(-5px);
        }
        .article-nav-btn.next {
            transform: translateX(5px);
        }
        
        /* FOOTER - MATCHING INDEX.HTML */
        .footer {
            background: var(--darker);
            color: var(--text);
            padding: 80px 0 30px;
            border-top: 1px solid var(--border);
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 50px;
            margin-bottom: 50px;
        }
        .footer-col h4 {
            color: var(--text);
            margin-bottom: 25px;
            font-size: 1.5rem;
            position: relative;
            display: inline-block;
        }
        .footer-col h4::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--primary);
        }
        .footer-col p {
            color: var(--text-muted);
            margin-bottom: 20px;
            line-height: 1.8;
        }
        .footer-col ul {
            list-style: none;
        }
        .footer-col ul li {
            margin-bottom: 12px;
        }
        .footer-col ul li a {
            color: var(--text-muted);
            transition: all 0.3s;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        .footer-col ul li a:hover {
            color: var(--primary);
            transform: translateX(5px);
        }
        .social {
            display: flex;
            gap: 15px;
            margin-top: 25px;
        }
        .social a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background: var(--card-dark);
            border-radius: 50%;
            color: var(--text);
            text-decoration: none;
            transition: all 0.3s;
            font-size: 1.2rem;
        }
        .social a:hover {
            background: var(--primary);
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
        }
        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid var(--border);
            color: var(--text-muted);
            font-size: 0.9rem;
        }
        .footer-bottom p {
            margin-bottom: 10px;
        }
        
        /* BACK TO TOP */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--primary);
            color: var(--text);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            font-size: 1.2rem;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
            z-index: 999;
            box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
        }
        .back-to-top.show {
            opacity: 1;
            visibility: visible;
        }
        .back-to-top:hover {
            transform: translateY(-5px);
            background: var(--primary-dark);
        }
        
        /* LOADING STATES */
        .loading {
            text-align: center;
            padding: 60px 20px;
            grid-column: 1 / -1;
        }
        
        .loading-spinner {
            border: 4px solid var(--border);
            border-top: 4px solid var(--primary);
            border-radius: 50%;
            width: 50px;
            height: 50px;
            animation: spin 1s linear infinite;
            margin: 0 auto 20px;
        }
        
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        /* RESPONSIVE DESIGN */
        @media (max-width: 1200px) {
            .blog-header::before {
                font-size: 15rem;
            }
            .article-header-title {
                font-size: 2.8rem;
            }
        }
        
        @media (max-width: 992px) {
            h1 { font-size: 3rem; }
            h2 { font-size: 2.5rem; }
            
            /* NAVIGATION FOR TABLET */
            .navbar .container {
                padding: 5px 15px;
            }
            
            .logo-icon {
                width: 70px;
                height: 70px;
            }
            
            .logo-text {
                font-size: 1.5rem;
            }
            
            .nav-links {
                gap: 15px;
            }
            
            .nav-link {
                font-size: 0.9rem;
            }
            
            /* BLOG GRID FOR TABLET */
            #wordpress-posts {
                grid-template-columns: repeat(2, 1fr);
            }
            
            /* HAMBURGER MENU */
            .nav-links {
                display: none;
                position: fixed;
                top: 70px;
                left: 0;
                right: 0;
                background: var(--card-darker);
                flex-direction: column;
                padding: 20px;
                gap: 15px;
                border-top: 2px solid var(--primary);
                box-shadow: 0 10px 30px rgba(0,0,0,0.5);
                backdrop-filter: blur(10px);
                z-index: 999;
                max-height: calc(100vh - 70px);
                overflow-y: auto;
            }
            
            .nav-links.show {
                display: flex;
            }
            
            .nav-link {
                padding: 12px 0;
                font-size: 1rem;
                justify-content: center;
            }
            
            .menu-toggle {
                display: block;
                margin-left: auto;
            }
            
            .article-header-title {
                font-size: 2.2rem;
            }
            
            .article-header-content {
                flex-direction: column;
                text-align: center;
            }
            
            .article-close-btn {
                top: 20px;
                right: 20px;
            }
            
            .article-back-btn {
                align-self: center;
            }
        }
        
        @media (max-width: 768px) {
            .blog-header {
                margin-top: 65px;
                padding: 60px 0;
            }
            
            .blog-header::before {
                font-size: 10rem;
            }
            
            .blog-title {
                font-size: 2.2rem;
            }
            
            .post-title {
                font-size: 1.3rem;
            }
            
            .article-header-title {
                font-size: 2rem;
            }
            
            .article-content p {
                font-size: 1.1rem;
            }
            
            .article-content h2 {
                font-size: 1.8rem;
            }
            
            .article-content h3 {
                font-size: 1.5rem;
            }
            
            .article-navigation {
                flex-direction: column;
                gap: 20px;
            }
            
            /* MOBILE NAVIGATION */
            .navbar .container {
                padding: 5px 10px;
                min-height: 60px;
            }
            
            .logo-icon {
                width: 60px;
                height: 60px;
            }
            
            .logo-text {
                font-size: 1.3rem;
            }
            
            .nav-links {
                top: 60px;
            }
            
            .nav-link {
                padding: 12px 0;
            }
            
            .menu-toggle {
                margin-left: auto;
            }
        }
        
        @media (max-width: 576px) {
            .container {
                padding: 0 15px;
            }
            
            .blog-title {
                font-size: 1.8rem;
            }
            
            #wordpress-posts {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .post-content-wrapper {
                padding: 20px;
            }
            
            .article-header-title {
                font-size: 1.6rem;
            }
            
            .article-header-meta {
                flex-direction: column;
                gap: 15px;
                align-items: flex-start;
            }
            
            .article-close-btn {
                top: 20px;
                right: 20px;
                width: 50px;
                height: 50px;
            }
            
            /* FOOTER */
            .footer-grid {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 30px;
            }
            
            .footer-col h4::after {
                left: 50%;
                transform: translateX(-50%);
            }
            
            .social {
                justify-content: center;
            }
        }
        
        /* TOUCH-FRIENDLY IMPROVEMENTS */
        @media (hover: none) and (pointer: coarse) {
            .btn, button {
                min-height: 44px;
                min-width: 44px;
            }
            
            .nav-link {
                padding: 12px 0;
            }
            
            /* Larger touch targets for mobile */
            .logo {
                min-height: 44px;
                min-width: 44px;
            }
            
            .menu-toggle {
                min-height: 44px;
                min-width: 44px;
            }
        }
        
        /* SCROLLBAR STYLING */
        ::-webkit-scrollbar {
            width: 10px;
        }
        ::-webkit-scrollbar-track {
            background: var(--darker);
        }
        ::-webkit-scrollbar-thumb {
            background: var(--primary);
            border-radius: 5px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: var(--primary-dark);
        }