
    /* CSS Reset */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    /* Body Styling */
    body {
        font-family: 'Roboto Mono', monospace;
        background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
        color: #ffffff;
        line-height: 1.6;
        padding: 20px;
        transform: skewX(-10deg);
    }

    /* Container */
    .container {
        max-width: 1200px;
        margin: 0 auto;
        transform: skewX(10deg);
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    /* Header */
    header {
        text-align: center;
        padding: 40px 20px;
        background: linear-gradient(45deg, #141e30, #243b55);
        border-radius: 15px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    }

    header h1 {
        font-size: 3em;
        margin-bottom: 10px;
        color: #39ff14;
        text-transform: uppercase;
        letter-spacing: 2px;
    }

    header p {
        font-size: 1.2em;
        color: #ff8c00;
    }

    /* Article Section */
    .article-section {
        background: rgba(255, 255, 255, 0.1);
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    }

    .article-section h2 {
        font-size: 2em;
        color: #39ff14;
        margin-bottom: 20px;
        text-align: center;
    }

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

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

    .article-section pre {
        background: #1e1e1e;
        padding: 15px;
        border-radius: 8px;
        overflow-x: auto;
        margin-bottom: 15px;
    }

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

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

    .article-section th, .article-section td {
        border: 1px solid #ffffff;
        padding: 10px;
        text-align: left;
    }

    .article-section th {
        background: #243b55;
    }

    /* Example Data Section */
    .example-data {
        background: rgba(255, 255, 255, 0.05);
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }

    .example-data h2 {
        color: #39ff14;
        margin-bottom: 15px;
    }

    .example-data ul {
        list-style: none;
        padding-left: 0;
    }

    .example-data li {
        background: #2c5364;
        padding: 10px;
        margin-bottom: 10px;
        border-radius: 5px;
    }

    /* Images Grid */
    .images-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 10px;
    }

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

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

    /* Footer Notification */
    footer {
        text-align: center;
        padding: 20px;
        background: #141e30;
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.2);
        font-size: 1.2em;
        color: #ffffff;
    }

    /* Responsive Design */
    @media (max-width: 1440px) {
        header h1 {
            font-size: 2.5em;
        }
    }

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

    @media (max-width: 1024px) {
        .article-section, .example-data {
            padding: 20px;
        }
    }

    @media (max-width: 768px) {
        header h1 {
            font-size: 2em;
        }
        .article-section h2, .example-data h2 {
            font-size: 1.8em;
        }
    }

    @media (max-width: 480px) {
        body {
            padding: 10px;
        }
        header h1 {
            font-size: 1.5em;
        }
        .article-section h2, .example-data h2 {
            font-size: 1.5em;
        }
    }

    @media (max-width: 320px) {
        header p, footer {
            font-size: 1em;
        }
    }

    /* Button Styles */
    .button {
        display: inline-block;
        padding: 10px 20px;
        background: #39ff14;
        color: #000;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .button::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        background: rgba(255, 255, 255, 0.3);
        transform: translate(-50%, -50%);
        border-radius: 50%;
        transition: all 0.3s ease;
    }

    .button:hover::after {
        width: 200%;
        height: 200%;
    }

    /* Skewed Elements */
    .skewed-section {
        transform: skewX(10deg);
        background: #203a43;
        padding: 20px;
        border-radius: 10px;
    }

    /* Code Highlighting */
    .code-block {
        background: #1e1e1e;
        padding: 15px;
        border-radius: 8px;
        overflow-x: auto;
    }

    /* Links */
    a {
        color: #39ff14;
        text-decoration: none;
    }

    a:hover {
        text-decoration: underline;
    }

