:root {
            --primary-dark: #0c0c14;
            --secondary-dark: #1a1a2e;
            --accent-gold: #c8a970;
            --accent-red: #8b0000;
            --text-light: #f0f0f0;
            --text-grey: #b0b0b0;
            --border-dark: #333348;
            --transition: all 0.3s ease;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
            --radius: 8px;
        }
        * {
            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(--primary-dark);
            background-image: linear-gradient(to bottom, var(--primary-dark) 0%, var(--secondary-dark) 100%);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: var(--accent-gold);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: #fff;
            text-shadow: 0 0 8px rgba(200, 169, 112, 0.7);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background-color: rgba(12, 12, 20, 0.95);
            border-bottom: 2px solid var(--accent-red);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
            backdrop-filter: blur(10px);
        }
        .header-container {
            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: 3px;
            color: var(--accent-gold);
            text-shadow: 2px 2px 4px #000;
            background: linear-gradient(to right, #c8a970, #fff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            padding: 5px 0;
        }
        .my-logo:hover {
            transform: scale(1.02);
        }
        .nav-primary {
            display: flex;
            gap: 25px;
        }
        .nav-primary a {
            font-weight: 600;
            padding: 8px 12px;
            border-radius: var(--radius);
        }
        .nav-primary a:hover {
            background-color: rgba(139, 0, 0, 0.2);
        }
        .search-box {
            display: flex;
            border-radius: 30px;
            overflow: hidden;
            border: 1px solid var(--border-dark);
        }
        .search-box input {
            padding: 10px 15px;
            background: var(--secondary-dark);
            border: none;
            color: var(--text-light);
            width: 220px;
        }
        .search-box button {
            background: var(--accent-red);
            color: white;
            border: none;
            padding: 10px 20px;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-box button:hover {
            background: #a00;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: var(--accent-gold);
            cursor: pointer;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: var(--text-grey);
            border-bottom: 1px solid var(--border-dark);
        }
        .breadcrumb a {
            color: var(--text-grey);
        }
        .breadcrumb a:hover {
            color: var(--accent-gold);
        }
        .main-content {
            flex: 1;
            padding: 30px 0;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        article {
            background: rgba(26, 26, 46, 0.7);
            border-radius: var(--radius);
            padding: 30px;
            box-shadow: var(--shadow);
            border: 1px solid var(--border-dark);
        }
        h1 {
            font-size: 2.8rem;
            margin-bottom: 25px;
            color: var(--accent-gold);
            border-bottom: 2px solid var(--accent-red);
            padding-bottom: 15px;
            line-height: 1.2;
        }
        h2 {
            font-size: 2rem;
            margin: 40px 0 20px;
            color: #fff;
            padding-left: 15px;
            border-left: 5px solid var(--accent-red);
        }
        h3 {
            font-size: 1.5rem;
            margin: 30px 0 15px;
            color: var(--accent-gold);
        }
        h4 {
            font-size: 1.2rem;
            margin: 25px 0 10px;
            color: var(--text-grey);
        }
        p {
            margin-bottom: 20px;
            text-align: justify;
        }
        .lead {
            font-size: 1.2rem;
            font-weight: 500;
            background: rgba(139, 0, 0, 0.1);
            padding: 20px;
            border-radius: var(--radius);
            border-left: 4px solid var(--accent-red);
            margin-bottom: 30px;
        }
        .highlight {
            background: linear-gradient(120deg, rgba(200, 169, 112, 0.15) 0%, transparent 100%);
            padding: 25px;
            border-radius: var(--radius);
            margin: 25px 0;
            border: 1px solid rgba(200, 169, 112, 0.3);
        }
        .info-box {
            background: rgba(12, 12, 20, 0.8);
            border-radius: var(--radius);
            padding: 20px;
            margin: 25px 0;
            border: 1px dashed var(--border-dark);
        }
        .float-img {
            float: right;
            margin: 15px 0 20px 30px;
            max-width: 50%;
            border-radius: var(--radius);
            border: 2px solid var(--accent-gold);
            box-shadow: var(--shadow);
        }
        .related-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 15px;
            margin: 30px 0;
            padding: 20px;
            background: rgba(12, 12, 20, 0.6);
            border-radius: var(--radius);
        }
        .related-links a {
            display: block;
            padding: 10px;
            background: rgba(139, 0, 0, 0.1);
            border-radius: 5px;
            text-align: center;
        }
        .related-links a:hover {
            background: rgba(139, 0, 0, 0.3);
            transform: translateY(-3px);
        }
        .update-time {
            font-style: italic;
            color: var(--text-grey);
            font-size: 0.9rem;
            text-align: right;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid var(--border-dark);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .widget {
            background: rgba(26, 26, 46, 0.7);
            border-radius: var(--radius);
            padding: 25px;
            box-shadow: var(--shadow);
            border: 1px solid var(--border-dark);
        }
        .widget h3 {
            margin-top: 0;
            font-size: 1.4rem;
            padding-bottom: 10px;
            border-bottom: 1px solid var(--border-dark);
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            font-size: 1.8rem;
            color: var(--accent-gold);
            margin: 15px 0;
            cursor: pointer;
        }
        .stars i {
            margin: 0 3px;
            transition: var(--transition);
        }
        .stars i:hover {
            transform: scale(1.2);
            color: #ffd700;
        }
        .rating-form input, .comment-form textarea, .comment-form input {
            width: 100%;
            padding: 12px;
            margin-bottom: 15px;
            background: var(--primary-dark);
            border: 1px solid var(--border-dark);
            border-radius: var(--radius);
            color: var(--text-light);
        }
        .rating-form button, .comment-form button {
            width: 100%;
            padding: 12px;
            background: var(--accent-red);
            color: white;
            border: none;
            border-radius: var(--radius);
            font-weight: bold;
            cursor: pointer;
            transition: var(--transition);
        }
        .rating-form button:hover, .comment-form button:hover {
            background: #a00;
        }
        .site-footer {
            background: rgba(12, 12, 20, 0.98);
            border-top: 2px solid var(--accent-red);
            padding: 40px 0 20px;
            margin-top: 50px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 30px;
        }
        friend-link {
            display: block;
            padding: 10px 0;
            border-bottom: 1px solid var(--border-dark);
        }
        friend-link:last-child {
            border-bottom: none;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid var(--border-dark);
            color: var(--text-grey);
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .nav-primary {
                display: none;
                width: 100%;
                flex-direction: column;
                gap: 10px;
                margin-top: 20px;
            }
            .nav-primary.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .search-box input {
                width: 180px;
            }
            h1 {
                font-size: 2.2rem;
            }
            .float-img {
                float: none;
                margin: 20px 0;
                max-width: 100%;
            }
        }
        @media (max-width: 576px) {
            .header-container {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }
            .search-box {
                width: 100%;
            }
            .search-box input {
                width: 100%;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            article, .widget {
                padding: 20px;
            }
        }
        .spoiler {
            background: #111;
            color: transparent;
            cursor: pointer;
            padding: 5px;
            border-radius: 4px;
            transition: var(--transition);
        }
        .spoiler:hover {
            background: #222;
            color: #f0f0f0;
        }
        .tooltip {
            position: relative;
            border-bottom: 1px dotted var(--accent-gold);
        }
        .tooltip:hover:after {
            content: attr(data-tooltip);
            position: absolute;
            bottom: 100%;
            left: 50%;
            transform: translateX(-50%);
            background: var(--secondary-dark);
            color: var(--text-light);
            padding: 8px 12px;
            border-radius: var(--radius);
            font-size: 0.9rem;
            white-space: nowrap;
            z-index: 10;
            border: 1px solid var(--accent-gold);
        }
