
    /* Reset and base styles */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    body {
        font-family: 'Roboto', sans-serif;
        background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
        color: #ffffff;
        line-height: 1.6;
        overflow-x: hidden;
    }
    a {
        color: #ff4081;
        text-decoration: none;
        rel: nofollow;
    }
    a:hover {
        text-decoration: underline;
    }
    /* Container */
    .container {
        width: 90%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px 0;
    }
    /* Header */
    header {
        position: relative;
        height: 100vh;
        background: radial-gradient(circle, rgba(255,87,34,1) 0%, rgba(0,0,0,1) 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        animation: aurora-move 15s linear infinite;
    }
    header h1 {
        font-size: 48px;
        color: #ffffff;
        text-shadow: 2px 2px 10px rgba(0,0,0,0.7);
    }
    /* Navigation */
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background-color: rgba(0, 0, 51, 0.8);
        padding: 15px 0;
        z-index: 1000;
    }
    .navbar ul {
        list-style: none;
        display: flex;
        justify-content: center;
    }
    .navbar li {
        margin: 0 15px;
    }
    .navbar a {
        font-size: 18px;
        font-weight: bold;
        transition: color 0.3s ease;
    }
    .navbar a:hover {
        color: #ff4081;
    }
    /* Sections */
    section {
        padding: 80px 0;
        position: relative;
    }
    .techstorm {
        background: url('https://images.gptkong.com/demo/sample1.png') no-repeat center center/cover;
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    .techstorm h2 {
        font-size: 36px;
        margin-bottom: 20px;
    }
    .techstorm p {
        font-size: 18px;
        max-width: 800px;
        margin: 0 auto;
    }
    /* Example Article */
    .example-article {
        background: rgba(255, 255, 255, 0.1);
        padding: 40px;
        border-radius: 10px;
        box-shadow: 0 0 20px rgba(0,0,0,0.5);
    }
    .example-article h2 {
        font-size: 32px;
        margin-bottom: 20px;
    }
    .example-article h3, .example-article h4 {
        font-size: 24px;
        margin-top: 20px;
    }
    .example-article p {
        font-size: 16px;
        margin: 15px 0;
    }
    .example-article pre {
        background: #1a1a1a;
        padding: 15px;
        border-radius: 5px;
        overflow-x: auto;
    }
    .example-article code {
        color: #ffab40;
        font-family: 'Courier New', Courier, monospace;
    }
    /* Modules */
    .modules {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
    }
    .module {
        background: rgba(255, 255, 255, 0.1);
        width: 100%;
        max-width: 300px;
        margin: 20px;
        padding: 20px;
        border-radius: 10px;
        text-align: center;
        box-shadow: 0 0 15px rgba(0,0,0,0.3);
        transition: transform 0.3s ease;
    }
    .module:hover {
        transform: scale(1.05);
    }
    .module img {
        width: 100%;
        height: auto;
        border-radius: 5px;
        margin-bottom: 15px;
    }
    .module h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }
    .module p {
        font-size: 14px;
    }
    /* Footer */
    footer {
        background: rgba(0, 0, 0, 0.8);
        padding: 20px 0;
        text-align: center;
        font-size: 14px;
    }
    /* Animations */
    @keyframes aurora-move {
        0% { background-position: 0% 50%; }
        50% { background-position: 100% 50%; }
        100% { background-position: 0% 50%; }
    }
    /* Responsive */
    @media (max-width: 1440px) {
        header h1 {
            font-size: 42px;
        }
        .navbar a {
            font-size: 16px;
        }
        .example-article h2 {
            font-size: 28px;
        }
        .module {
            max-width: 280px;
        }
    }
    @media (max-width: 1200px) {
        .modules {
            flex-direction: column;
            align-items: center;
        }
    }
    @media (max-width: 1024px) {
        .example-article {
            padding: 30px;
        }
        .module {
            max-width: 250px;
        }
    }
    @media (max-width: 768px) {
        .navbar ul {
            flex-direction: column;
        }
        .navbar li {
            margin: 10px 0;
        }
        .techstorm h2 {
            font-size: 28px;
        }
        .module {
            max-width: 100%;
        }
    }
    @media (max-width: 480px) {
        header h1 {
            font-size: 32px;
        }
        .navbar a {
            font-size: 14px;
        }
        .example-article h2 {
            font-size: 24px;
        }
        .techstorm p {
            font-size: 16px;
        }
    }
    @media (max-width: 320px) {
        header h1 {
            font-size: 24px;
        }
        .example-article {
            padding: 20px;
        }
    }

