
    /* Resetting default browser styles */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: 'Roboto', sans-serif;
        background: linear-gradient(135deg, #00064D, #4D007A, #00B38F);
        color: #FFFFFF;
        line-height: 1.6;
        padding: 20px;
        animation: aurora-move 15s linear infinite;
    }

    @keyframes aurora-move {
        0% { background-position: 0% 50%; }
        50% { background-position: 100% 50%; }
        100% { background-position: 0% 50%; }
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
        background: rgba(0, 0, 0, 0.6);
        border-radius: 10px;
        backdrop-filter: blur(10px);
    }

    header {
        text-align: center;
        margin-bottom: 40px;
    }

    header h1 {
        font-family: 'Space Grotesk', sans-serif;
        font-size: 48px;
        background: -webkit-linear-gradient(#4D00FF, #00FFC3);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        margin-bottom: 10px;
    }

    header p {
        font-size: 18px;
        color: #CCCCCC;
    }

    nav {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-bottom: 40px;
    }

    nav a {
        color: #FFFFFF;
        text-decoration: none;
        font-size: 16px;
        position: relative;
        transition: color 0.3s ease;
    }

    nav a::after {
        content: '';
        position: absolute;
        width: 0%;
        height: 2px;
        background: linear-gradient(135deg, #00B38F, #4D00FF);
        left: 0;
        bottom: -5px;
        transition: width 0.3s ease;
    }

    nav a:hover::after {
        width: 100%;
    }

    .cta-button {
        display: inline-block;
        padding: 15px 30px;
        background: #00B38F;
        color: #FFFFFF;
        border: none;
        border-radius: 5px;
        text-decoration: none;
        font-size: 18px;
        transition: background 0.3s ease, box-shadow 0.3s ease;
    }

    .cta-button:hover {
        background: linear-gradient(135deg, #00B38F, #4D00FF);
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    }

    article {
        margin-bottom: 40px;
    }

    article h2 {
        font-size: 36px;
        margin-bottom: 20px;
        color: #FFFFFF;
    }

    article h3 {
        font-size: 28px;
        margin: 20px 0;
        color: #00FFC3;
    }

    article h4 {
        font-size: 24px;
        margin: 15px 0;
        color: #FF8C00;
    }

    article p {
        font-size: 18px;
        margin-bottom: 15px;
        color: #DDDDDD;
    }

    article pre {
        background: rgba(255, 255, 255, 0.1);
        padding: 15px;
        border-radius: 5px;
        overflow-x: auto;
        margin-bottom: 15px;
    }

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

    article ul {
        list-style: disc inside;
        margin-bottom: 15px;
    }

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

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

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

    .sample-display {
        background: rgba(50, 50, 50, 0.8);
        padding: 20px;
        border-radius: 10px;
        margin-bottom: 40px;
    }

    .sample-display h2 {
        font-size: 32px;
        margin-bottom: 15px;
        color: #FFA500;
    }

    .sample-display p {
        font-size: 16px;
        color: #BBBBBB;
    }

    .images-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
        margin-top: 20px;
    }

    .images-grid img {
        width: 100%;
        height: auto;
        border-radius: 5px;
        transition: transform 0.3s ease;
    }

    .images-grid img:hover {
        transform: scale(1.05);
    }

    footer {
        text-align: center;
        padding: 20px 0;
        color: #888888;
        font-size: 14px;
    }

    /* Responsive Styles */
    @media (max-width: 1440px) {
        body {
            padding: 15px;
        }

        header h1 {
            font-size: 40px;
        }

        article h2 {
            font-size: 32px;
        }

        article h3 {
            font-size: 24px;
        }

        article h4 {
            font-size: 20px;
        }

        .cta-button {
            padding: 12px 25px;
            font-size: 16px;
        }
    }

    @media (max-width: 1200px) {
        .container {
            padding: 15px;
        }
    }

    @media (max-width: 1024px) {
        nav {
            flex-direction: column;
            gap: 10px;
        }

        article table, article pre {
            font-size: 14px;
        }
    }

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

        article h2 {
            font-size: 28px;
        }

        article p, article ul, article table, article pre {
            font-size: 16px;
        }
    }

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

        nav a {
            font-size: 14px;
        }

        .cta-button {
            padding: 10px 20px;
            font-size: 14px;
        }

        .images-grid {
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        }
    }

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

        article h2 {
            font-size: 24px;
        }

        .images-grid {
            grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        }
    }

