
    body {
        margin: 0;
        font-family: 'Roboto', sans-serif;
        background: radial-gradient(circle, #0D1B2A, #000000);
        color: #ffffff;
        line-height: 1.6;
        overflow-x: hidden;
    }
    h1, h2, h3 {
        font-family: 'Poppins', sans-serif;
        font-weight: bold;
        color: #772CE8;
    }
    a {
        color: #16FF00;
        text-decoration: none;
    }
    a:hover {
        text-shadow: 0 0 5px #16FF00;
        transition: all 0.3s ease;
    }
    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
    }
    .header {
        text-align: center;
        padding: 50px 20px;
        background: linear-gradient(135deg, #0D1B2A, #000000);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    }
    .header h1 {
        font-size: 3rem;
        margin-bottom: 20px;
    }
    .header p {
        font-size: 1.2rem;
        color: #ccc;
    }
    .section {
        padding: 40px 20px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 10px;
        margin-bottom: 40px;
        position: relative;
        overflow: hidden;
    }
    .section::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent);
        transform: rotate(45deg);
        z-index: 0;
    }
    .section-content {
        position: relative;
        z-index: 1;
    }
    .code-block {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 5px;
        padding: 15px;
        font-family: 'Consolas', monospace;
        color: #16FF00;
        overflow-x: auto;
    }
    table {
        width: 100%;
        border-collapse: collapse;
        margin: 20px 0;
    }
    th, td {
        border: 1px solid rgba(255, 255, 255, 0.2);
        padding: 10px;
        text-align: left;
    }
    th {
        background: rgba(255, 255, 255, 0.1);
    }
    .gallery {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
    }
    .gallery img {
        width: 100%;
        height: auto;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    }
    @media (max-width: 768px) {
        .header h1 {
            font-size: 2rem;
        }
        .section {
            padding: 20px;
        }
        .gallery {
            grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        }
    }

