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

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.6;
            color: #333;
            background: #0a0a0a;
        }

        .page-wrapper {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        header {
            background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
            border-bottom: 3px solid #c8a340;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(200, 163, 64, 0.2);
        }

        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }

        .logo {
            font-size: 2rem;
            font-weight: bold;
            color: #c8a340;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 0 0 10px rgba(200, 163, 64, 0.5);
        }

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

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

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

        nav a:hover {
            color: #c8a340;
        }

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

        main {
            flex: 1;
            background: #1a1a1a;
        }

        .hero-section {
            background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
            padding: 3rem 0;
            border-bottom: 1px solid #c8a340;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        h1 {
            font-size: 2.5rem;
            color: #c8a340;
            margin-bottom: 2rem;
            text-align: center;
            text-transform: uppercase;
            letter-spacing: 1px;
            text-shadow: 0 0 20px rgba(200, 163, 64, 0.3);
        }

        article {
            background: #0d0d0d;
            padding: 3rem 0;
            color: #e0e0e0;
        }

        article p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            line-height: 1.8;
        }

        article h2 {
            color: #c8a340;
            margin: 2rem 0 1rem;
            font-size: 1.8rem;
            border-left: 4px solid #c8a340;
            padding-left: 1rem;
        }

        article h3 {
            color: #d4b356;
            margin: 1.5rem 0 1rem;
            font-size: 1.4rem;
        }

        article h4 {
            color: #d4b356;
            margin: 1.2rem 0 0.8rem;
            font-size: 1.2rem;
        }

        .transition-section {
            background: #1a1a1a;
            padding: 2.5rem 0;
            color: #d0d0d0;
        }

        .transition-section p {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        {% if links %}
        .links-section {
            background: linear-gradient(180deg, #0d0d0d 0%, #1a1a1a 100%);
            padding: 3rem 0;
            border-top: 2px solid #c8a340;
        }

        .links-section h2 {
            color: #c8a340;
            margin-bottom: 2rem;
            font-size: 2rem;
            text-align: center;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .links-section h3 {
            color: #d4b356;
            margin: 2rem 0 1rem;
            font-size: 1.5rem;
            border-bottom: 2px solid #c8a340;
            padding-bottom: 0.5rem;
        }

        .links-section ul {
            list-style: none;
            columns: 2;
            column-gap: 2rem;
            margin-bottom: 2rem;
        }

        .links-section li {
            break-inside: avoid;
            margin-bottom: 0.8rem;
        }

        .links-section a {
            color: #e0e0e0;
            text-decoration: none;
            display: block;
            padding: 0.5rem 0.5rem 0.5rem 1.5rem;
            position: relative;
            transition: all 0.3s ease;
            border-radius: 4px;
        }

        .links-section a:before {
            content: '▸';
            position: absolute;
            left: 0;
            color: #c8a340;
            transition: left 0.3s ease;
        }

        .links-section a:hover {
            background: rgba(200, 163, 64, 0.1);
            color: #c8a340;
            padding-left: 2rem;
        }

        .links-section a:hover:before {
            left: 0.5rem;
        }
        {% endif %}

        footer {
            background: #0a0a0a;
            color: #888;
            padding: 2rem 0;
            border-top: 3px solid #c8a340;
            margin-top: auto;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .footer-section h3 {
            color: #c8a340;
            margin-bottom: 1rem;
            font-size: 1.2rem;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section li {
            margin-bottom: 0.5rem;
        }

        .footer-section a {
            color: #aaa;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: #c8a340;
        }

        .copyright {
            text-align: center;
            padding: 1.5rem 20px;
            border-top: 1px solid #333;
            margin-top: 2rem;
            font-size: 0.9rem;
            color: #666;
        }

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

            .header-container {
                flex-direction: column;
                gap: 1rem;
            }

            nav ul {
                gap: 1rem;
                justify-content: center;
            }

            article h2 {
                font-size: 1.5rem;
            }

            article h3 {
                font-size: 1.2rem;
            }

            {% if links %}
            .links-section ul {
                columns: 1;
            }
            {% endif %}

            .footer-content {
                grid-template-columns: 1fr;
            }
        }

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

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

            nav ul {
                flex-direction: column;
                gap: 0.5rem;
                align-items: center;
            }
        }
    