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

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #e0e0e0;
            background: #0a0a0a;
            overflow-x: hidden;
        }

        header {
            background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
            padding: 2rem 1rem;
            text-align: center;
            border-bottom: 3px solid #c41e3a;
            box-shadow: 0 4px 20px rgba(196, 30, 58, 0.3);
        }

        h1 {
            font-size: 2.5rem;
            color: #c41e3a;
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: 0.5rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
        }

        nav {
            background: #1a1a1a;
            padding: 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        nav ul {
            list-style: none;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
        }

        nav ul li {
            margin: 0;
        }

        nav ul li a {
            display: block;
            padding: 1rem 1.5rem;
            color: #e0e0e0;
            text-decoration: none;
            text-transform: uppercase;
            font-weight: 600;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            border-bottom: 3px solid transparent;
        }

        nav ul li a:hover {
            background: #2d2d2d;
            color: #c41e3a;
            border-bottom-color: #c41e3a;
        }

        main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem 1rem;
        }

        article {
            background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
            padding: 2.5rem;
            margin-bottom: 2rem;
            border-radius: 8px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
            border-left: 4px solid #c41e3a;
        }

        article h2,
        article h3,
        article h4 {
            color: #c41e3a;
            margin-top: 1.5rem;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        article h2 {
            font-size: 2rem;
            border-bottom: 2px solid #c41e3a;
            padding-bottom: 0.5rem;
        }

        article h3 {
            font-size: 1.5rem;
        }

        article h4 {
            font-size: 1.2rem;
        }

        article p {
            margin-bottom: 1.2rem;
            color: #d0d0d0;
            font-size: 1.05rem;
            text-align: justify;
        }

        article em {
            color: #ff6b6b;
            font-style: italic;
        }

        article a {
            color: #c41e3a;
            text-decoration: none;
            font-weight: 600;
            border-bottom: 1px solid transparent;
            transition: all 0.3s ease;
        }

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

        .transition-section {
            background: #1a1a1a;
            padding: 2rem;
            margin-bottom: 2rem;
            border-radius: 8px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
        }

        .transition-section p {
            color: #d0d0d0;
            font-size: 1.05rem;
            margin-bottom: 1rem;
            line-height: 1.8;
        }

        .links-section {
            background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
            padding: 2.5rem;
            border-radius: 8px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
            border-left: 4px solid #c41e3a;
            margin-bottom: 2rem;
        }

        .links-section h3 {
            color: #c41e3a;
            font-size: 1.5rem;
            margin-top: 2rem;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            border-bottom: 2px solid #c41e3a;
            padding-bottom: 0.5rem;
        }

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

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

        .links-section ul li {
            padding-left: 1.2rem;
            position: relative;
        }

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

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

        .links-section ul li a:hover {
            color: #c41e3a;
            transform: translateX(5px);
        }

        footer {
            background: #1a1a1a;
            padding: 2rem 1rem;
            text-align: center;
            border-top: 3px solid #c41e3a;
            margin-top: 3rem;
        }

        footer p {
            color: #888;
            font-size: 0.9rem;
        }

        @media (max-width: 768px) {
            h1 {
                font-size: 1.8rem;
                letter-spacing: 2px;
            }

            nav ul {
                flex-direction: column;
            }

            nav ul li a {
                padding: 0.8rem 1rem;
                border-bottom: 1px solid #2d2d2d;
            }

            article {
                padding: 1.5rem;
            }

            article h2 {
                font-size: 1.5rem;
            }

            article h3 {
                font-size: 1.3rem;
            }

            .links-section {
                padding: 1.5rem;
            }

            .links-section ul {
                grid-template-columns: 1fr;
                gap: 0.6rem;
            }

            .transition-section {
                padding: 1.5rem;
            }
        }

        @media (max-width: 480px) {
            h1 {
                font-size: 1.5rem;
                letter-spacing: 1px;
            }

            article {
                padding: 1rem;
            }

            article h2 {
                font-size: 1.3rem;
            }

            article p {
                font-size: 1rem;
            }

            .links-section {
                padding: 1rem;
            }

            nav ul li a {
                padding: 0.7rem 0.8rem;
                font-size: 0.9rem;
            }
        }
    