
    /* Reset and basic styles */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: 'Poppins', sans-serif;
        background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
        color: #ffffff;
        overflow-x: hidden;
    }

    a {
        color: #ff4da6;
        text-decoration: none;
    }

    a[rel="nofollow"] {
        /* No additional styles needed */
    }

    /* Container */
    .container {
        width: 90%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 50px 0;
    }

    /* Header */
    header {
        text-align: center;
        padding: 50px 0;
        background: rgba(0, 0, 0, 0.5);
        border-radius: 10px;
    }

    header h1 {
        font-size: 3em;
        text-shadow: 0 0 10px #fff, 0 0 20px #ff4da6, 0 0 30px #ff4da6;
        margin-bottom: 20px;
    }

    header p {
        font-size: 1.2em;
        line-height: 1.6;
    }

    /* Article Section */
    article {
        background: rgba(255, 255, 255, 0.1);
        padding: 30px;
        border-radius: 10px;
        margin-bottom: 50px;
    }

    article h2 {
        font-size: 2.5em;
        margin-bottom: 20px;
        text-align: center;
        color: #ff4da6;
    }

    article h3 {
        font-size: 1.8em;
        margin: 20px 0;
        color: #1cb5e0;
    }

    article p {
        font-size: 1em;
        line-height: 1.8;
        margin-bottom: 20px;
    }

    article pre {
        background: #1c1c1c;
        padding: 15px;
        border-radius: 5px;
        overflow-x: auto;
        margin-bottom: 20px;
    }

    article code {
        font-family: 'Courier New', Courier, monospace;
        color: #ff4da6;
    }

    article table {
        width: 100%;
        border-collapse: collapse;
        margin-bottom: 20px;
    }

    article table, th, td {
        border: 1px solid #ff4da6;
    }

    article th, td {
        padding: 10px;
        text-align: left;
    }

    article ul {
        list-style: none;
        padding-left: 0;
    }

    article ul li {
        background: url('https://images.gptkong.com/demo/sample3.png') no-repeat left center;
        background-size: 20px;
        padding-left: 30px;
        margin-bottom: 10px;
    }

    /* Image Gallery */
    .gallery {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
        margin-bottom: 50px;
    }

    .gallery img {
        width: 150px;
        height: 150px;
        object-fit: cover;
        border-radius: 10px;
    }

    /* Footer */
    footer {
        text-align: center;
        padding: 20px 0;
        background: rgba(0, 0, 0, 0.5);
        border-radius: 10px;
    }

    footer p {
        font-size: 1em;
    }

    /* Responsive Design */
    @media (max-width: 1440px) {
        header h1 {
            font-size: 2.5em;
        }

        article h2 {
            font-size: 2em;
        }
    }

    @media (max-width: 1200px) {
        .gallery img {
            width: 140px;
            height: 140px;
        }
    }

    @media (max-width: 1024px) {
        .container {
            width: 95%;
        }

        article {
            padding: 20px;
        }
    }

    @media (max-width: 768px) {
        header h1 {
            font-size: 2em;
        }

        article h2 {
            font-size: 1.8em;
        }

        .gallery img {
            width: 120px;
            height: 120px;
        }
    }

    @media (max-width: 480px) {
        header h1 {
            font-size: 1.5em;
        }

        article h2 {
            font-size: 1.5em;
        }

        .gallery img {
            width: 100px;
            height: 100px;
        }
    }

    @media (max-width: 320px) {
        header h1 {
            font-size: 1.2em;
        }

        article h2 {
            font-size: 1.2em;
        }

        .gallery img {
            width: 80px;
            height: 80px;
        }
    }

    /* Additional Visual Effects */
    .glow {
        animation: glow 2s infinite alternate;
    }

    @keyframes glow {
        from {
            text-shadow: 0 0 10px #fff, 0 0 20px #ff4da6, 0 0 30px #ff4da6;
        }
        to {
            text-shadow: 0 0 20px #fff, 0 0 30px #ff4da6, 0 0 40px #ff4da6;
        }
    }

