 :root {
            --primary: #7388d2;
            --primary-dark: #5a72c5;
            --primary-light: #8fa0e0;
            --secondary: #2e96a5;
            --secondary-dark: #247a87;
            --secondary-light: #3ab2c4;
            --black: #060606;
            --dark: #0f0f0f;
            --darker-gray: #1a1a1a;
            --dark-gray: #252525;
            --medium-gray: #3d3d3d;
            --white: #ffffff;
            --light-gray: #e0e0e0;
            --border: rgba(115, 136, 210, 0.3);
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.3);
            --card-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
            --gradient: linear-gradient(135deg, #7388d2 0%, #2e96a5 100%);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background-color: var(--black);
            color: var(--white);
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Remove all underlines */
        a {
            text-decoration: none !important;
        }

        /* Particle background */
        #particles-js {
            position: fixed;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: -1;
            background-color: var(--black);
        }

        /* Glowing accent elements */
        .accent {
            position: fixed;
            z-index: -1;
            border-radius: 50%;
            filter: blur(60px);
            opacity: 0.15;
        }

        .accent-1 {
            width: 400px;
            height: 400px;
            background: var(--primary);
            top: -100px;
            right: -100px;
        }

        .accent-2 {
            width: 600px;
            height: 600px;
            background: var(--secondary);
            bottom: -200px;
            left: -200px;
        }

        /* Header - Glass morphism effect */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            padding: 1.5rem 3rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            background: rgba(15, 15, 15, 0.8);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border);
            transition: var(--transition);
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--primary);
            font-family: 'Montserrat', sans-serif;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .logo-dot {
            width: 8px;
            height: 8px;
            background: var(--primary);
            border-radius: 50%;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 2.5rem;
        }

        nav ul li a {
            color: var(--light-gray);
            font-weight: 500;
            font-size: 0.95rem;
            transition: var(--transition);
        }

        nav ul li a:hover {
            color: var(--primary);
        }

        .cta-button {
            padding: 0.8rem 2rem;
            background: var(--gradient);
            color: var(--white);
            border: none;
            border-radius: 4px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            font-size: 0.9rem;
            letter-spacing: 0.5px;
            box-shadow: 0 4px 15px rgba(115, 136, 210, 0.3);
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(115, 136, 210, 0.4);
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
        }

        /* Main content */
        main {
            margin-top: 6rem;
        }

        /* Blog Hero Section */
        .blog-hero {
            padding: 6rem 3rem 4rem;
            background: linear-gradient(135deg, rgba(15, 15, 15, 0.9) 0%, rgba(6, 6, 6, 1) 100%);
            text-align: center;
            border-bottom: 1px solid var(--border);
        }

        .blog-hero h1 {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            color: var(--white);
            line-height: 1.1;
            font-weight: 800;
            font-family: 'Montserrat', sans-serif;
        }

        .blog-hero h1 span {
            background: var(--gradient);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .blog-hero p {
            font-size: 1.1rem;
            color: var(--light-gray);
            margin-bottom: 2rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Blog Content */
        .blog-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 4rem 3rem;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }

        /* Articles Section */
        .articles {
            display: grid;
            gap: 3rem;
        }

        .article-card {
            background: var(--dark);
            border-radius: 8px;
            overflow: hidden;
            transition: var(--transition);
            border: 1px solid var(--border);
        }

        .article-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow);
        }

        .article-image {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }

        .article-content {
            padding: 2rem;
        }

        .article-meta {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
            color: var(--primary);
            font-size: 0.9rem;
        }

        .article-tag {
            background: rgba(115, 136, 210, 0.1);
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-weight: 600;
            font-size: 0.8rem;
            color: var(--primary);
        }

        .article-card h2 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            color: var(--white);
            font-family: 'Montserrat', sans-serif;
        }

        .article-card p {
            color: var(--light-gray);
            margin-bottom: 1.5rem;
        }

        .article-link {
            color: var(--primary);
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: var(--transition);
            cursor: pointer;
        }

        .article-link:hover {
            color: var(--primary-light);
        }

        /* Article expanded content */
        .article-expanded {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease-out;
            background: var(--darker-gray);
            margin: 0 -2rem -2rem;
            padding: 0 2rem;
        }

        .article-expanded-content {
            padding: 2rem 0;
            border-top: 1px solid var(--border);
        }

        .article-expanded h3 {
            font-size: 1.4rem;
            margin-bottom: 1rem;
            color: var(--white);
            font-family: 'Montserrat', sans-serif;
        }

        .article-expanded p {
            margin-bottom: 1.5rem;
            color: var(--light-gray);
        }

        .article-expanded ul {
            margin-bottom: 1.5rem;
            padding-left: 1.5rem;
        }

        .article-expanded li {
            margin-bottom: 0.5rem;
            color: var(--light-gray);
        }

        /* Sidebar */
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .sidebar-widget {
            background: var(--dark);
            border-radius: 8px;
            padding: 1.5rem;
            border: 1px solid var(--border);
        }

        .sidebar-title {
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
            color: var(--white);
            font-family: 'Montserrat', sans-serif;
            position: relative;
            padding-bottom: 0.5rem;
        }

        .sidebar-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background: var(--primary);
        }

        .search-form {
            display: flex;
            margin-bottom: 1.5rem;
        }

        .search-input {
            flex: 1;
            padding: 0.7rem 1rem;
            background: var(--darker-gray);
            border: 1px solid var(--medium-gray);
            border-radius: 4px 0 0 4px;
            color: var(--white);
            font-family: 'Inter', sans-serif;
        }

        .search-button {
            padding: 0 1rem;
            background: var(--primary);
            color: var(--white);
            border: none;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
            transition: var(--transition);
        }

        .search-button:hover {
            background: var(--primary-dark);
        }

        .popular-posts {
            list-style: none;
        }

        .popular-post {
            display: flex;
            gap: 1rem;
            margin-bottom: 1rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid var(--medium-gray);
        }

        .popular-post:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }

        .popular-post-image {
            width: 60px;
            height: 60px;
            border-radius: 4px;
            object-fit: cover;
        }

        .popular-post-content h4 {
            font-size: 0.9rem;
            margin-bottom: 0.3rem;
            color: var(--white);
        }

        .popular-post-content span {
            font-size: 0.8rem;
            color: var(--primary);
        }

        .categories {
            list-style: none;
        }

        .category {
            margin-bottom: 0.5rem;
        }

        .category a {
            display: flex;
            justify-content: space-between;
            color: var(--light-gray);
            padding: 0.5rem 0;
            transition: var(--transition);
        }

        .category a:hover {
            color: var(--primary);
        }

        .category-count {
            background: rgba(115, 136, 210, 0.1);
            color: var(--primary);
            padding: 0.2rem 0.5rem;
            border-radius: 20px;
            font-size: 0.8rem;
        }

        .tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }

        .tag {
            background: rgba(115, 136, 210, 0.1);
            color: var(--primary);
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.8rem;
            transition: var(--transition);
        }

        .tag:hover {
            background: var(--primary);
            color: var(--white);
        }

        /* Newsletter */
        .newsletter-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .newsletter-input {
            padding: 0.8rem 1rem;
            background: var(--darker-gray);
            border: 1px solid var(--medium-gray);
            border-radius: 4px;
            color: var(--white);
            font-family: 'Inter', sans-serif;
        }

        .newsletter-button {
            padding: 0.8rem;
            background: var(--gradient);
            color: var(--white);
            border: none;
            border-radius: 4px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }

        .newsletter-button:hover {
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
        }

        /* Pagination */
        .pagination {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin-top: 3rem;
        }

        .page-link {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--dark);
            color: var(--light-gray);
            border-radius: 4px;
            transition: var(--transition);
            border: 1px solid var(--medium-gray);
            cursor: pointer;
        }

        .page-link:hover, .page-link.active {
            background: var(--gradient);
            color: var(--white);
            border-color: var(--primary);
        }

        /* Footer - Minimalist */
        footer {
            padding: 4rem 3rem;
            background: var(--black);
            border-top: 1px solid var(--border);
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 3rem;
        }

        .footer-logo {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 1rem;
            font-family: 'Montserrat', sans-serif;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .footer-logo-dot {
            width: 8px;
            height: 8px;
            background: var(--primary);
            border-radius: 50%;
        }

        .footer-about p {
            color: var(--light-gray);
            margin-bottom: 1.5rem;
            font-size: 0.9rem;
        }

        .social-links {
            display: flex;
            gap: 1rem;
        }

        .social-link {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: rgba(115, 136, 210, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
            color: var(--primary);
            font-size: 0.9rem;
        }

        .social-link:hover {
            background: var(--primary);
            color: var(--white);
        }

        .footer-links h3 {
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
            color: var(--white);
            font-family: 'Montserrat', sans-serif;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.8rem;
        }

        .footer-links a {
            color: var(--light-gray);
            transition: var(--transition);
            font-size: 0.9rem;
        }

        .footer-links a:hover {
            color: var(--primary);
        }

        .copyright {
            text-align: center;
            padding-top: 3rem;
            margin-top: 3rem;
            border-top: 1px solid var(--border);
            color: var(--light-gray);
            font-size: 0.8rem;
        }

        /* Responsive design */
        @media (max-width: 1024px) {
            .blog-container {
                grid-template-columns: 1fr;
            }
            
            .sidebar {
                grid-row: 1;
            }
        }

        @media (max-width: 768px) {
            header {
                padding: 1rem;
            }
            
            .blog-hero h1 {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 576px) {
            .blog-hero h1 {
                font-size: 2rem;
            }
            
            .blog-hero p {
                font-size: 1rem;
            }
            
            nav ul {
                display: none;
            }
        }