:root {
            --primary-dark: #2A0A0A;
            --primary-red: #8B1A1A;
            --secondary-brown: #5D2906;
            --accent-gold: #D4AF37;
            --accent-yellow: #F3D673;
            --light-bg: #F5F1E8;
            --dark-text: #1A0A0A;
            --light-text: #E8E3D7;
            --border-color: #A0522D;
            --shadow: 0 4px 12px rgba(43, 10, 10, 0.3);
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--dark-text);
            background-color: var(--light-bg);
            background-image: url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path d="M0,0 L100,0 L100,100 Z" fill="%232A0A0A" opacity="0.03"/></svg>');
            background-size: 200px 200px;
        }
        a {
            color: var(--primary-red);
            text-decoration: none;
            transition: color 0.3s, text-shadow 0.3s;
        }
        a:hover {
            color: var(--accent-gold);
            text-shadow: 0 0 2px rgba(212, 175, 55, 0.4);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background-color: var(--primary-dark);
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-brown) 100%);
            color: var(--light-text);
            padding: 1rem 0;
            border-bottom: 3px solid var(--accent-gold);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .my-logo {
            font-family: 'Times New Roman', serif;
            font-size: 2.2rem;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--accent-yellow);
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
        }
        .my-logo a {
            color: inherit;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .my-logo i {
            color: var(--primary-red);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: var(--light-text);
            font-size: 1.8rem;
            cursor: pointer;
            padding: 5px;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 1.5rem;
        }
        .main-nav a {
            color: var(--light-text);
            padding: 0.5rem 1rem;
            border-radius: 4px;
            font-weight: 600;
            font-size: 1.05rem;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .main-nav a:hover, .main-nav a.active {
            background-color: rgba(212, 175, 55, 0.2);
            color: var(--accent-yellow);
        }
        .breadcrumb {
            background-color: rgba(90, 41, 6, 0.08);
            padding: 0.8rem 0;
            font-size: 0.9rem;
            border-bottom: 1px solid var(--border-color);
            margin-bottom: 2rem;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            gap: 0.5rem;
        }
        .breadcrumb li:not(:last-child)::after {
            content: "›";
            margin-left: 0.5rem;
            color: var(--primary-red);
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .interactive-module {
            background: linear-gradient(to right, #f8f4e9, #f0e9d7);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            padding: 1.5rem;
            margin: 2rem 0;
            box-shadow: var(--shadow);
        }
        .module-title {
            font-size: 1.4rem;
            color: var(--primary-dark);
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--accent-gold);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .form-group {
            margin-bottom: 1rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: var(--secondary-brown);
        }
        .form-control {
            width: 100%;
            padding: 0.75rem;
            border: 1px solid var(--border-color);
            border-radius: 4px;
            background-color: #fff;
            font-size: 1rem;
            transition: border 0.3s, box-shadow 0.3s;
        }
        .form-control:focus {
            outline: none;
            border-color: var(--accent-gold);
            box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
        }
        .btn {
            display: inline-block;
            background: linear-gradient(to bottom, var(--primary-red), var(--primary-dark));
            color: white;
            padding: 0.75rem 1.5rem;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-weight: bold;
            font-size: 1rem;
            transition: all 0.3s;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        }
        .btn:hover {
            background: linear-gradient(to bottom, var(--accent-gold), var(--secondary-brown));
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.3);
        }
        .rating-stars {
            display: flex;
            gap: 5px;
            direction: rtl;
            font-size: 1.8rem;
            margin: 1rem 0;
        }
        .rating-stars input {
            display: none;
        }
        .rating-stars label {
            color: #ddd;
            cursor: pointer;
            transition: color 0.3s;
        }
        .rating-stars input:checked ~ label,
        .rating-stars label:hover,
        .rating-stars label:hover ~ label {
            color: var(--accent-gold);
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            margin: 2rem 0;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
        }
        .main-content {
            background-color: white;
            border-radius: 10px;
            padding: 2.5rem;
            box-shadow: var(--shadow);
            border: 1px solid var(--border-color);
        }
        .sidebar {
            background-color: rgba(245, 241, 232, 0.8);
            border-radius: 10px;
            padding: 1.5rem;
            border: 1px dashed var(--border-color);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .sidebar h3 {
            color: var(--primary-dark);
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid var(--accent-gold);
        }
        .sidebar ul {
            list-style: none;
        }
        .sidebar li {
            margin-bottom: 0.8rem;
            padding-left: 1.2rem;
            position: relative;
        }
        .sidebar li::before {
            content: "•";
            color: var(--primary-red);
            font-weight: bold;
            position: absolute;
            left: 0;
        }
        h1 {
            font-size: 2.8rem;
            color: var(--primary-dark);
            margin-bottom: 1.5rem;
            line-height: 1.2;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
            border-bottom: 3px double var(--accent-gold);
            padding-bottom: 0.5rem;
        }
        h2 {
            font-size: 2rem;
            color: var(--secondary-brown);
            margin: 2.5rem 0 1.2rem;
            padding-left: 10px;
            border-left: 5px solid var(--primary-red);
        }
        h3 {
            font-size: 1.6rem;
            color: var(--primary-dark);
            margin: 2rem 0 1rem;
        }
        h4 {
            font-size: 1.3rem;
            color: var(--secondary-brown);
            margin: 1.5rem 0 0.8rem;
        }
        .article-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid #eee;
            font-size: 0.95rem;
            color: #666;
        }
        .update-time {
            background-color: #f0f0f0;
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-weight: 600;
        }
        p {
            margin-bottom: 1.2rem;
            text-align: justify;
            hyphens: auto;
        }
        .lead {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--primary-dark);
            background-color: rgba(212, 175, 55, 0.1);
            padding: 1rem;
            border-radius: 6px;
            border-left: 4px solid var(--accent-gold);
        }
        .highlight-box {
            background: linear-gradient(145deg, #f9f3e5, #f5ebd7);
            border: 1px solid var(--accent-yellow);
            border-radius: 8px;
            padding: 1.5rem;
            margin: 1.5rem 0;
            box-shadow: 0 3px 10px rgba(212, 175, 55, 0.15);
        }
        .trophy-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        }
        .trophy-table th, .trophy-table td {
            border: 1px solid #ddd;
            padding: 0.8rem;
            text-align: left;
        }
        .trophy-table th {
            background-color: var(--primary-dark);
            color: white;
            font-weight: 600;
        }
        .trophy-table tr:nth-child(even) {
            background-color: #f9f9f9;
        }
        .trophy-table tr:hover {
            background-color: rgba(212, 175, 55, 0.1);
        }
        .trophy-bronze { color: #CD7F32; font-weight: bold; }
        .trophy-silver { color: #C0C0C0; font-weight: bold; }
        .trophy-gold { color: var(--accent-gold); font-weight: bold; }
        .trophy-platinum { color: #8A2BE2; font-weight: bold; }
        .featured-image {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: 8px;
            margin: 2rem 0;
            border: 3px solid var(--secondary-brown);
            box-shadow: var(--shadow);
        }
        .internal-links {
            background-color: #f8f8f8;
            padding: 1rem;
            border-radius: 6px;
            margin: 1.5rem 0;
            font-size: 0.95rem;
        }
        .site-footer {
            background-color: var(--primary-dark);
            color: var(--light-text);
            padding: 2.5rem 0 1.5rem;
            margin-top: 3rem;
            border-top: 3px solid var(--accent-gold);
        }
        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 2rem;
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        .footer-section h3 {
            color: var(--accent-yellow);
            margin-bottom: 1.2rem;
            font-size: 1.3rem;
        }
        friend-link {
            display: block;
            margin-bottom: 0.5rem;
            color: #ccc;
            transition: color 0.3s, padding-left 0.3s;
        }
        friend-link:hover {
            color: var(--accent-yellow);
            padding-left: 5px;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            margin-top: 1.5rem;
            border-top: 1px solid rgba(212, 175, 55, 0.3);
            font-size: 0.9rem;
            color: #aaa;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .main-nav ul {
                display: none;
                flex-direction: column;
                width: 100%;
                background-color: var(--primary-dark);
                position: absolute;
                top: 100%;
                left: 0;
                padding: 1rem;
                box-shadow: 0 5px 10px rgba(0,0,0,0.5);
                border-top: 1px solid var(--accent-gold);
            }
            .main-nav.active ul {
                display: flex;
            }
            .header-content {
                flex-direction: column;
                align-items: flex-start;
            }
            .my-logo {
                margin-bottom: 1rem;
                font-size: 1.8rem;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            .main-content {
                padding: 1.5rem;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .main-content, .sidebar, .interactive-module {
            animation: fadeIn 0.6s ease-out;
        }
        .staggered > *:nth-child(2) { animation-delay: 0.1s; }
        .staggered > *:nth-child(3) { animation-delay: 0.2s; }
