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

        body {
            font-family: 'Comic Sans MS', 'Comic Sans', cursive, sans-serif;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: #605E5E;
            line-height: 1.6;
            min-height: 100vh;
            position: relative;
        }

        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1920 1080"><rect fill="%23667eea" width="1920" height="1080"/></svg>');
            opacity: 0.1;
            z-index: -1;
        }

        header {
            background: rgba(255, 255, 255, 0.95);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
            padding: 1.5rem 2rem;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }

        .header-content {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: #667eea;
            text-decoration: none;
            text-shadow: 2px 2px 0 rgba(10, 189, 240, 0.3), -2px -2px 0 rgba(254, 1, 1, 0.3);
        }

        nav ul {
            list-style: none;
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
        }

        nav a {
            color: #605E5E;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: #667eea;
            transition: width 0.3s ease;
        }

        nav a:hover::after {
            width: 100%;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 3rem 2rem;
        }

        h1 {
            font-size: 3.5rem;
            text-align: center;
            margin: 2rem 0;
            color: #605E5E;
            text-shadow: 3px 3px 0 rgba(10, 189, 240, 0.3), -3px -3px 0 rgba(254, 1, 1, 0.3);
            line-height: 1.2;
        }

        .divider {
            width: 150px;
            height: 4px;
            background: linear-gradient(90deg, #667eea, #764ba2);
            margin: 2rem auto;
            border-radius: 2px;
        }

        article {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 15px;
            padding: 3rem;
            margin: 2rem 0;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        }

        article h2,
        article h3,
        article h4,
        article h5,
        article h6 {
            color: #667eea;
            margin: 1.5rem 0 1rem;
            font-weight: bold;
        }

        article h2 {
            font-size: 2.2rem;
            border-bottom: 3px solid #667eea;
            padding-bottom: 0.5rem;
        }

        article h3 {
            font-size: 1.8rem;
        }

        article h4 {
            font-size: 1.5rem;
        }

        article p {
            margin: 1.2rem 0;
            font-size: 1.1rem;
            color: #333;
            text-align: justify;
        }

        .transition-section {
            background: rgba(255, 255, 255, 0.9);
            border-radius: 15px;
            padding: 2.5rem;
            margin: 2rem 0;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
        }

        .transition-section p {
            font-size: 1.15rem;
            color: #444;
            margin: 1rem 0;
        }

        {% if links %}
        .links-section {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 15px;
            padding: 3rem;
            margin: 2rem 0;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        }

        .links-section h3 {
            color: #667eea;
            font-size: 1.6rem;
            margin: 2rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #e0e0e0;
        }

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

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

        .links-section li {
            background: #f8f9fa;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .links-section li:hover {
            background: #e9ecef;
            transform: translateX(5px);
        }

        .links-section a {
            display: block;
            padding: 0.8rem 1.2rem;
            color: #605E5E;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .links-section a:hover {
            color: #667eea;
        }

        .links-section a::before {
            content: '▸ ';
            color: #667eea;
            font-weight: bold;
        }
        {% endif %}

        footer {
            background: rgba(255, 255, 255, 0.95);
            padding: 2rem;
            margin-top: 4rem;
            text-align: center;
            box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.1);
        }

        footer p {
            color: #605E5E;
            font-size: 0.95rem;
        }

        @media (max-width: 968px) {
            h1 {
                font-size: 2.5rem;
            }

            .header-content {
                flex-direction: column;
                text-align: center;
            }

            nav ul {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }

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

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

        @media (max-width: 640px) {
            h1 {
                font-size: 2rem;
            }

            .container {
                padding: 2rem 1rem;
            }

            article h2 {
                font-size: 1.8rem;
            }

            article h3 {
                font-size: 1.5rem;
            }

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