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

        body {
            font-family: Georgia, serif;
            background: #171a1f url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="%23171a1f"/></svg>') no-repeat center top;
            color: #ffffff;
            line-height: 1.5;
            min-height: 100vh;
        }

        .container {
            max-width: 960px;
            margin: 0 auto;
            padding: 0 15px;
        }

        header {
            background: linear-gradient(135deg, #2a2b33 0%, #41434f 100%);
            padding: 40px 0;
            position: relative;
            border-bottom: 3px solid #ffd200;
        }

        .site-title {
            font-size: 40px;
            font-weight: bold;
            color: #ffd200;
            text-align: center;
            margin-bottom: 10px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }

        .site-description {
            font-size: 16px;
            color: #ffffff;
            text-align: center;
            font-weight: 300;
        }

        nav {
            background: linear-gradient(90deg, #2a2b33 0%, #33343d 50%, #2a2b33 100%);
            padding: 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.3);
        }

        .nav-list {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            margin: 0;
            padding: 0;
        }

        .nav-list li {
            position: relative;
        }

        .nav-list a {
            display: block;
            padding: 19px 15px;
            color: #ffffff;
            text-decoration: none;
            font-size: 15px;
            transition: all 0.3s ease;
            border-right: 1px solid rgba(255,255,255,0.1);
        }

        .nav-list a:hover {
            background: rgba(255,210,0,0.1);
            color: #ffd200;
        }

        .nav-list .current a {
            background: rgba(255,210,0,0.2);
            color: #ffd200;
        }

        main {
            background: #0b0f19;
            min-height: 500px;
            padding: 30px 0;
        }

        .content-wrapper {
            background: #2a2b33;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.3);
        }

        h1 {
            font-size: 26px;
            color: #ffd200;
            text-align: center;
            margin-bottom: 30px;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
        }

        article {
            margin-bottom: 30px;
        }

        article p {
            font-size: 16px;
            color: #ffffff;
            margin-bottom: 20px;
            line-height: 1.6;
        }

        article h2 {
            font-size: 23px;
            color: #ffd200;
            margin: 25px 0 15px 0;
            text-align: center;
        }

        article h3 {
            font-size: 20px;
            color: #ffffff;
            margin: 20px 0 10px 0;
            text-align: center;
        }

        .transition-section {
            background: rgba(65, 67, 79, 0.5);
            padding: 20px;
            border-radius: 10px;
            margin: 30px 0;
            text-align: center;
        }

        .transition-section p {
            font-size: 18px;
            color: #ffd200;
            margin: 0;
            font-style: italic;
        }

        .links-section {
            background: rgba(51, 52, 61, 0.8);
            padding: 30px;
            border-radius: 10px;
            margin-top: 30px;
        }

        .links-section h3 {
            font-size: 18px;
            color: #ffd200;
            margin-bottom: 15px;
            border-bottom: 2px solid #ffd200;
            padding-bottom: 5px;
        }

        .links-section ul {
            list-style: none;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px 30px;
            margin: 0;
            padding: 0;
        }

        .links-section li {
            margin-bottom: 8px;
        }

        .links-section a {
            color: #ffffff;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s ease;
            display: block;
            padding: 5px 0;
        }

        .links-section a:hover {
            color: #ffd200;
            text-decoration: underline;
        }

        footer {
            background: #000000;
            padding: 20px 0;
            margin-top: 50px;
            border-top: 1px solid #333;
        }

        .footer-nav {
            text-align: center;
            margin-bottom: 20px;
        }

        .footer-nav ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
        }

        .footer-nav a {
            color: #404041;
            text-decoration: underline;
            font-size: 14px;
        }

        .footer-nav a:hover {
            color: #ffd200;
        }

        .footer-info {
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: #404041;
            font-size: 14px;
        }

        @media (max-width: 768px) {
            .nav-list {
                flex-direction: column;
            }

            .nav-list a {
                border-right: none;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }

            .content-wrapper {
                padding: 20px;
            }

            h1 {
                font-size: 22px;
            }

            article h2 {
                font-size: 20px;
            }

            article h3 {
                font-size: 18px;
            }

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

            .footer-info {
                flex-direction: column;
                gap: 10px;
                text-align: center;
            }

            .footer-nav ul {
                flex-direction: column;
                gap: 10px;
            }
        }

        @media (max-width: 480px) {
            .site-title {
                font-size: 28px;
            }

            .content-wrapper {
                padding: 15px;
            }

            article p {
                font-size: 14px;
            }
        }
    