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

    a {
        color: orange;
    }

    body {
        font-family: Inter, -apple-system, BlinkMacSystemFont, sans-serif;
        line-height: 1.8;
        text-align: justify;
        color: #fff;
        background: #0a0a0a;
        overflow-x: hidden;
    }

    .bg-animation {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
        background: radial-gradient(ellipse at center, #1a1a2e, #0a0a0a 70%);
    }

    .bg-animation:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23333" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
        animation: gridMove 20s linear infinite;
    }

    @keyframes gridMove {
        0% {
            transform: translate(0);
        }

        to {
            transform: translate(10px, 10px);
        }
    }

    header {
        position: relative;
        top: 0;
        width: 100%;
        z-index: 1000;
        background: rgba(10, 10, 10, 0.8);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
    }

    nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        /* padding: 1rem 0; */
        max-width: 1200px;
        margin: 0 auto;
        padding-left: 20px;
        padding-right: 20px;
    }

    .blog-container {
        max-width: 900px;
        margin: 0 auto;
        padding: 40px 20px 20px;
    }

    .blog-header {
        text-align: center;
        margin-bottom: 2rem;
        margin-top: 1rem;
        opacity: 0;
        animation: fadeInUp 1s ease forwards;
    }

    @keyframes fadeInUp {
        0% {
            opacity: 0;
            transform: translateY(30px);
        }

        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .blog-title {
        font-size: clamp(2.5rem, 5vw, 4rem);
        font-weight: 800;
        margin-bottom: 1.5rem;
        background: linear-gradient(135deg, #fff, #667eea);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        line-height: 1.2;
        max-width: 100%;
        word-wrap: break-word;
    }

    .blog-meta {
        display: flex;
        justify-content: center;
        gap: 2rem;
        color: #b0b0b0;
        font-size: 0.95rem;
        flex-wrap: wrap;
    }

    .blog-meta span {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .blog-content {
        opacity: 0;
        animation: fadeInUp 1s ease 0.3s forwards;
    }

    .blog-content p {
        margin-bottom: 1.8rem;
        color: #d0d0d0;
        font-size: 1.1rem;
        line-height: 1.9;
    }

    .blog-content h2 {
        font-size: 2rem;
        font-weight: 700;
        margin: 3rem 0 1.5rem;
        background: linear-gradient(135deg, #fff, #667eea);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .blog-content h3 {
        font-size: 1.5rem;
        font-weight: 600;
        margin: 2rem 0 1rem;
        color: #fff;
    }

    .blog-image {
        width: 100%;
        border-radius: 20px;
        margin: 3rem 0;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
        transition: transform 0.4s ease;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .blog-image:hover {
        transform: translateY(-10px);
    }

    .highlight-box {
        background: rgba(102, 126, 234, 0.1);
        border-left: 4px solid #667eea;
        padding: 1.5rem;
        margin: 2rem 0;
        border-radius: 8px;
        backdrop-filter: blur(20px);
    }

    .blog-footer {
        margin-top: 5rem;
        padding-top: 3rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        opacity: 0;
        animation: fadeInUp 1s ease 0.6s forwards;
    }

    .author-info {
        display: flex;
        align-items: center;
        gap: 1.5rem;
        margin-bottom: 3rem;
        padding: 2rem;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 15px;
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .author-avatar {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        background: linear-gradient(135deg, #667eea, #764ba2);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        font-weight: 700;
        color: #fff;
    }

    .author-details h4 {
        font-size: 1.2rem;
        margin-bottom: 0.3rem;
        color: #fff;
    }

    .author-details p {
        color: #b0b0b0;
        font-size: 0.95rem;
        margin: 0;
    }

    .related-posts {
        margin-top: 4rem;
    }

    .related-posts h3 {
        font-size: 2rem;
        font-weight: 700;
        margin-bottom: 2rem;
        text-align: center;
        background: linear-gradient(135deg, #fff, #667eea);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .posts-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }

    .post-card {
        background: rgba(255, 255, 255, 0.05);
        border-radius: 15px;
        padding: 2rem;
        transition: all 0.3s ease;
        border: 1px solid rgba(255, 255, 255, 0.1);
        text-decoration: none;
        display: block;
        margin: 30px;
        box-shadow: #0a0a0a;
    }

    .post-card:hover {
        transform: translateY(-10px);
        border-color: rgba(102, 126, 234, 0.5);
        box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
    }

    .post-card h4 {
        color: #fff;
        font-size: 1.3rem;
        margin-bottom: 1rem;
        font-weight: 600;
    }

    .post-card p {
        color: #b0b0b0;
        font-size: 0.95rem;
        margin: 0;
    }

    .post-date {
        color: #667eea;
        font-size: 0.85rem;
        margin-top: 1rem;
        display: block;
    }

    footer {
        padding: 1rem 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        text-align: center;
        color: #666;
        margin-top: 1rem;
    }

    @media (max-width: 768px) {
        .nav-links {
            display: none;
        }

        .blog-meta {
            flex-direction: column;
            gap: 0.5rem;
        }

        .author-info {
            flex-direction: column;
            text-align: center;
        }
    }