:root {
            --primary-dark: #0c0c1c;
            --primary-red: #8b0000;
            --primary-gold: #d4af37;
            --secondary-steel: #b0c4de;
            --text-light: #f5f5f5;
            --text-dim: #cccccc;
            --bg-parchment: #fdf5e6;
            --border-dark: #2a2a3c;
            --shadow-dark: rgba(10, 10, 20, 0.7);
            --transition-main: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            font-size: 100%;
        }
        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: linear-gradient(to bottom, var(--primary-dark) 0%, #1a1a2e 100%);
            overflow-x: hidden;
        }
        a {
            color: var(--primary-gold);
            text-decoration: none;
            transition: var(--transition-main);
        }
        a:hover {
            color: var(--secondary-steel);
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background-color: rgba(12, 12, 28, 0.95);
            border-bottom: 2px solid var(--primary-red);
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }
        .my-logo {
            font-family: 'Times New Roman', serif;
            font-size: 2.2rem;
            font-weight: bold;
            background: linear-gradient(to right, var(--primary-gold), var(--secondary-steel));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: 1px;
            text-shadow: 1px 1px 3px var(--shadow-dark);
        }
        .my-logo:hover {
            text-decoration: none;
            opacity: 0.9;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        .main-nav a {
            font-weight: 600;
            padding: 5px 0;
            position: relative;
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary-gold);
            transition: width 0.3s ease;
        }
        .main-nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: var(--primary-gold);
            font-size: 1.8rem;
            cursor: pointer;
        }
        .breadcrumb {
            padding: 12px 20px;
            background-color: rgba(42, 42, 60, 0.6);
            font-size: 0.9rem;
            color: var(--text-dim);
            border-bottom: 1px solid var(--border-dark);
        }
        .breadcrumb a {
            color: var(--secondary-steel);
        }
        .main-content {
            padding: 30px 0;
            background-color: rgba(255, 255, 255, 0.02);
        }
        .article-container {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media (max-width: 992px) {
            .article-container {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: linear-gradient(145deg, rgba(26, 26, 46, 0.9) 0%, rgba(12, 12, 28, 0.9) 100%);
            border-radius: 8px;
            padding: 40px;
            box-shadow: 0 10px 30px var(--shadow-dark);
            border: 1px solid var(--border-dark);
        }
        h1 {
            font-size: 2.8rem;
            color: var(--primary-gold);
            margin-bottom: 20px;
            line-height: 1.2;
            text-align: center;
            border-bottom: 3px double var(--primary-red);
            padding-bottom: 20px;
        }
        h2 {
            font-size: 2rem;
            color: var(--secondary-steel);
            margin-top: 40px;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid rgba(139, 0, 0, 0.5);
        }
        h3 {
            font-size: 1.6rem;
            color: var(--primary-gold);
            margin-top: 30px;
            margin-bottom: 15px;
        }
        h4 {
            font-size: 1.3rem;
            color: var(--text-dim);
            margin-top: 25px;
            margin-bottom: 10px;
            font-style: italic;
        }
        p {
            margin-bottom: 1.5em;
            text-align: justify;
            color: var(--text-light);
            font-size: 1.1rem;
        }
        .intro {
            font-size: 1.2rem;
            background-color: rgba(212, 175, 55, 0.05);
            padding: 25px;
            border-left: 5px solid var(--primary-gold);
            border-radius: 0 8px 8px 0;
            margin-bottom: 30px;
        }
        .highlight {
            background-color: rgba(139, 0, 0, 0.1);
            padding: 20px;
            border-radius: 8px;
            border: 1px solid var(--primary-red);
            margin: 25px 0;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        strong {
            color: var(--primary-gold);
            font-weight: 700;
        }
        .featured-image {
            width: 80%;
            margin: 30px auto;
            border-radius: 8px;
            overflow: hidden;
            border: 3px solid var(--primary-gold);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
        }
        .featured-image figcaption {
            text-align: center;
            font-style: italic;
            padding: 10px;
            background-color: rgba(0, 0, 0, 0.5);
            color: var(--text-dim);
            font-size: 0.95rem;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .widget {
            background-color: rgba(26, 26, 46, 0.9);
            border: 1px solid var(--border-dark);
            border-radius: 8px;
            padding: 25px;
        }
        .widget h3 {
            font-size: 1.4rem;
            margin-top: 0;
            color: var(--secondary-steel);
            border-bottom: 1px solid var(--border-dark);
            padding-bottom: 10px;
        }
        .search-form, .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        label {
            font-weight: 600;
            color: var(--text-dim);
        }
        input, textarea, select {
            padding: 12px 15px;
            background-color: rgba(245, 245, 245, 0.1);
            border: 1px solid var(--border-dark);
            border-radius: 4px;
            color: var(--text-light);
            font-size: 1rem;
            transition: var(--transition-main);
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: var(--primary-gold);
            box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
        }
        button, .btn {
            padding: 12px 25px;
            background: linear-gradient(to right, var(--primary-red), #a52a2a);
            color: white;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-weight: bold;
            font-size: 1rem;
            transition: var(--transition-main);
            text-align: center;
        }
        button:hover, .btn:hover {
            background: linear-gradient(to right, #a52a2a, var(--primary-red));
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(139, 0, 0, 0.4);
            text-decoration: none;
        }
        .star-rating {
            display: flex;
            justify-content: center;
            gap: 10px;
            font-size: 1.8rem;
            color: var(--text-dim);
            cursor: pointer;
            margin: 10px 0;
        }
        .star-rating .star:hover,
        .star-rating .star:hover ~ .star {
            color: var(--primary-gold);
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            cursor: pointer;
        }
        .star-rating input:checked ~ label {
            color: var(--primary-gold);
        }
        .update-info {
            text-align: center;
            font-size: 0.9rem;
            color: var(--text-dim);
            padding-top: 20px;
            border-top: 1px dashed var(--border-dark);
        }
        .site-footer {
            background-color: #0a0a14;
            border-top: 2px solid var(--primary-red);
            padding: 40px 0 20px;
            margin-top: 50px;
        }
        .footer-container {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        friend-link {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            margin-bottom: 30px;
            padding: 20px;
            background-color: rgba(42, 42, 60, 0.5);
            border-radius: 8px;
            width: 100%;
        }
        friend-link a {
            padding: 8px 15px;
            background-color: rgba(212, 175, 55, 0.1);
            border-radius: 4px;
            border: 1px solid rgba(212, 175, 55, 0.3);
        }
        friend-link a:hover {
            background-color: rgba(212, 175, 55, 0.2);
            text-decoration: none;
        }
        .copyright {
            text-align: center;
            color: var(--text-dim);
            font-size: 0.9rem;
            padding-top: 20px;
            border-top: 1px solid var(--border-dark);
            width: 100%;
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            .hamburger {
                display: block;
                order: 1;
            }
            .my-logo {
                font-size: 1.8rem;
                order: 0;
            }
            .main-nav {
                order: 2;
                width: 100%;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.5s ease;
            }
            .main-nav.active {
                max-height: 400px;
                margin-top: 15px;
            }
            .main-nav ul {
                flex-direction: column;
                gap: 0;
            }
            .main-nav li {
                width: 100%;
                border-bottom: 1px solid var(--border-dark);
            }
            .main-nav a {
                display: block;
                padding: 15px;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            h3 {
                font-size: 1.4rem;
            }
            article {
                padding: 25px;
            }
            .featured-image {
                width: 100%;
            }
        }
