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

        body {
            font-family: 'Arial', 'Helvetica', sans-serif;
            background: #0a0a0a;
            color: #e0e0e0;
            line-height: 1.6;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        header {
            background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
            padding: 2rem 1rem;
            border-bottom: 3px solid #c41e3a;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
        }

        .header-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .site-title {
            color: #c41e3a;
            font-size: 2rem;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 0.5rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
        }

        .site-subtitle {
            color: #888;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

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

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

        .nav-list {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 0;
        }

        .nav-list li {
            position: relative;
        }

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

        .nav-list a:hover,
        .nav-list a.active {
            background: #2d2d2d;
            color: #c41e3a;
            border-bottom-color: #c41e3a;
        }

        main {
            flex: 1;
            max-width: 1200px;
            margin: 0 auto;
            padding: 3rem 1rem;
            width: 100%;
        }

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

        article {
            background: #1a1a1a;
            padding: 2rem;
            margin-bottom: 2rem;
            border-radius: 8px;
            border-left: 4px solid #c41e3a;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
        }

        article h2 {
            color: #c41e3a;
            font-size: 1.8rem;
            margin: 2rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid #333;
        }

        article h3 {
            color: #e0e0e0;
            font-size: 1.4rem;
            margin: 1.5rem 0 1rem;
        }

        article h4 {
            color: #bbb;
            font-size: 1.2rem;
            margin: 1rem 0 0.5rem;
        }

        article p {
            margin-bottom: 1.2rem;
            color: #ccc;
            line-height: 1.8;
        }

        article ul,
        article ol {
            margin: 1rem 0 1rem 2rem;
            color: #ccc;
        }

        article li {
            margin-bottom: 0.8rem;
            line-height: 1.7;
        }

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

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

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

        .transition-section p {
            color: #ccc;
            line-height: 1.8;
            margin-bottom: 1rem;
        }

        .links-section {
            background: #1a1a1a;
            padding: 2rem;
            border-radius: 8px;
            border-left: 4px solid #c41e3a;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
        }

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

        .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;
            margin: 1rem 0 2rem;
        }

        .links-section li {
            background: #0f0f0f;
            border-left: 3px solid #444;
            transition: all 0.3s ease;
        }

        .links-section li:hover {
            border-left-color: #c41e3a;
            background: #252525;
        }

        .links-section a {
            display: block;
            padding: 0.8rem 1rem;
            color: #e0e0e0;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .links-section a:hover {
            color: #c41e3a;
        }

        footer {
            background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
            color: #888;
            text-align: center;
            padding: 2rem 1rem;
            border-top: 3px solid #c41e3a;
            margin-top: auto;
        }

        footer a {
            color: #c41e3a;
            text-decoration: none;
            margin: 0 1rem;
            transition: color 0.3s ease;
        }

        footer a:hover {
            color: #e0e0e0;
        }

        @media (max-width: 768px) {
            .site-title {
                font-size: 1.5rem;
            }

            h1 {
                font-size: 2rem;
            }

            .nav-list {
                flex-direction: column;
            }

            .nav-list a {
                padding: 0.8rem 1rem;
            }

            article {
                padding: 1.5rem;
            }

            article h2 {
                font-size: 1.5rem;
            }

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

            main {
                padding: 2rem 1rem;
            }
        }

        @media (max-width: 480px) {
            .site-title {
                font-size: 1.3rem;
                letter-spacing: 1px;
            }

            .site-subtitle {
                font-size: 0.8rem;
            }

            h1 {
                font-size: 1.6rem;
            }

            article {
                padding: 1rem;
            }

            .links-section {
                padding: 1.5rem;
            }

            footer {
                padding: 1.5rem 1rem;
            }

            footer a {
                display: block;
                margin: 0.5rem 0;
            }
        }
    