:root {
            --primary-dark: #0a0a12;
            --primary-red: #9d0000;
            --primary-gold: #c8a951;
            --secondary-gray: #2a2a3c;
            --text-light: #e8e8f0;
            --text-muted: #a0a0b0;
            --spacing-unit: 1rem;
            --border-radius: 8px;
            --transition-speed: 0.3s;
            --header-height: 80px;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: var(--primary-dark);
            color: var(--text-light);
            line-height: 1.7;
            overflow-x: hidden;
            background-image: radial-gradient(circle at 15% 50%, rgba(157, 0, 0, 0.05) 0%, transparent 20%), radial-gradient(circle at 85% 30%, rgba(200, 169, 81, 0.03) 0%, transparent 20%);
        }
        a {
            color: var(--primary-gold);
            text-decoration: none;
            transition: color var(--transition-speed);
        }
        a:hover {
            color: var(--primary-red);
            text-decoration: underline;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 var(--spacing-unit);
        }
        .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);
            height: var(--header-height);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 100%;
        }
        .my-logo {
            font-family: 'Times New Roman', serif;
            font-size: 2.2rem;
            font-weight: bold;
            background: linear-gradient(to right, var(--primary-gold), var(--primary-red));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: 1px;
        }
        .my-logo:hover {
            text-decoration: none;
        }
        .nav-desktop {
            display: flex;
            gap: 1.5rem;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-desktop a {
            font-weight: 600;
            padding: 0.5rem;
            border-radius: var(--border-radius);
        }
        .nav-desktop a:hover {
            background-color: var(--secondary-gray);
            text-decoration: none;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 4px;
            background: none;
            border: none;
            padding: 0.5rem;
        }
        .hamburger span {
            width: 25px;
            height: 3px;
            background-color: var(--text-light);
            border-radius: 2px;
            transition: var(--transition-speed);
        }
        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }
        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }
        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }
        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }
        }
        .nav-mobile {
            position: fixed;
            top: var(--header-height);
            left: 0;
            width: 100%;
            background-color: var(--primary-dark);
            border-top: 1px solid var(--secondary-gray);
            padding: 1rem;
            transform: translateY(-100%);
            opacity: 0;
            visibility: hidden;
            transition: transform var(--transition-speed), opacity var(--transition-speed), visibility var(--transition-speed);
            z-index: 999;
        }
        .nav-mobile.active {
            transform: translateY(0);
            opacity: 1;
            visibility: visible;
        }
        .nav-mobile a {
            display: block;
            padding: 0.8rem 1rem;
            border-bottom: 1px solid var(--secondary-gray);
            font-weight: 600;
        }
        .nav-mobile a:last-child {
            border-bottom: none;
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: var(--text-muted);
            border-bottom: 1px solid var(--secondary-gray);
            margin-bottom: 2rem;
        }
        .breadcrumb a {
            color: var(--text-muted);
        }
        .breadcrumb a:hover {
            color: var(--primary-gold);
        }
        .breadcrumb .separator {
            margin: 0 0.5rem;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            padding: 2rem 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background-color: rgba(42, 42, 60, 0.3);
            border-radius: var(--border-radius);
            padding: 2.5rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .widget {
            background-color: rgba(42, 42, 60, 0.3);
            border-radius: var(--border-radius);
            padding: 1.5rem;
            border-left: 4px solid var(--primary-red);
        }
        .widget h3 {
            color: var(--primary-gold);
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid var(--secondary-gray);
        }
        h1 {
            font-size: 3rem;
            color: var(--primary-gold);
            margin-bottom: 1.5rem;
            line-height: 1.2;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.2rem;
            }
        }
        h2 {
            font-size: 2.2rem;
            color: var(--text-light);
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--primary-red);
        }
        h3 {
            font-size: 1.7rem;
            color: var(--primary-gold);
            margin: 2rem 0 1rem;
        }
        h4 {
            font-size: 1.3rem;
            color: var(--text-muted);
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.2rem;
            font-weight: 500;
            color: var(--text-light);
            background-color: rgba(157, 0, 0, 0.1);
            padding: 1.2rem;
            border-left: 4px solid var(--primary-red);
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
            margin-bottom: 2rem;
        }
        .highlight {
            background-color: rgba(200, 169, 81, 0.1);
            padding: 0.2rem 0.4rem;
            border-radius: 3px;
            font-weight: 600;
        }
        .emoji {
            margin-right: 0.3rem;
        }
        .article-image {
            width: 100%;
            max-width: 800px;
            height: auto;
            border-radius: var(--border-radius);
            border: 3px solid var(--secondary-gray);
            margin: 2rem auto;
            display: block;
            transition: transform var(--transition-speed), box-shadow var(--transition-speed);
        }
        .article-image:hover {
            transform: scale(1.01);
            box-shadow: 0 10px 25px rgba(157, 0, 0, 0.3);
        }
        .interactive-section {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            margin: 2.5rem 0;
            padding: 1.5rem;
            background-color: rgba(42, 42, 60, 0.5);
            border-radius: var(--border-radius);
        }
        .search-box, .comment-form, .rating-form {
            flex: 1;
            min-width: 300px;
        }
        .form-group {
            margin-bottom: 1rem;
        }
        label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }
        input, textarea, select {
            width: 100%;
            padding: 0.8rem;
            background-color: var(--primary-dark);
            border: 1px solid var(--secondary-gray);
            border-radius: var(--border-radius);
            color: var(--text-light);
            font-size: 1rem;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: var(--primary-gold);
            box-shadow: 0 0 0 2px rgba(200, 169, 81, 0.3);
        }
        button, .button {
            background: linear-gradient(to right, var(--primary-red), #b30000);
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: var(--border-radius);
            cursor: pointer;
            font-weight: bold;
            transition: background-color var(--transition-speed), transform var(--transition-speed);
        }
        button:hover, .button:hover {
            background: linear-gradient(to right, #b30000, var(--primary-red));
            transform: translateY(-2px);
            text-decoration: none;
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            margin: 0.5rem 0;
        }
        .star {
            font-size: 1.5rem;
            color: var(--secondary-gray);
            cursor: pointer;
            transition: color var(--transition-speed);
        }
        .star:hover,
        .star.active {
            color: var(--primary-gold);
        }
        .link-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1rem;
            margin: 2rem 0;
        }
        .link-list a {
            display: block;
            padding: 0.8rem;
            background-color: rgba(42, 42, 60, 0.5);
            border-radius: var(--border-radius);
            border-left: 3px solid transparent;
            transition: border-color var(--transition-speed), background-color var(--transition-speed);
        }
        .link-list a:hover {
            background-color: rgba(42, 42, 60, 0.8);
            border-left-color: var(--primary-red);
            text-decoration: none;
        }
        .site-footer {
            background-color: #07070c;
            border-top: 2px solid var(--primary-red);
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-logo {
            font-size: 1.8rem;
        }
        friend-link {
            display: block;
            margin: 0.5rem 0;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid var(--secondary-gray);
            color: var(--text-muted);
            font-size: 0.9rem;
        }
        .last-updated {
            text-align: right;
            font-style: italic;
            color: var(--text-muted);
            font-size: 0.9rem;
            margin-top: 2rem;
            padding-top: 1rem;
            border-top: 1px dashed var(--secondary-gray);
        }
        .text-center {
            text-align: center;
        }
        .mt-2 { margin-top: 2rem; }
        .mb-2 { margin-bottom: 2rem; }
