
    body {
        margin: 0;
        font-family: 'Open Sans', sans-serif;
        background: linear-gradient(135deg, #0A0E2F, black);
        color: #ffffff;
        overflow-x: hidden;
    }
    .header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background: rgba(10, 14, 47, 0.8);
        backdrop-filter: blur(10px);
        z-index: 1000;
        padding: 15px 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .header h1 {
        font-family: 'Roboto Mono', monospace;
        font-size: 24px;
        text-shadow: 0px 4px 6px rgba(255, 215, 0, 0.5);
        margin: 0;
    }
    .nav-links a {
        color: #FFD700;
        text-decoration: none;
        margin-left: 20px;
        font-size: 16px;
        transition: color 0.3s ease;
    }
    .nav-links a:hover {
        color: #8BC6EC;
    }
    .content {
        padding-top: 80px;
        padding-bottom: 40px;
    }
    .section {
        padding: 40px 20px;
        max-width: 1200px;
        margin: 0 auto;
        position: relative;
        overflow: hidden;
    }
    .section:nth-child(even) {
        background: rgba(255, 255, 255, 0.05);
    }
    .section h2 {
        font-family: 'Roboto Mono', monospace;
        font-size: 32px;
        text-shadow: 0px 4px 6px rgba(255, 215, 0, 0.5);
        margin-bottom: 20px;
    }
    .section p {
        line-height: 1.6;
        margin-bottom: 20px;
    }
    .grid-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    .card {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        padding: 20px;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .card:hover {
        transform: translateY(-10px);
        box-shadow: 0px 8px 12px rgba(0, 0, 0, 0.3);
    }
    pre {
        background: rgba(255, 255, 255, 0.1);
        padding: 15px;
        border-radius: 5px;
        overflow-x: auto;
    }
    code {
        color: #FFD700;
        font-family: 'Roboto Mono', monospace;
    }
    table {
        width: 100%;
        border-collapse: collapse;
        margin-bottom: 20px;
    }
    th, td {
        border: 1px solid rgba(255, 255, 255, 0.2);
        padding: 10px;
        text-align: left;
    }
    th {
        background: rgba(255, 255, 255, 0.1);
    }
    .particle-effect {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        z-index: -1;
    }
    .particle {
        position: absolute;
        width: 5px;
        height: 5px;
        background: #FFD700;
        border-radius: 50%;
        animation: particle-motion 5s infinite alternate;
    }
    @keyframes particle-motion {
        0% { transform: translateX(-10px); }
        50% { transform: translateX(10px); }
        100% { transform: translateX(-10px); }
    }
    @media (max-width: 768px) {
        .grid-container {
            grid-template-columns: 1fr;
        }
        .header h1 {
            font-size: 20px;
        }
        .section h2 {
            font-size: 24px;
        }
    }

