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

        body {
            font-family: 'Georgia', 'Times New Roman', serif;
            background-color: #000000;
            color: #e8e8e8;
            line-height: 1.7;
            padding: 0;
            margin: 0;
        }

        header {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            padding: 2rem 1rem;
            text-align: center;
            border-bottom: 3px solid #BAC9F1;
            box-shadow: 0 4px 12px rgba(186, 201, 241, 0.2);
        }

        h1 {
            color: #BAC9F1;
            font-size: 2.5rem;
            font-weight: 400;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 0.5rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        article {
            max-width: 900px;
            margin: 3rem auto;
            padding: 2.5rem;
            background: linear-gradient(to bottom, #1a1a2e 0%, #0f1419 100%);
            border-radius: 10px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
            border: 1px solid #2a2a4e;
        }

        article h2,
        article h3,
        article h4 {
            color: #BAC9F1;
            margin-top: 2rem;
            margin-bottom: 1rem;
            font-weight: 500;
            letter-spacing: 1px;
        }

        article h2 {
            font-size: 2rem;
            border-bottom: 2px solid #BAC9F1;
            padding-bottom: 0.5rem;
        }

        article h3 {
            font-size: 1.6rem;
        }

        article h4 {
            font-size: 1.3rem;
        }

        article p {
            margin-bottom: 1.5rem;
            color: #d0d0d0;
            text-align: justify;
            font-size: 1.05rem;
        }

        .transition-section {
            max-width: 900px;
            margin: 2rem auto;
            padding: 2rem 2.5rem;
            background: #16213e;
            border-radius: 8px;
            border-left: 4px solid #BAC9F1;
        }

        .transition-section p {
            color: #d0d0d0;
            font-size: 1.05rem;
            line-height: 1.7;
            margin-bottom: 1rem;
        }

        .transition-section p:last-child {
            margin-bottom: 0;
        }

        .links-section {
            max-width: 900px;
            margin: 3rem auto 4rem;
            padding: 2.5rem;
            background: linear-gradient(to bottom, #1a1a2e 0%, #0f1419 100%);
            border-radius: 10px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
            border: 1px solid #2a2a4e;
        }

        .links-section h3 {
            color: #BAC9F1;
            font-size: 1.5rem;
            margin-top: 2rem;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #3a3a6e;
            font-weight: 500;
            letter-spacing: 1px;
        }

        .links-section h3:first-child {
            margin-top: 0;
        }

        .links-section ul {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 0.8rem 2rem;
            margin-bottom: 2rem;
        }

        .links-section li {
            padding: 0;
        }

        .links-section a {
            color: #BAC9F1;
            text-decoration: none;
            font-size: 1rem;
            transition: all 0.3s ease;
            display: inline-block;
            padding: 0.3rem 0;
            position: relative;
        }

        .links-section a::before {
            content: "→ ";
            opacity: 0;
            transform: translateX(-10px);
            transition: all 0.3s ease;
            display: inline-block;
        }

        .links-section a:hover {
            color: #ffffff;
            transform: translateX(5px);
        }

        .links-section a:hover::before {
            opacity: 1;
            transform: translateX(0);
        }

        footer {
            text-align: center;
            padding: 2rem 1rem;
            background: #0a0a0a;
            color: #888;
            font-size: 0.9rem;
            border-top: 1px solid #2a2a4e;
        }

        @media (max-width: 768px) {
            h1 {
                font-size: 1.8rem;
                letter-spacing: 1px;
            }

            article,
            .transition-section,
            .links-section {
                margin: 2rem 1rem;
                padding: 1.5rem;
            }

            article h2 {
                font-size: 1.6rem;
            }

            article h3 {
                font-size: 1.4rem;
            }

            article h4 {
                font-size: 1.2rem;
            }

            .links-section ul {
                grid-template-columns: 1fr;
                gap: 0.6rem;
            }

            .links-section h3 {
                font-size: 1.3rem;
            }
        }

        @media (max-width: 480px) {
            header {
                padding: 1.5rem 0.5rem;
            }

            h1 {
                font-size: 1.5rem;
            }

            article,
            .transition-section,
            .links-section {
                padding: 1rem;
                margin: 1rem 0.5rem;
            }

            article p,
            .transition-section p {
                font-size: 1rem;
            }
        }
    