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

    body {
        font-family: 'Poppins', sans-serif;
        line-height: 1.6;
        color: #ffffff;
        background: radial-gradient(circle, rgba(0, 51, 102, 0.8), rgba(102, 0, 153, 0.8), rgba(0, 204, 153, 0.8));
        background-size: cover;
        animation: aurora-move 15s linear infinite;
        padding: 20px;
    }

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

    header {
        text-align: center;
        padding: 50px 20px;
        background: rgba(0, 0, 0, 0.5);
        border-radius: 15px;
        margin-bottom: 30px;
    }

    header h1 {
        font-size: 3em;
        background: linear-gradient(45deg, #FFD700, #B8860B);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        animation: metallic-glow 5s ease-in-out infinite;
    }

    @keyframes metallic-glow {
        0% {
            text-shadow: 0 0 5px #FFD700, 0 0 10px #FFD700, 0 0 20px #FFD700, 0 0 40px #FFA500;
        }
        50% {
            text-shadow: 0 0 10px #FFD700, 0 0 20px #FFA500, 0 0 30px #FF8C00, 0 0 50px #FF4500;
        }
        100% {
            text-shadow: 0 0 5px #FFD700, 0 0 10px #FFD700, 0 0 20px #FFD700, 0 0 40px #FFA500;
        }
    }

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

    nav a {
        color: #ffffff;
        text-decoration: none;
        font-size: 1.2em;
        position: relative;
        padding: 5px 10px;
        transition: color 0.3s ease;
    }

    nav a::after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        background: #00FF7F;
        left: 0;
        bottom: 0;
        transition: width 0.3s;
    }

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

    .container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .intro {
        background: rgba(255, 255, 255, 0.1);
        padding: 20px;
        border-radius: 10px;
        margin-bottom: 30px;
    }

    .intro h2 {
        font-size: 2em;
        margin-bottom: 10px;
    }

    .intro p {
        font-size: 1.1em;
    }

    .gallery {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 20px;
        margin-bottom: 30px;
    }

    .gallery img {
        width: 100%;
        border-radius: 10px;
        transition: transform 0.3s ease;
    }

    .gallery img:hover {
        transform: scale(1.05);
    }

    .article-section {
        background: rgba(0, 0, 0, 0.6);
        padding: 20px;
        border-radius: 10px;
        margin-bottom: 30px;
    }

    .article-section h2 {
        font-size: 2em;
        margin-bottom: 15px;
        text-align: center;
    }

    .article-section h3 {
        font-size: 1.5em;
        margin-top: 20px;
        margin-bottom: 10px;
        color: #00FFFF;
    }

    .article-section p {
        font-size: 1.1em;
        margin-bottom: 15px;
    }

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

    .article-section code {
        color: #7CFC00;
        font-family: 'Courier New', Courier, monospace;
    }

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

    table th, table td {
        border: 1px solid #00FF7F;
        padding: 10px;
        text-align: left;
    }

    table th {
        background: rgba(0, 0, 0, 0.7);
    }

    .example-display {
        background: rgba(255, 255, 255, 0.05);
        padding: 20px;
        border-radius: 10px;
        margin-bottom: 30px;
    }

    .example-display h2 {
        font-size: 1.8em;
        margin-bottom: 15px;
        text-align: center;
        color: #FF69B4;
    }

    .example-display article {
        max-height: 400px;
        overflow-y: auto;
    }

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

    footer p {
        font-size: 1em;
    }

    /* Responsive Design */
    @media (max-width: 320px) {
        header h1 {
            font-size: 2em;
        }
        nav a {
            font-size: 1em;
        }
        .intro, .article-section, .example-display {
            padding: 15px;
        }
    }

    @media (max-width: 480px) {
        header h1 {
            font-size: 2.5em;
        }
        nav a {
            font-size: 1.1em;
        }
    }

    @media (max-width: 768px) {
        .gallery {
            grid-template-columns: 1fr;
        }
        .article-section h2 {
            font-size: 1.8em;
        }
    }

    @media (min-width: 1024px) and (max-width: 1200px) {
        .container {
            padding: 0 40px;
        }
    }

    @media (min-width: 1440px) {
        header h1 {
            font-size: 3.5em;
        }
        .article-section h2 {
            font-size: 2.5em;
        }
    }

