        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary: #8B0000; 
            --secondary: #111; 
            --accent: #D4AF37; 
            --light: #F5F5F5;
            --dark: #222;
            --gray: #444;
            --transition: all 0.3s ease;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
            --border-radius: 8px;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.8;
            color: var(--light);
            background-color: var(--secondary);
            background-image: linear-gradient(to bottom, #1a1a1a, #000);
            overflow-x: hidden;
        }
        a {
            color: var(--accent);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: #fff;
            text-shadow: 0 0 8px var(--accent);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: var(--border-radius);
        }
        ul, ol {
            padding-left: 2rem;
            margin: 1rem 0;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }
        section, article {
            margin-bottom: 3rem;
        }
        header {
            background-color: rgba(17, 17, 17, 0.95);
            border-bottom: 3px solid var(--primary);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 1rem 0;
            backdrop-filter: blur(10px);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .my-logo {
            font-family: 'Impact', 'Arial Black', sans-serif;
            font-size: 2.5rem;
            background: linear-gradient(to right, var(--primary), var(--accent));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        .my-logo a {
            background: none;
            color: inherit;
        }
        .my-logo a:hover {
            text-shadow: 0 0 15px rgba(139, 0, 0, 0.8);
        }
        .burger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            background: transparent;
            border: none;
            padding: 0.5rem;
        }
        .burger span {
            width: 25px;
            height: 3px;
            background-color: var(--accent);
            margin: 3px 0;
            border-radius: 2px;
            transition: var(--transition);
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
            align-items: center;
        }
        nav a {
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: var(--border-radius);
        }
        nav a:hover, nav a.active {
            background-color: var(--primary);
            color: white;
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: #aaa;
            background-color: rgba(34, 34, 34, 0.8);
            border-bottom: 1px solid var(--gray);
        }
        .breadcrumb a {
            color: #ddd;
        }
        .breadcrumb i {
            margin: 0 0.5rem;
        }
        .hero {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.9)), url('https://images.unsplash.com/photo-1550745165-9bc0b252726f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
            background-size: cover;
            background-position: center;
            padding: 4rem 1rem;
            text-align: center;
            border-bottom: 5px solid var(--primary);
            margin-bottom: 2rem;
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            color: white;
            text-shadow: 3px 3px 6px black;
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 2rem;
            color: #eee;
        }
        .search-box {
            max-width: 600px;
            margin: 2rem auto;
            display: flex;
            box-shadow: var(--shadow);
            border-radius: 50px;
            overflow: hidden;
        }
        .search-box input {
            flex: 1;
            padding: 1rem 1.5rem;
            border: none;
            font-size: 1.1rem;
            background: rgba(255,255,255,0.95);
            color: var(--dark);
        }
        .search-box button {
            background: var(--primary);
            color: white;
            border: none;
            padding: 1rem 2rem;
            cursor: pointer;
            font-weight: bold;
            font-size: 1.1rem;
            transition: var(--transition);
        }
        .search-box button:hover {
            background: #a30000;
        }
        main {
            padding: 2rem 0;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        article {
            background: rgba(34, 34, 34, 0.9);
            padding: 2.5rem;
            border-radius: var(--border-radius);
            border-left: 5px solid var(--primary);
            box-shadow: var(--shadow);
        }
        h1, h2, h3, h4 {
            color: var(--accent);
            margin-top: 2rem;
            margin-bottom: 1rem;
            line-height: 1.3;
        }
        h1 {
            font-size: 2.8rem;
            border-bottom: 3px solid var(--primary);
            padding-bottom: 0.5rem;
        }
        h2 {
            font-size: 2.2rem;
            color: #fff;
            padding-left: 0.5rem;
            border-left: 4px solid var(--primary);
        }
        h3 {
            font-size: 1.8rem;
            color: #f0f0f0;
        }
        h4 {
            font-size: 1.4rem;
            color: #ddd;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .highlight {
            background: linear-gradient(90deg, rgba(139,0,0,0.2), transparent);
            padding: 1.5rem;
            border-radius: var(--border-radius);
            border-left: 4px solid var(--accent);
            margin: 2rem 0;
        }
        .article-img {
            float: right;
            margin: 1rem 0 1rem 2rem;
            max-width: 400px;
            box-shadow: var(--shadow);
            border: 3px solid var(--primary);
        }
        .link-list {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin: 2rem 0;
            padding: 1.5rem;
            background: rgba(68, 68, 68, 0.3);
            border-radius: var(--border-radius);
        }
        .link-list a {
            background: rgba(139, 0, 0, 0.2);
            padding: 0.7rem 1.2rem;
            border-radius: 30px;
            border: 1px solid rgba(212, 175, 55, 0.3);
        }
        .link-list a:hover {
            background: var(--primary);
            transform: translateY(-3px);
        }
        aside {
            background: rgba(34, 34, 34, 0.9);
            padding: 2rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            height: fit-content;
            position: sticky;
            top: 120px;
        }
        .rating-widget, .comment-widget {
            margin-bottom: 2.5rem;
        }
        .rating-widget h3, .comment-widget h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            margin: 1rem 0;
            justify-content: center;
        }
        .stars i {
            color: #555;
            font-size: 1.8rem;
            cursor: pointer;
            transition: var(--transition);
        }
        .stars i:hover, .stars i.active {
            color: gold;
            transform: scale(1.2);
        }
        .comment-widget textarea {
            width: 100%;
            padding: 1rem;
            background: rgba(255,255,255,0.1);
            border: 1px solid var(--gray);
            border-radius: var(--border-radius);
            color: white;
            font-family: inherit;
            margin-bottom: 1rem;
            min-height: 150px;
            resize: vertical;
        }
        .comment-widget button, .rating-widget button {
            width: 100%;
            padding: 1rem;
            background: linear-gradient(to right, var(--primary), #a30000);
            color: white;
            border: none;
            border-radius: var(--border-radius);
            font-weight: bold;
            cursor: pointer;
            transition: var(--transition);
            font-size: 1rem;
        }
        .comment-widget button:hover, .rating-widget button:hover {
            background: linear-gradient(to right, #a30000, var(--primary));
            box-shadow: 0 0 15px rgba(139, 0, 0, 0.7);
        }
        .update-time {
            font-size: 0.9rem;
            color: #aaa;
            text-align: center;
            padding-top: 1rem;
            border-top: 1px solid var(--gray);
        }
        footer {
            background-color: var(--dark);
            padding: 3rem 0 1.5rem;
            border-top: 5px solid var(--primary);
            margin-top: 3rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 2rem;
        }
        .footer-section h3 {
            color: var(--accent);
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
        }
        friend-link {
            display: block;
            margin-bottom: 1rem;
            padding: 0.8rem;
            background: rgba(255,255,255,0.05);
            border-radius: var(--border-radius);
            transition: var(--transition);
        }
        friend-link:hover {
            background: rgba(139, 0, 0, 0.3);
            padding-left: 1.2rem;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid var(--gray);
            color: #aaa;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            aside {
                position: static;
            }
            h1 {
                font-size: 2.5rem;
            }
            h2 {
                font-size: 2rem;
            }
        }
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                align-items: flex-start;
            }
            .burger {
                display: flex;
                position: absolute;
                right: 1.5rem;
                top: 1.5rem;
            }
            nav {
                width: 100%;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.5s ease;
            }
            nav.active {
                max-height: 300px;
                margin-top: 1rem;
            }
            nav ul {
                flex-direction: column;
                align-items: flex-start;
                gap: 1rem;
            }
            .hero h1 {
                font-size: 2.5rem;
            }
            .article-img {
                float: none;
                margin: 1rem auto;
                max-width: 100%;
            }
            .search-box {
                flex-direction: column;
                border-radius: var(--border-radius);
            }
            .search-box input, .search-box button {
                width: 100%;
                border-radius: 0;
            }
        }
