:root {
            --primary-dark: #0a0a0a;
            --primary-red: #c00a0a;
            --primary-gold: #d4af37;
            --secondary-gray: #2a2a2a;
            --text-light: #f0f0f0;
            --text-dim: #aaa;
            --accent-blood: #8b0000;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: var(--primary-dark);
            color: var(--text-light);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: var(--primary-gold);
            text-decoration: none;
            transition: color 0.3s ease, text-shadow 0.3s ease;
        }
        a:hover {
            color: var(--primary-red);
            text-shadow: 0 0 8px rgba(192, 10, 10, 0.7);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(to bottom, #1a1a1a 0%, var(--primary-dark) 100%);
            border-bottom: 3px solid var(--primary-red);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.8);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
            font-size: 2.2rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 3px;
            color: var(--primary-red);
            text-shadow: 2px 2px 0px var(--primary-dark),
                         4px 4px 0px rgba(192, 10, 10, 0.3);
        }
        .my-logo span {
            color: var(--text-light);
        }
        .mobile-toggle {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: var(--text-light);
            cursor: pointer;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-red);
            transition: width 0.3s ease;
        }
        .main-nav a:hover::after {
            width: 100%;
        }
        .breadcrumb {
            background-color: var(--secondary-gray);
            padding: 0.8rem 0;
            font-size: 0.9rem;
            margin-bottom: 2rem;
        }
        .breadcrumb a {
            color: var(--text-dim);
        }
        .breadcrumb .separator {
            margin: 0 10px;
            color: var(--primary-red);
        }
        .search-container {
            background: var(--secondary-gray);
            padding: 2rem;
            border-radius: 8px;
            margin: 2rem 0;
            text-align: center;
            border-left: 5px solid var(--primary-red);
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
        }
        .search-input {
            flex-grow: 1;
            padding: 1rem;
            border: 2px solid #444;
            background: #111;
            color: var(--text-light);
            border-radius: 4px 0 0 4px;
            font-size: 1rem;
        }
        .search-btn {
            background: var(--primary-red);
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s;
        }
        .search-btn:hover {
            background: #ff1a1a;
        }
        .article-header {
            text-align: center;
            padding: 3rem 0;
            background: radial-gradient(ellipse at center, #2a0a0a 0%, var(--primary-dark) 70%);
            border-bottom: 1px solid var(--accent-blood);
            margin-bottom: 3rem;
        }
        h1 {
            font-size: 3.2rem;
            color: var(--primary-red);
            margin-bottom: 1rem;
            text-shadow: 3px 3px 0 #000;
            line-height: 1.2;
        }
        .article-meta {
            color: var(--text-dim);
            font-style: italic;
            margin-top: 1.5rem;
        }
        .content-area {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            margin-bottom: 3rem;
        }
        @media (max-width: 992px) {
            .content-area {
                grid-template-columns: 1fr;
            }
        }
        article {
            font-size: 1.1rem;
        }
        h2 {
            color: var(--primary-gold);
            border-left: 5px solid var(--primary-red);
            padding-left: 15px;
            margin: 2.5rem 0 1.5rem;
            font-size: 2.2rem;
        }
        h3 {
            color: var(--text-light);
            margin: 2rem 0 1rem;
            font-size: 1.7rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px dashed #444;
        }
        h4 {
            color: var(--text-dim);
            margin: 1.5rem 0 0.8rem;
            font-size: 1.4rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.3rem;
            font-weight: 300;
            color: var(--text-light);
            background: rgba(42, 42, 42, 0.5);
            padding: 1.5rem;
            border-radius: 5px;
            border-left: 4px solid var(--primary-gold);
            margin-bottom: 2.5rem;
        }
        .highlight {
            background: linear-gradient(90deg, rgba(192,10,10,0.1) 0%, rgba(212,175,55,0.05) 100%);
            padding: 1.5rem;
            border-radius: 8px;
            margin: 2rem 0;
            border: 1px solid rgba(192,10,10,0.3);
        }
        .feature-img {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border: 3px solid var(--secondary-gray);
            border-radius: 5px;
            margin: 2rem 0;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.7);
            transition: transform 0.5s ease;
        }
        .feature-img:hover {
            transform: scale(1.01);
        }
        .img-caption {
            text-align: center;
            font-style: italic;
            color: var(--text-dim);
            margin-top: -1.5rem;
            margin-bottom: 2rem;
        }
        .content-links {
            background: var(--secondary-gray);
            padding: 1.5rem;
            border-radius: 8px;
            margin: 2rem 0;
        }
        .content-links h3 {
            margin-top: 0;
        }
        .content-links ul {
            columns: 2;
            list-style: none;
        }
        .content-links li {
            margin-bottom: 0.8rem;
            padding-left: 1.2rem;
            position: relative;
        }
        .content-links li:before {
            content: '▶';
            color: var(--primary-red);
            position: absolute;
            left: 0;
            font-size: 0.8rem;
        }
        blockquote {
            border-left: 4px solid var(--primary-red);
            padding-left: 1.5rem;
            margin: 2rem 0;
            font-style: italic;
            color: var(--text-dim);
            background: rgba(42, 42, 42, 0.5);
            padding: 1.5rem;
            border-radius: 0 8px 8px 0;
        }
        aside {
            background: var(--secondary-gray);
            border-radius: 8px;
            padding: 1.5rem;
            align-self: start;
            border: 1px solid #444;
        }
        .widget {
            margin-bottom: 2.5rem;
        }
        .widget-title {
            color: var(--primary-gold);
            border-bottom: 2px solid var(--primary-red);
            padding-bottom: 0.5rem;
            margin-bottom: 1.2rem;
            font-size: 1.5rem;
        }
        .rating-widget form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            font-size: 1.8rem;
            margin: 1rem 0;
        }
        .stars input {
            display: none;
        }
        .stars label {
            color: #444;
            cursor: pointer;
            transition: color 0.2s;
        }
        .stars input:checked ~ label,
        .stars label:hover,
        .stars label:hover ~ label {
            color: var(--primary-gold);
        }
        .rating-btn, .comment-btn {
            background: var(--primary-red);
            color: white;
            border: none;
            padding: 0.8rem;
            border-radius: 4px;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s;
        }
        .rating-btn:hover, .comment-btn:hover {
            background: #ff1a1a;
        }
        .comment-widget textarea {
            width: 100%;
            min-height: 120px;
            padding: 1rem;
            background: #111;
            border: 1px solid #444;
            color: var(--text-light);
            border-radius: 4px;
            margin-bottom: 1rem;
            resize: vertical;
        }
        .update-time {
            background: rgba(212, 175, 55, 0.1);
            padding: 1rem;
            border-radius: 5px;
            text-align: center;
            font-size: 0.9rem;
            border: 1px dashed var(--primary-gold);
        }
        footer {
            background: #111;
            border-top: 3px solid var(--primary-red);
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-logo {
            font-size: 2rem;
            color: var(--primary-red);
            margin-bottom: 1rem;
        }
        friend-link {
            display: block;
            margin-bottom: 0.8rem;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #333;
            color: var(--text-dim);
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .mobile-toggle {
                display: block;
            }
            .main-nav {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 80%;
                height: calc(100vh - 80px);
                background: var(--primary-dark);
                border-right: 2px solid var(--primary-red);
                transition: left 0.4s ease;
                padding: 2rem;
                overflow-y: auto;
            }
            .main-nav.active {
                left: 0;
            }
            .main-nav ul {
                flex-direction: column;
                gap: 1.5rem;
            }
            h1 {
                font-size: 2.5rem;
            }
            .content-links ul {
                columns: 1;
            }
        }
