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

        body {
            font-family: 'Open Sans', Arial, sans-serif;
            background: #020100;
            background-image: url('data:image/svg+xml,%3Csvg width="100" height="100" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noise"%3E%3CfeTurbulence baseFrequency="0.9" /%3E%3C/filter%3E%3Crect width="100" height="100" filter="url(%23noise)" opacity="0.05"/%3E%3C/svg%3E');
            color: #080100;
            line-height: 1.6;
            min-height: 100vh;
        }

        header {
            background: linear-gradient(135deg, rgba(236, 150, 8, 0.9) 0%, rgba(251, 166, 25, 0.85) 100%);
            padding: 20px 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        .header-content {
            max-width: 1250px;
            margin: 0 auto;
            padding: 0 15px;
            text-align: center;
        }

        .logo {
            font-family: 'Oxygen', sans-serif;
            font-size: 2rem;
            font-weight: 700;
            color: #fff;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

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

        .main-content {
            background: rgba(250, 250, 250, 0.95);
            border-radius: 10px;
            padding: 40px 30px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        }

        h1 {
            font-family: 'Oxygen', sans-serif;
            font-size: 2.5rem;
            font-weight: 300;
            color: #080100;
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 2px solid #ec9608;
        }

        article h2 {
            font-family: 'Oxygen', sans-serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: #080100;
            margin-top: 30px;
            margin-bottom: 15px;
        }

        article h3 {
            font-family: 'Oxygen', sans-serif;
            font-size: 1.4rem;
            font-weight: 700;
            color: #080100;
            margin-top: 25px;
            margin-bottom: 12px;
        }

        article h4 {
            font-size: 1.2rem;
            font-weight: 700;
            color: #080100;
            margin-top: 20px;
            margin-bottom: 10px;
        }

        article p {
            margin-bottom: 1rem;
            font-size: 1rem;
            line-height: 1.7;
        }

        article ul, article ol {
            margin-left: 25px;
            margin-bottom: 1rem;
        }

        article li {
            margin-bottom: 0.5rem;
        }

        article a {
            color: #ec9608;
            text-decoration: none;
            transition: color 0.2s ease;
        }

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

        .transition-section {
            margin-top: 40px;
            padding-top: 30px;
            border-top: 1px solid rgba(8, 1, 0, 0.2);
        }

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

        .links-section {
            margin-top: 40px;
            padding: 30px;
            background: rgba(236, 150, 8, 0.05);
            border-radius: 8px;
            border: 1px solid rgba(236, 150, 8, 0.2);
        }

        .links-section h3 {
            font-family: 'Oxygen', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: #080100;
            margin-bottom: 15px;
            margin-top: 25px;
        }

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

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

        @media (min-width: 768px) {
            .links-section ul {
                grid-template-columns: 1fr 1fr;
            }
        }

        .links-section li {
            margin: 0;
        }

        .links-section a {
            display: block;
            padding: 12px 15px;
            background: #fff;
            color: #ec9608;
            text-decoration: none;
            border-radius: 6px;
            border: 1px solid rgba(236, 150, 8, 0.3);
            transition: all 0.3s ease;
            font-weight: 500;
        }

        .links-section a:hover {
            background: #ec9608;
            color: #fff;
            border-color: #ec9608;
            transform: translateX(5px);
        }

        footer {
            background: rgba(8, 1, 0, 0.8);
            color: rgba(255, 255, 255, 0.7);
            text-align: center;
            padding: 30px 15px;
            margin-top: 50px;
        }

        footer a {
            color: #fff;
            text-decoration: none;
            transition: color 0.2s ease;
        }

        footer a:hover {
            color: rgba(255, 255, 255, 0.5);
        }

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

            .main-content {
                padding: 25px 20px;
            }

            article h2 {
                font-size: 1.5rem;
            }

            article h3 {
                font-size: 1.2rem;
            }

            .logo {
                font-size: 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .container {
                margin: 15px auto;
            }

            .main-content {
                padding: 20px 15px;
            }

            h1 {
                font-size: 1.7rem;
            }
        }
    