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

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #004d00 0%, #006600 50%, #005500 100%);
            background-attachment: fixed;
            color: #FFFFFF;
            line-height: 1.7;
            padding: 20px;
            min-height: 100vh;
        }

        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 50%, rgba(102, 255, 153, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 255, 204, 0.03) 0%, transparent 50%);
            pointer-events: none;
            z-index: 0;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            background: rgba(0, 51, 0, 0.7);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
            padding: 40px;
            position: relative;
            z-index: 1;
        }

        h1 {
            font-family: Georgia, 'Times New Roman', serif;
            font-size: 2.5em;
            text-align: center;
            color: #FFFFCC;
            margin-bottom: 40px;
            padding-bottom: 20px;
            border-bottom: 3px solid rgba(255, 255, 153, 0.3);
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            font-weight: 600;
        }

        article {
            font-size: 1.1em;
            margin-bottom: 40px;
            color: #FFFFFF;
        }

        article p {
            margin-bottom: 20px;
            text-align: justify;
        }

        article img {
            max-width: 100%;
            height: auto;
            border: 3px solid #FFFFCC;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
            margin: 15px 0;
        }

        article img[align="left"] {
            float: left;
            margin-right: 25px;
            margin-bottom: 15px;
        }

        article img[align="right"] {
            float: right;
            margin-left: 25px;
            margin-bottom: 15px;
        }

        article h2, article h3, article h4 {
            color: #FFFFCC;
            margin-top: 30px;
            margin-bottom: 15px;
        }

        article a {
            color: #FFFF00;
            text-decoration: none;
            border-bottom: 1px solid #FFFF00;
            transition: all 0.3s ease;
        }

        article a:hover {
            color: #66FF99;
            border-bottom-color: #66FF99;
        }

        article a:visited {
            color: #FFFFCC;
            border-bottom-color: #FFFFCC;
        }

        .transition-section {
            margin: 40px 0;
            padding: 25px;
            background: rgba(0, 77, 0, 0.5);
            border-left: 4px solid #FFFF00;
            border-radius: 8px;
            font-size: 1.05em;
        }

        .transition-section p {
            margin-bottom: 15px;
        }

        .links-section {
            margin-top: 50px;
            padding: 30px;
            background: rgba(0, 102, 0, 0.4);
            border-radius: 12px;
            border: 2px solid rgba(255, 255, 153, 0.2);
        }

        .links-section h3 {
            color: #FFFFCC;
            font-size: 1.5em;
            margin-bottom: 20px;
            margin-top: 30px;
            padding-bottom: 10px;
            border-bottom: 2px solid rgba(255, 255, 153, 0.3);
        }

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

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

        .links-section ul li {
            padding-left: 20px;
            position: relative;
        }

        .links-section ul li::before {
            content: '▸';
            position: absolute;
            left: 0;
            color: #FFFF00;
            font-weight: bold;
        }

        .links-section a {
            color: #FFFF00;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .links-section a:hover {
            color: #66FF99;
            transform: translateX(5px);
        }

        .links-section a:visited {
            color: #FFFFCC;
        }

        @media (max-width: 768px) {
            body {
                padding: 10px;
            }

            .container {
                padding: 25px;
                border-radius: 10px;
            }

            h1 {
                font-size: 1.8em;
                margin-bottom: 25px;
            }

            article {
                font-size: 1em;
            }

            article img[align="left"],
            article img[align="right"] {
                float: none;
                margin: 15px 0;
                display: block;
            }

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

            .transition-section {
                padding: 20px;
            }

            .links-section {
                padding: 20px;
            }
        }

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

            .container {
                padding: 15px;
            }

            article {
                font-size: 0.95em;
            }
        }

        ::selection {
            background: #FFFF00;
            color: #006600;
        }
    