:root {
            --primary-red: #9d0208;
            --secondary-red: #d00000;
            --dark-bg: #0a0a0a;
            --light-bg: #1a1a1a;
            --text-light: #f5f5f5;
            --text-dim: #b0b0b0;
            --accent-gold: #ffd700;
            --border-color: #333;
            --section-padding: 2rem;
            --transition: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: var(--text-light);
            background-color: var(--dark-bg);
            overflow-x: hidden;
        }
        a {
            color: var(--secondary-red);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--accent-gold);
            text-decoration: underline;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }
        .site-header {
            background-color: rgba(10, 10, 10, 0.95);
            border-bottom: 3px solid var(--primary-red);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 1rem 0;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Impact', 'Arial Black', sans-serif;
            font-size: 2.5rem;
            color: var(--secondary-red);
            text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
            letter-spacing: 2px;
        }
        .my-logo a:hover {
            text-decoration: none;
            color: var(--accent-gold);
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 1.5rem;
        }
        .main-nav a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 0;
            position: relative;
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--accent-gold);
            transition: width 0.3s ease;
        }
        .main-nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: var(--text-light);
            cursor: pointer;
        }
        .breadcrumb {
            background-color: var(--light-bg);
            padding: 0.8rem 0;
            margin-bottom: 1rem;
            font-size: 0.9rem;
        }
        .breadcrumb ul {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '>';
            margin: 0 0.5rem;
            color: var(--text-dim);
        }
        main {
            padding: var(--section-padding) 0;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2rem;
        }
        .content-area {
            background-color: var(--light-bg);
            border-radius: 8px;
            padding: 2rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.5);
        }
        article h1 {
            color: var(--accent-gold);
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            border-bottom: 2px solid var(--primary-red);
            padding-bottom: 0.5rem;
        }
        article h2 {
            color: var(--secondary-red);
            font-size: 2rem;
            margin: 2rem 0 1rem;
            padding-left: 0.5rem;
            border-left: 4px solid var(--primary-red);
        }
        article h3 {
            color: var(--text-light);
            font-size: 1.6rem;
            margin: 1.5rem 0 0.8rem;
        }
        article h4 {
            color: var(--text-dim);
            font-size: 1.3rem;
            margin: 1.2rem 0 0.6rem;
        }
        article p {
            margin-bottom: 1.2rem;
            text-align: justify;
        }
        article strong {
            color: var(--accent-gold);
            font-weight: 700;
        }
        .featured-img {
            width: 100%;
            max-width: 800px;
            height: auto;
            border: 3px solid var(--border-color);
            border-radius: 5px;
            margin: 1.5rem auto;
            display: block;
            box-shadow: 0 4px 8px rgba(0,0,0,0.7);
        }
        .update-time {
            font-style: italic;
            color: var(--text-dim);
            font-size: 0.9rem;
            margin-bottom: 2rem;
            text-align: right;
        }
        .sidebar {
            background-color: var(--light-bg);
            border-radius: 8px;
            padding: 1.5rem;
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .sidebar h3 {
            color: var(--accent-gold);
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid var(--border-color);
        }
        .search-box, .comment-form, .rating-form {
            margin-bottom: 2rem;
        }
        .search-box input, .comment-form input, .comment-form textarea, .rating-form select {
            width: 100%;
            padding: 0.8rem;
            margin-bottom: 0.8rem;
            background-color: #2a2a2a;
            border: 1px solid var(--border-color);
            border-radius: 4px;
            color: var(--text-light);
        }
        .search-box button, .comment-form button, .rating-form button {
            width: 100%;
            padding: 0.8rem;
            background-color: var(--primary-red);
            color: white;
            border: none;
            border-radius: 4px;
            font-weight: bold;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-box button:hover, .comment-form button:hover, .rating-form button:hover {
            background-color: var(--secondary-red);
        }
        .stars {
            display: flex;
            justify-content: space-between;
            margin-bottom: 0.8rem;
        }
        .stars i {
            color: #555;
            cursor: pointer;
            font-size: 1.5rem;
        }
        .stars i:hover,
        .stars i:hover ~ i {
            color: var(--accent-gold);
        }
        .site-footer {
            background-color: #050505;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
            border-top: 3px solid var(--primary-red);
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        .footer-section h4 {
            color: var(--accent-gold);
            margin-bottom: 1rem;
            font-size: 1.2rem;
        }
        friend-link {
            display: block;
            margin-bottom: 0.5rem;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid var(--border-color);
            color: var(--text-dim);
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
            }
        }
        @media (max-width: 768px) {
            .header-content {
                flex-wrap: wrap;
            }
            .hamburger {
                display: block;
            }
            .main-nav {
                width: 100%;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.5s ease;
            }
            .main-nav.active {
                max-height: 300px;
                margin-top: 1rem;
            }
            .main-nav ul {
                flex-direction: column;
                gap: 0;
            }
            .main-nav li {
                border-bottom: 1px solid var(--border-color);
            }
            .main-nav a {
                display: block;
                padding: 0.8rem 0;
            }
            article h1 {
                font-size: 2.2rem;
            }
            article h2 {
                font-size: 1.8rem;
            }
        }
