:root {
            --primary-dark: #0a0a12;
            --primary-red: #9c1d1d;
            --primary-gold: #c8a55b;
            --secondary-steel: #3a3a4a;
            --text-light: #f0f0f0;
            --text-grey: #b8b8c0;
            --accent-blue: #2a5db0;
            --spacing-xs: 0.5rem;
            --spacing-sm: 1rem;
            --spacing-md: 2rem;
            --spacing-lg: 4rem;
            --border-radius: 4px;
            --transition: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: var(--text-light);
            background-color: var(--primary-dark);
            background-image: 
                radial-gradient(circle at 15% 50%, rgba(156, 29, 29, 0.1) 0%, transparent 20%),
                radial-gradient(circle at 85% 30%, rgba(42, 93, 176, 0.1) 0%, transparent 20%);
            overflow-x: hidden;
        }
        a {
            color: var(--primary-gold);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: #e6c780;
            text-decoration: underline;
        }
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 var(--spacing-md);
        }
        .site-header {
            background-color: rgba(10, 10, 18, 0.95);
            border-bottom: 2px solid var(--primary-red);
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: var(--spacing-sm) 0;
        }
        .my-logo {
            font-family: 'Times New Roman', serif;
            font-size: 2.2rem;
            font-weight: bold;
            color: var(--primary-gold);
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
        }
        .my-logo span {
            color: var(--primary-red);
        }
        .search-form {
            display: flex;
            flex-grow: 0.4;
            max-width: 400px;
        }
        .search-input {
            flex-grow: 1;
            padding: 0.75rem 1rem;
            border: 1px solid var(--secondary-steel);
            border-right: none;
            border-radius: var(--border-radius) 0 0 var(--border-radius);
            background-color: rgba(58, 58, 74, 0.6);
            color: var(--text-light);
            font-size: 1rem;
        }
        .search-btn {
            padding: 0 1.5rem;
            background-color: var(--primary-red);
            color: white;
            border: none;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-btn:hover {
            background-color: #b32424;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: var(--text-light);
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.5rem;
        }
        .main-nav {
            background-color: rgba(26, 26, 36, 0.98);
            border-top: 1px solid var(--secondary-steel);
        }
        .nav-list {
            display: flex;
            list-style: none;
            justify-content: center;
            flex-wrap: wrap;
        }
        .nav-item {
            position: relative;
        }
        .nav-link {
            display: block;
            padding: 1.2rem 1.5rem;
            color: var(--text-grey);
            font-weight: 600;
            text-transform: uppercase;
            font-size: 0.95rem;
            letter-spacing: 0.5px;
        }
        .nav-link:hover,
        .nav-link.active {
            color: var(--primary-gold);
            background-color: rgba(156, 29, 29, 0.1);
        }
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 3px;
            background-color: var(--primary-red);
            transition: var(--transition);
            transform: translateX(-50%);
        }
        .nav-link:hover::after {
            width: 80%;
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: var(--text-grey);
            border-bottom: 1px solid rgba(58, 58, 74, 0.5);
        }
        .breadcrumb a {
            color: var(--text-grey);
        }
        .breadcrumb a:hover {
            color: var(--primary-gold);
        }
        .main-content {
            padding: var(--spacing-lg) 0;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: var(--spacing-lg);
        }
        .article-content {
            background-color: rgba(20, 20, 30, 0.8);
            border-radius: var(--border-radius);
            padding: var(--spacing-lg);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            border: 1px solid var(--secondary-steel);
        }
        .article-header {
            margin-bottom: var(--spacing-lg);
            padding-bottom: var(--spacing-md);
            border-bottom: 2px solid var(--primary-red);
        }
        .article-title {
            font-size: 2.8rem;
            color: var(--primary-gold);
            margin-bottom: var(--spacing-sm);
            line-height: 1.2;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
        }
        .meta-info {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            color: var(--text-grey);
            font-size: 0.9rem;
        }
        .meta-item i {
            margin-right: 0.5rem;
            color: var(--primary-red);
        }
        h1, h2, h3, h4 {
            font-family: Georgia, 'Times New Roman', Times, serif;
            color: var(--primary-gold);
            margin-top: 2.5rem;
            margin-bottom: 1.2rem;
            line-height: 1.3;
        }
        h1 { font-size: 2.8rem; }
        h2 { font-size: 2.2rem; border-left: 4px solid var(--primary-red); padding-left: 1rem; margin-top: 3rem; }
        h3 { font-size: 1.8rem; color: var(--text-light); }
        h4 { font-size: 1.4rem; color: var(--text-grey); }
        p {
            margin-bottom: 1.8rem;
            text-align: justify;
            hyphens: auto;
        }
        .lead {
            font-size: 1.3rem;
            color: var(--text-light);
            font-weight: 500;
            background-color: rgba(58, 58, 74, 0.3);
            padding: 1.5rem;
            border-left: 4px solid var(--accent-blue);
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
            margin-bottom: 2.5rem;
        }
        .highlight-box {
            background: linear-gradient(135deg, rgba(156, 29, 29, 0.1), rgba(42, 93, 176, 0.1));
            border: 1px solid var(--secondary-steel);
            border-radius: var(--border-radius);
            padding: 2rem;
            margin: 2.5rem 0;
        }
        .feature-img {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: var(--border-radius);
            border: 2px solid var(--primary-gold);
            margin: 2.5rem 0;
            box-shadow: 0 10px 20px rgba(0,0,0,0.7);
        }
        .inline-link-list {
            background-color: rgba(58, 58, 74, 0.4);
            padding: 1.5rem;
            border-radius: var(--border-radius);
            margin: 2rem 0;
        }
        .inline-link-list h4 {
            margin-top: 0;
        }
        .link-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1rem;
            margin-top: 1rem;
        }
        .link-grid a {
            display: flex;
            align-items: center;
            padding: 0.8rem;
            background-color: rgba(10, 10, 18, 0.6);
            border-radius: var(--border-radius);
            border: 1px solid transparent;
        }
        .link-grid a:hover {
            border-color: var(--primary-gold);
            background-color: rgba(200, 165, 91, 0.1);
        }
        .link-grid i {
            margin-right: 0.8rem;
            color: var(--primary-red);
        }
        blockquote {
            font-style: italic;
            border-left: 4px solid var(--primary-gold);
            padding-left: 2rem;
            margin: 2.5rem 0;
            color: var(--text-grey);
            font-size: 1.1rem;
            background-color: rgba(58, 58, 74, 0.3);
            padding: 2rem;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            margin: 2.5rem 0;
        }
        .stat-card {
            background-color: rgba(26, 26, 36, 0.8);
            border: 1px solid var(--secondary-steel);
            border-radius: var(--border-radius);
            padding: 1.5rem;
            text-align: center;
            transition: var(--transition);
        }
        .stat-card:hover {
            transform: translateY(-5px);
            border-color: var(--primary-gold);
            box-shadow: 0 10px 20px rgba(0,0,0,0.4);
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--primary-red);
            display: block;
            margin-bottom: 0.5rem;
        }
        .stat-label {
            color: var(--text-grey);
            font-size: 0.95rem;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: var(--spacing-md);
        }
        .sidebar-widget {
            background-color: rgba(20, 20, 30, 0.8);
            border-radius: var(--border-radius);
            padding: 1.8rem;
            border: 1px solid var(--secondary-steel);
        }
        .widget-title {
            font-size: 1.4rem;
            color: var(--primary-gold);
            margin-bottom: 1.5rem;
            padding-bottom: 0.8rem;
            border-bottom: 2px solid var(--primary-red);
        }
        .user-interaction {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            font-size: 1.8rem;
            color: var(--secondary-steel);
            margin-bottom: 1rem;
            cursor: pointer;
        }
        .stars .star {
            padding: 0 0.2rem;
            transition: var(--transition);
        }
        .stars .star:hover,
        .stars .star.active {
            color: var(--primary-gold);
            transform: scale(1.2);
        }
        .comment-form textarea,
        .rating-form select {
            width: 100%;
            padding: 1rem;
            margin-bottom: 1rem;
            border: 1px solid var(--secondary-steel);
            border-radius: var(--border-radius);
            background-color: rgba(58, 58, 74, 0.6);
            color: var(--text-light);
            font-family: inherit;
            resize: vertical;
        }
        .form-btn {
            width: 100%;
            padding: 1rem;
            background-color: var(--primary-red);
            color: white;
            border: none;
            border-radius: var(--border-radius);
            font-weight: bold;
            cursor: pointer;
            transition: var(--transition);
        }
        .form-btn:hover {
            background-color: #b32424;
        }
        .toc {
            position: sticky;
            top: 120px;
        }
        .toc-list {
            list-style: none;
        }
        .toc-item {
            margin-bottom: 0.8rem;
        }
        .toc-link {
            display: block;
            padding: 0.8rem;
            background-color: rgba(58, 58, 74, 0.4);
            border-radius: var(--border-radius);
            border-left: 3px solid transparent;
        }
        .toc-link:hover,
        .toc-link.active {
            border-left-color: var(--primary-red);
            background-color: rgba(156, 29, 29, 0.1);
        }
        .site-footer {
            background-color: rgba(10, 10, 18, 0.98);
            border-top: 2px solid var(--primary-red);
            padding: var(--spacing-lg) 0 var(--spacing-md);
            margin-top: var(--spacing-lg);
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: var(--spacing-lg);
            margin-bottom: var(--spacing-lg);
        }
        .footer-logo {
            font-size: 2rem;
            color: var(--primary-gold);
            margin-bottom: 1rem;
        }
        .footer-description {
            color: var(--text-grey);
            font-size: 0.95rem;
        }
        .friend-links {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin: 1.5rem 0;
        }
        friend-link {
            display: inline-block;
            padding: 0.6rem 1.2rem;
            background-color: rgba(58, 58, 74, 0.6);
            border-radius: var(--border-radius);
            border: 1px solid var(--secondary-steel);
            transition: var(--transition);
        }
        friend-link:hover {
            background-color: rgba(156, 29, 29, 0.2);
            border-color: var(--primary-red);
        }
        .copyright {
            text-align: center;
            padding-top: var(--spacing-md);
            border-top: 1px solid var(--secondary-steel);
            color: var(--text-grey);
            font-size: 0.9rem;
        }
        @media (max-width: 1024px) {
            .main-content {
                grid-template-columns: 1fr;
                gap: var(--spacing-md);
            }
            .sidebar {
                order: -1;
            }
            .toc {
                position: static;
            }
        }
        @media (max-width: 768px) {
            .header-top {
                flex-wrap: wrap;
            }
            .search-form {
                order: 3;
                max-width: 100%;
                margin-top: 1rem;
                flex-grow: 1;
            }
            .hamburger {
                display: block;
            }
            .main-nav {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                box-shadow: 0 10px 20px rgba(0,0,0,0.5);
            }
            .main-nav.active {
                display: block;
            }
            .nav-list {
                flex-direction: column;
            }
            .nav-link {
                padding: 1rem;
                border-bottom: 1px solid rgba(58, 58, 74, 0.5);
            }
            .article-title {
                font-size: 2.2rem;
            }
            h2 { font-size: 1.8rem; }
            h3 { font-size: 1.5rem; }
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 var(--spacing-sm);
            }
            .article-content {
                padding: var(--spacing-md);
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .link-grid {
                grid-template-columns: 1fr;
            }
            .footer-content {
                grid-template-columns: 1fr;
            }
        }
        .text-bold { font-weight: bold; color: var(--primary-gold); }
        .text-italic { font-style: italic; }
        .text-center { text-align: center; }
        .mb-1 { margin-bottom: 1rem; }
        .mb-2 { margin-bottom: 2rem; }
        .mt-2 { margin-top: 2rem; }
        .emoji { font-size: 1.2em; margin: 0 0.2rem; }
