        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary: #8B0000;
            --secondary: #D4AF37;
            --dark: #1A1A1A;
            --gray: #333;
            --light: #F5F5F5;
            --accent: #2E8B57;
            --transition: all 0.3s ease;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #0f0f0f;
            color: #ddd;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: var(--secondary);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: #ffd700;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .header {
            background: linear-gradient(135deg, var(--dark) 0%, #2a0a0a 100%);
            border-bottom: 3px solid var(--primary);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(139, 0, 0, 0.2);
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .logo {
            font-size: 2.5rem;
            font-weight: 900;
            background: linear-gradient(to right, #ff0000, #ff8c00);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: 2px;
            text-transform: uppercase;
        }
        .logo a {
            background: none;
        }
        .nav-desktop {
            display: flex;
            gap: 30px;
        }
        .nav-desktop a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 16px;
            border-radius: 4px;
            position: relative;
        }
        .nav-desktop a:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: var(--secondary);
            transition: var(--transition);
        }
        .nav-desktop a:hover:after {
            width: 80%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--secondary);
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background: var(--dark);
            padding: 20px;
            border-top: 1px solid var(--gray);
            animation: slideDown 0.4s ease;
        }
        @keyframes slideDown {
            from { opacity: 0; transform: translateY(-10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            padding: 12px 0;
            border-bottom: 1px solid #444;
            font-size: 1.1rem;
        }
        .breadcrumb {
            background: #222;
            padding: 10px 0;
            font-size: 0.9rem;
            margin-bottom: 20px;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb span {
            color: var(--secondary);
            margin: 0 8px;
        }
        .main {
            padding: 30px 0 60px;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="%231a1a1a"/><path d="M0 50L50 0L100 50L50 100Z" fill="%23220" opacity="0.2"/>');
        }
        .article-header {
            text-align: center;
            margin-bottom: 40px;
            padding: 20px;
            border-radius: 10px;
            background: linear-gradient(90deg, rgba(139,0,0,0.2) 0%, rgba(42,10,10,0.4) 100%);
            border-left: 5px solid var(--primary);
        }
        h1 {
            font-size: 2.8rem;
            color: #fff;
            margin-bottom: 15px;
            text-shadow: 2px 2px 4px #000;
            line-height: 1.2;
        }
        .article-meta {
            color: #aaa;
            font-size: 0.95rem;
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        .article-meta i {
            color: var(--secondary);
            margin-right: 5px;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
        }
        .article-body {
            background: rgba(30, 30, 30, 0.8);
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
            border: 1px solid #444;
        }
        h2, h3 {
            color: var(--secondary);
            margin: 30px 0 15px;
            padding-bottom: 8px;
            border-bottom: 2px solid rgba(212, 175, 55, 0.3);
        }
        h2 {
            font-size: 2rem;
        }
        h3 {
            font-size: 1.5rem;
        }
        p {
            margin-bottom: 20px;
            text-align: justify;
            font-size: 1.1rem;
        }
        .highlight {
            background: rgba(212, 175, 55, 0.1);
            border-left: 4px solid var(--secondary);
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .feature-img {
            width: 100%;
            border-radius: 10px;
            margin: 25px 0;
            border: 3px solid var(--primary);
            box-shadow: 0 8px 20px rgba(0,0,0,0.7);
            transition: var(--transition);
        }
        .feature-img:hover {
            transform: scale(1.01);
            box-shadow: 0 12px 25px rgba(139,0,0,0.4);
        }
        .quote {
            font-style: italic;
            font-size: 1.3rem;
            color: #ccc;
            text-align: center;
            margin: 30px auto;
            padding: 25px;
            max-width: 800px;
            background: rgba(42, 10, 10, 0.5);
            border-radius: 10px;
            position: relative;
        }
        .quote:before, .quote:after {
            content: '"';
            font-size: 3rem;
            color: var(--primary);
            position: absolute;
            opacity: 0.5;
        }
        .quote:before {
            top: 10px;
            left: 20px;
        }
        .quote:after {
            bottom: -10px;
            right: 20px;
        }
        .interactive-section {
            background: rgba(42, 10, 10, 0.6);
            padding: 25px;
            border-radius: 10px;
            margin: 40px 0;
            border: 1px solid #5a0000;
        }
        .interactive-section h3 {
            margin-top: 0;
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
        }
        input, textarea, select {
            width: 100%;
            padding: 12px 15px;
            background: #222;
            border: 1px solid #555;
            border-radius: 6px;
            color: #fff;
            font-size: 1rem;
            transition: var(--transition);
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: var(--secondary);
            box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
        }
        textarea {
            min-height: 120px;
            resize: vertical;
        }
        .btn {
            background: linear-gradient(to right, var(--primary), #a52a2a);
            color: white;
            border: none;
            padding: 12px 28px;
            border-radius: 6px;
            font-weight: bold;
            cursor: pointer;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            font-size: 1rem;
        }
        .btn:hover {
            background: linear-gradient(to right, #a52a2a, var(--primary));
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(139,0,0,0.4);
        }
        .rating {
            display: flex;
            gap: 10px;
            align-items: center;
            flex-wrap: wrap;
        }
        .rating i {
            color: #555;
            cursor: pointer;
            font-size: 1.5rem;
            transition: var(--transition);
        }
        .rating i:hover, .rating i.active {
            color: gold;
            transform: scale(1.2);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .sidebar-card {
            background: rgba(30, 30, 30, 0.9);
            padding: 25px;
            border-radius: 10px;
            border: 1px solid #444;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }
        .sidebar-card h3 {
            margin-top: 0;
            color: #fff;
            font-size: 1.4rem;
        }
        .topics ul {
            list-style: none;
        }
        .topics li {
            padding: 10px 0;
            border-bottom: 1px dashed #444;
        }
        .topics li:last-child {
            border-bottom: none;
        }
        .topics a {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .topics a:before {
            content: '▶';
            color: var(--primary);
            font-size: 0.8rem;
        }
        .stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            text-align: center;
        }
        .stat-item {
            background: rgba(139, 0, 0, 0.1);
            padding: 15px;
            border-radius: 8px;
        }
        .stat-number {
            font-size: 2rem;
            font-weight: bold;
            color: var(--secondary);
            display: block;
        }
        .stat-label {
            font-size: 0.9rem;
            color: #aaa;
        }
        .footer-links {
            background: #151515;
            padding: 40px 0;
            border-top: 3px solid var(--primary);
            border-bottom: 1px solid #333;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
        }
        @media (max-width: 768px) {
            .web-links {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        .web-link {
            background: #222;
            padding: 15px;
            border-radius: 6px;
            transition: var(--transition);
            border-left: 3px solid transparent;
        }
        .web-link:hover {
            border-left-color: var(--secondary);
            background: #2a2a2a;
            transform: translateX(5px);
        }
        .footer {
            background: #111;
            padding: 30px 0;
            text-align: center;
            color: #888;
        }
        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }
        .social-links {
            display: flex;
            gap: 15px;
            font-size: 1.3rem;
        }
        .social-links a {
            color: #888;
        }
        .social-links a:hover {
            color: var(--secondary);
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            .article-body {
                padding: 20px;
            }
            .footer-content {
                flex-direction: column;
                text-align: center;
            }
        }
        @media print {
            .header, .sidebar, .interactive-section, .footer-links, .footer {
                display: none;
            }
            body {
                background: white;
                color: black;
            }
        }
