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

        body {
            font-family: 'Georgia', 'Times New Roman', serif;
            background-color: #0a0a0a;
            color: #e0e0e0;
            line-height: 1.6;
            min-height: 100vh;
        }

        header {
            background: linear-gradient(180deg, #1a0a0f 0%, #0a0a0a 100%);
            padding: 2rem 1rem;
            text-align: center;
            border-bottom: 3px solid #8b0000;
            box-shadow: 0 4px 20px rgba(139, 0, 0, 0.3);
        }

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

        nav {
            background-color: #1a1a1a;
            padding: 1rem;
            border-bottom: 2px solid #333;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
        }

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

        nav ul li a {
            color: #e0e0e0;
            text-decoration: none;
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            transition: all 0.3s ease;
            padding: 0.5rem 1rem;
            border-bottom: 2px solid transparent;
        }

        nav ul li a:hover {
            color: #dc143c;
            border-bottom: 2px solid #dc143c;
        }

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

        h1 {
            font-size: 2.2rem;
            color: #dc143c;
            margin-bottom: 1.5rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            border-bottom: 3px solid #8b0000;
            padding-bottom: 0.5rem;
        }

        article {
            background-color: #1a1a1a;
            padding: 2rem;
            margin-bottom: 2rem;
            border-left: 4px solid #dc143c;
            border-radius: 4px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
        }

        article h2 {
            color: #dc143c;
            font-size: 1.8rem;
            margin-top: 1.5rem;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        article h3 {
            color: #ff6b6b;
            font-size: 1.4rem;
            margin-top: 1.2rem;
            margin-bottom: 0.8rem;
        }

        article h4 {
            color: #ff8787;
            font-size: 1.2rem;
            margin-top: 1rem;
            margin-bottom: 0.6rem;
        }

        article p {
            margin-bottom: 1rem;
            font-size: 1.05rem;
            color: #d0d0d0;
        }

        .transition-section {
            background-color: #151515;
            padding: 2rem;
            margin-bottom: 2rem;
            border-radius: 4px;
            border: 1px solid #333;
        }

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

        .links-section {
            background-color: #1a1a1a;
            padding: 2rem;
            border-radius: 4px;
            border-top: 4px solid #8b0000;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
        }

        .links-section h3 {
            color: #dc143c;
            font-size: 1.6rem;
            margin-top: 1.5rem;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            border-bottom: 2px solid #8b0000;
            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: 1rem;
            margin-bottom: 2rem;
        }

        .links-section ul li {
            background-color: #0f0f0f;
            padding: 0.8rem 1rem;
            border-left: 3px solid #dc143c;
            transition: all 0.3s ease;
        }

        .links-section ul li:hover {
            background-color: #1f1f1f;
            border-left-color: #ff4757;
            transform: translateX(5px);
        }

        .links-section ul li a {
            color: #e0e0e0;
            text-decoration: none;
            font-size: 1rem;
            transition: color 0.3s ease;
        }

        .links-section ul li:hover a {
            color: #ff6b6b;
        }

        footer {
            background-color: #0a0a0a;
            padding: 2rem 1rem;
            text-align: center;
            border-top: 3px solid #8b0000;
            margin-top: 3rem;
        }

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

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

            nav ul {
                flex-direction: column;
                gap: 1rem;
                align-items: center;
            }

            h1 {
                font-size: 1.8rem;
            }

            article {
                padding: 1.5rem;
            }

            article h2 {
                font-size: 1.5rem;
            }

            article h3 {
                font-size: 1.3rem;
            }

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

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

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

            nav ul li a {
                font-size: 1rem;
            }

            h1 {
                font-size: 1.5rem;
            }

            article {
                padding: 1rem;
            }

            .links-section {
                padding: 1rem;
            }
        }
    