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

        body {
            font-family: Arial, Helvetica, sans-serif;
            font-size: 16px;
            line-height: 1.6;
            color: #ff9575;
            background: #000;
            min-height: 100vh;
        }

        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(180deg, rgba(20,10,8,0.95) 0%, rgba(0,0,0,0.98) 100%);
            z-index: -1;
        }

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

        header {
            background: rgba(20, 10, 8, 0.6);
            padding: 20px 0;
            margin-bottom: 40px;
        }

        .header-content {
            max-width: 1030px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .logo {
            font-size: 42px;
            font-weight: bold;
            color: #ffa200;
            text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
            margin-bottom: 0;
            letter-spacing: 1px;
        }

        h1 {
            font-size: 38px;
            color: #b35d2d;
            text-shadow: 3px 3px 3px rgba(0, 0, 0, 0.28);
            text-align: center;
            margin: 40px 0 30px;
            font-weight: bold;
            line-height: 1.3;
        }

        article {
            background: rgba(27, 13, 11, 0.8);
            border-radius: 9px;
            padding: 30px;
            margin-bottom: 30px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
        }

        article h2 {
            font-size: 28px;
            color: #ffb517;
            margin: 30px 0 15px;
            font-weight: bold;
        }

        article h2:first-child {
            margin-top: 0;
        }

        article h3 {
            font-size: 22px;
            color: #ff6a29;
            margin: 25px 0 12px;
            font-weight: bold;
        }

        article h4 {
            font-size: 18px;
            color: #fff;
            margin: 20px 0 10px;
            font-weight: bold;
        }

        article p {
            font-size: 16px;
            line-height: 1.8;
            color: #fff;
            margin-bottom: 18px;
        }

        article ul,
        article ol {
            margin: 15px 0 20px 25px;
            color: #fff;
        }

        article li {
            margin-bottom: 10px;
            line-height: 1.7;
        }

        article strong {
            color: #ffb517;
        }

        article a {
            color: #fe7c3d;
            text-decoration: underline;
        }

        article a:hover {
            text-decoration: none;
            color: #ffa200;
        }

        .transition-section {
            background: rgba(16, 7, 4, 0.6);
            border-radius: 9px;
            padding: 25px 30px;
            margin-bottom: 30px;
        }

        .transition-section p {
            font-size: 16px;
            line-height: 1.8;
            color: #ff9575;
            margin-bottom: 15px;
        }

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

        .links-section {
            background: rgba(27, 13, 11, 0.8);
            border-radius: 9px;
            padding: 30px;
            margin-bottom: 40px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
        }

        .links-section h2 {
            font-size: 30px;
            color: #ffb517;
            margin-bottom: 25px;
            text-align: center;
            font-weight: bold;
        }

        .links-section h3 {
            font-size: 22px;
            color: #ff6a29;
            margin: 25px 0 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid rgba(255, 106, 41, 0.3);
            font-weight: bold;
        }

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

        .links-section ul {
            list-style: none;
            column-count: 2;
            column-gap: 30px;
            margin: 0;
            padding: 0;
        }

        .links-section ul li {
            break-inside: avoid;
            margin-bottom: 12px;
            padding-left: 20px;
            position: relative;
        }

        .links-section ul li::before {
            content: '▸';
            position: absolute;
            left: 0;
            color: #fe7c3d;
            font-size: 14px;
        }

        .links-section ul li a {
            color: #fe7c3d;
            text-decoration: none;
            font-size: 15px;
            line-height: 1.6;
            display: inline-block;
            transition: color 0.3s ease;
        }

        .links-section ul li a:hover {
            color: #ffa200;
            text-decoration: underline;
        }

        footer {
            background: rgba(20, 10, 8, 0.8);
            border-radius: 9px 9px 0 0;
            padding: 30px;
            margin-top: 50px;
            text-align: center;
        }

        footer p {
            color: #cc7b2c;
            font-size: 14px;
            line-height: 1.6;
        }

        footer strong {
            color: #ffc63e;
        }

        @media (max-width: 768px) {
            h1 {
                font-size: 28px;
                margin: 25px 0 20px;
            }

            .logo {
                font-size: 32px;
            }

            article {
                padding: 20px;
            }

            article h2 {
                font-size: 24px;
            }

            article h3 {
                font-size: 20px;
            }

            article h4 {
                font-size: 17px;
            }

            article p {
                font-size: 15px;
            }

            .transition-section {
                padding: 20px;
            }

            .links-section {
                padding: 20px;
            }

            .links-section h2 {
                font-size: 24px;
            }

            .links-section h3 {
                font-size: 20px;
            }

            .links-section ul {
                column-count: 1;
            }

            .links-section ul li a {
                font-size: 15px;
            }

            footer {
                padding: 20px;
            }
        }

        @media (max-width: 480px) {
            body {
                font-size: 14px;
            }

            h1 {
                font-size: 24px;
            }

            .logo {
                font-size: 28px;
            }

            article {
                padding: 15px;
            }

            article h2 {
                font-size: 20px;
            }

            article h3 {
                font-size: 18px;
            }

            article h4 {
                font-size: 16px;
            }

            .links-section h2 {
                font-size: 20px;
            }

            .links-section h3 {
                font-size: 18px;
            }
        }
    