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

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #2d5016 0%, #4a7c2c 50%, #3d6622 100%);
            background-attachment: fixed;
            color: #ffffff;
            line-height: 1.6;
            min-height: 100vh;
            padding: 0;
        }

        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255,255,255,.02) 10px, rgba(255,255,255,.02) 20px),
                repeating-linear-gradient(-45deg, transparent, transparent 10px, rgba(0,0,0,.03) 10px, rgba(0,0,0,.03) 20px);
            pointer-events: none;
            z-index: 0;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            position: relative;
            z-index: 1;
        }

        h1 {
            font-size: 3.5rem;
            text-align: center;
            margin: 40px 0;
            color: #ffeb3b;
            text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
            font-weight: 700;
            line-height: 1.2;
        }

        article {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 40px;
            margin: 30px 0;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        article h2 {
            color: #ffeb3b;
            margin-top: 30px;
            margin-bottom: 15px;
            font-size: 2rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

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

        article h3 {
            color: #ffd54f;
            margin-top: 25px;
            margin-bottom: 12px;
            font-size: 1.5rem;
        }

        article p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            color: #ffffff;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
        }

        .transition-section {
            background: rgba(255, 152, 0, 0.15);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 35px;
            margin: 30px 0;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(255, 204, 0, 0.3);
        }

        .transition-section p {
            font-size: 1.15rem;
            margin-bottom: 15px;
            color: #ffffff;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
        }

        .links-section {
            background: rgba(255, 255, 255, 0.12);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 40px;
            margin: 30px 0;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(255, 255, 255, 0.25);
        }

        .links-section h3 {
            color: #ffeb3b;
            margin-top: 30px;
            margin-bottom: 20px;
            font-size: 1.8rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            border-bottom: 2px solid rgba(255, 235, 59, 0.4);
            padding-bottom: 10px;
        }

        .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 li {
            padding: 0;
        }

        .links-section a {
            color: #ffeb3b;
            text-decoration: none;
            font-size: 1.05rem;
            transition: all 0.3s ease;
            display: inline-block;
            position: relative;
            padding: 5px 0;
        }

        .links-section a::before {
            content: '→ ';
            opacity: 0;
            transform: translateX(-10px);
            transition: all 0.3s ease;
        }

        .links-section a:hover {
            color: #fff59d;
            text-shadow: 0 0 10px rgba(255, 235, 59, 0.5);
            transform: translateX(5px);
        }

        .links-section a:hover::before {
            opacity: 1;
            transform: translateX(0);
        }

        @media (max-width: 768px) {
            .container {
                padding: 15px;
            }

            h1 {
                font-size: 2.2rem;
                margin: 25px 0;
            }

            article {
                padding: 25px;
            }

            article h2 {
                font-size: 1.6rem;
            }

            article h3 {
                font-size: 1.3rem;
            }

            article p {
                font-size: 1rem;
            }

            .transition-section {
                padding: 25px;
            }

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

            .links-section {
                padding: 25px;
            }

            .links-section h3 {
                font-size: 1.5rem;
            }

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

            .links-section a {
                font-size: 1rem;
            }
        }

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

            article {
                padding: 20px;
            }

            article h2 {
                font-size: 1.4rem;
            }

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