        /* Blog Container */
        .blog-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 120px 24px 80px;
            position: relative;
            z-index: 1;
        }

        /* Blog Header */
        .blog-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .blog-header h1 {
            font-family: 'Satoshi', sans-serif;
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 700;
            margin-bottom: 1rem;
            color: #fff;
            letter-spacing: -0.03em;
        }

        .blog-header p {
            font-size: 1.25rem;
            color: rgba(255, 255, 255, 0.7);
            max-width: 600px;
            margin: 0 auto;
        }

        /* Blog Grid */
        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-bottom: 60px;
            max-width: 100%;
            overflow: hidden;
        }

        /* Blog Card */
        .blog-card {
            background: rgba(10, 10, 10, 0.95);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.3s ease;
            text-decoration: none;
            display: flex;
            flex-direction: column;
            height: 100%;
            position: relative;
        }

        .blog-card:hover {
            transform: translateY(-5px);
            border-color: rgba(255, 255, 255, 0.2);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
        }

        .blog-card-image {
            width: 100%;
            height: 200px;
            background: rgba(255, 255, 255, 0.05);
            position: relative;
            overflow: hidden;
        }

        .blog-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .blog-card-content {
            padding: 2rem;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .blog-card h2 {
            font-family: 'Satoshi', sans-serif;
            font-size: 1.5rem;
            font-weight: 600;
            color: #fff;
            margin-bottom: 1rem;
            line-height: 1.3;
        }

        .blog-card-excerpt {
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 1.5rem;
            flex-grow: 1;
            line-height: 1.6;
        }

        .blog-card-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.9rem;
        }

        /* Featured Post Section */
        .featured-post-section {
            margin: 3rem 0 4rem 0;
        }

        .featured-label {
            font-size: 0.8125rem;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.7);
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 1.5rem;
        }

        .featured-post-card {
            display: flex;
            gap: 2rem;
            background: rgba(10, 10, 10, 0.95);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            overflow: hidden;
            text-decoration: none;
            transition: all 0.3s ease;
            padding: 2rem;
        }

        .featured-post-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
            border-color: rgba(255, 255, 255, 0.2);
        }

        .featured-post-content {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .featured-title {
            font-family: 'Satoshi', sans-serif;
            font-size: 2rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .featured-excerpt {
            color: rgba(255, 255, 255, 0.7);
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .featured-meta {
            display: flex;
            gap: 2rem;
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.9rem;
        }

        .featured-post-image {
            width: 400px;
            height: 300px;
            border-radius: 12px;
            overflow: hidden;
            flex-shrink: 0;
        }

        .featured-post-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        @media (max-width: 968px) {
            .featured-post-card {
                flex-direction: column;
            }

            .featured-post-image {
                width: 100%;
                height: 250px;
            }

            .featured-title {
                font-size: 1.5rem;
            }
        }

        /* Search Section */
        .search-section {
            display: flex;
            justify-content: center;
            margin: 2rem 0;
        }

        .search-container {
            display: flex;
            max-width: 500px;
            width: 100%;
            background: rgba(10, 10, 10, 0.95);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 50px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .search-container:focus-within {
            border-color: rgba(255, 255, 255, 0.3);
        }

        .search-input {
            flex: 1;
            padding: 0.75rem 1.5rem;
            background: transparent;
            border: none;
            color: #fff;
            font-size: 1rem;
            outline: none;
        }

        .search-input::placeholder {
            color: rgba(255, 255, 255, 0.4);
        }

        .search-btn {
            padding: 0.75rem 1.5rem;
            background: #fff;
            border: none;
            color: #000;
            cursor: pointer;
            transition: opacity 0.3s ease;
        }

        .search-btn:hover {
            opacity: 0.9;
        }

        /* Category Filter */
        .category-filter {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1rem;
            margin: 3rem 0;
            position: relative;
            z-index: 10;
        }

        .category-btn {
            padding: 0.75rem 1.5rem;
            background: rgba(10, 10, 10, 0.95);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 50px;
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.95rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .category-btn:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.2);
            color: #fff;
        }

        .category-btn.active {
            background: #fff;
            border-color: #fff;
            color: #000;
        }

        .category-count {
            opacity: 0.7;
            font-size: 0.85rem;
        }

        /* Category Dropdown */
        .category-dropdown {
            position: relative;
            display: inline-block;
            z-index: 10;
        }

        .category-dropdown-btn {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .dropdown-arrow {
            transition: transform 0.3s ease;
        }

        .category-dropdown-btn.active .dropdown-arrow {
            transform: rotate(180deg);
        }

        .category-dropdown-menu {
            position: absolute;
            top: calc(100% + 0.5rem);
            left: 0;
            min-width: 220px;
            background: rgba(10, 10, 10, 0.98);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 16px;
            padding: 0.5rem;
            display: none;
            flex-direction: column;
            gap: 0.25rem;
            z-index: 100;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
            max-height: 400px;
            overflow-y: auto;
        }

        .category-dropdown-menu.show {
            display: flex;
            animation: dropdownFadeIn 0.3s ease;
        }

        @keyframes dropdownFadeIn {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .category-dropdown-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.75rem 1rem;
            background: transparent;
            border: 1px solid transparent;
            border-radius: 12px;
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.95rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s ease;
            text-decoration: none;
        }

        .category-dropdown-item:hover {
            background: rgba(255, 255, 255, 0.1);
            color: #fff;
        }

        .category-dropdown-item.active {
            background: #fff;
            color: #000;
        }

        /* Clear Filters Button */
        .clear-filters-btn {
            padding: 0.75rem 1.5rem;
            background: rgba(239, 68, 68, 0.1);
            border: 1px solid rgba(239, 68, 68, 0.3);
            border-radius: 50px;
            color: #EF4444;
            font-size: 0.95rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            text-decoration: none;
        }

        .clear-filters-btn:hover {
            background: rgba(239, 68, 68, 0.2);
            border-color: rgba(239, 68, 68, 0.5);
        }

        /* Pagination */
        .pagination {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-top: 60px;
        }

        .pagination a,
        .pagination span {
            padding: 10px 20px;
            background: rgba(10, 10, 10, 0.95);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: all 0.3s ease;
            font-weight: 500;
        }

        .pagination a:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.2);
            color: #fff;
        }

        .pagination .current {
            background: #fff;
            color: #000;
            border-color: #fff;
        }

        /* Newsletter Section */
        .newsletter-section {
            margin: 4rem 0;
            padding: 3rem 2rem;
            background: rgba(10, 10, 10, 0.95);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
        }

        .newsletter-container {
            max-width: 600px;
            margin: 0 auto;
            text-align: center;
        }

        .newsletter-container h2 {
            font-family: 'Satoshi', sans-serif;
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: #fff;
        }

        .newsletter-container p {
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 2rem;
        }

        .newsletter-form {
            display: flex;
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .newsletter-form input[type="email"] {
            flex: 1;
            padding: 0.875rem 1.25rem;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            color: #fff;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .newsletter-form input[type="email"]:focus {
            outline: none;
            border-color: rgba(255, 255, 255, 0.3);
        }

        .newsletter-form input[type="email"]::placeholder {
            color: rgba(255, 255, 255, 0.4);
        }

        .newsletter-form button {
            padding: 0.875rem 2rem;
            background: #fff;
            border: none;
            border-radius: 12px;
            color: #000;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .newsletter-form button:hover {
            opacity: 0.9;
        }

        .newsletter-privacy {
            font-size: 0.875rem;
            color: rgba(255, 255, 255, 0.5);
        }

        .newsletter-message {
            margin-top: 1rem;
            padding: 0.75rem 1rem;
            border-radius: 8px;
            display: none;
        }

        .newsletter-message.success {
            display: block;
            background: rgba(34, 197, 94, 0.1);
            border: 1px solid rgba(34, 197, 94, 0.3);
            color: #22C55E;
        }

        .newsletter-message.error {
            display: block;
            background: rgba(239, 68, 68, 0.1);
            border: 1px solid rgba(239, 68, 68, 0.3);
            color: #EF4444;
        }

        @media (max-width: 768px) {
            .newsletter-form {
                flex-direction: column;
            }

            .newsletter-form button {
                width: 100%;
            }

            .blog-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .blog-header h1 {
                font-size: 2rem;
            }

            .blog-header p {
                font-size: 1rem;
            }

            .pagination {
                flex-wrap: wrap;
            }

            .category-filter {
                gap: 0.75rem;
            }

            .category-btn,
            .clear-filters-btn {
                padding: 0.875rem 1.25rem;
                font-size: 0.9rem;
            }

            .category-dropdown-menu {
                left: auto;
                right: 0;
                min-width: 280px;
            }
        }

        /* Desktop only */
        @media (min-width: 769px) {
            .desktop-only { display: inline-flex; }
        }
        @media (max-width: 768px) {
            .desktop-only { display: none !important; }
        }
