:root {
            --primary-dark: #0a0a12;
            --secondary-dark: #1a1a2e;
            --accent-gold: #d4af37;
            --accent-red: #8b0000;
            --accent-steel: #708090;
            --text-primary: #f0f0f0;
            --text-secondary: #b8b8b8;
            --border-glow: rgba(212, 175, 55, 0.3);
            --section-padding: clamp(1.5rem, 5vw, 4rem);
            --container-max: 1200px;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.8;
            color: var(--text-primary);
            background: linear-gradient(to bottom, var(--primary-dark), var(--secondary-dark));
            min-height: 100vh;
            background-attachment: fixed;
        }
        a {
            color: var(--accent-gold);
            text-decoration: none;
            transition: color 0.3s ease, text-shadow 0.3s ease;
        }
        a:hover {
            color: #fff;
            text-shadow: 0 0 8px var(--accent-gold);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 1.5rem;
        }
        .btn {
            display: inline-block;
            padding: 0.75rem 1.75rem;
            background: linear-gradient(45deg, var(--accent-red), #5a0000);
            color: white;
            border: 1px solid var(--accent-gold);
            border-radius: 4px;
            cursor: pointer;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
        }
        .btn:hover {
            background: linear-gradient(45deg, #9e0000, var(--accent-red));
            box-shadow: 0 0 15px var(--accent-red);
            transform: translateY(-2px);
        }
        .site-header {
            background-color: rgba(10, 10, 18, 0.95);
            border-bottom: 2px solid var(--border-glow);
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(5px);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 1.5rem;
        }
        .my-logo {
            font-family: 'Times New Roman', serif;
            font-size: 2.2rem;
            font-weight: bold;
            background: linear-gradient(to right, #d4af37, #ffdd99);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
            letter-spacing: 2px;
        }
        .my-logo a {
            background: none;
            -webkit-text-fill-color: unset;
        }
        .breadcrumb {
            padding: 1rem 1.5rem;
            background-color: rgba(26, 26, 46, 0.7);
            font-size: 0.9rem;
            color: var(--text-secondary);
        }
        .breadcrumb a {
            color: var(--accent-steel);
        }
        .breadcrumb a:hover {
            color: var(--accent-gold);
        }
        .breadcrumb span {
            margin: 0 0.5rem;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-gold);
            transition: width 0.3s ease;
        }
        .main-nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: var(--accent-gold);
            font-size: 1.8rem;
            cursor: pointer;
        }
        .hero {
            padding: var(--section-padding) 1.5rem;
            text-align: center;
            background: radial-gradient(circle at center, rgba(26, 26, 46, 0.8), rgba(10, 10, 18, 0.9));
            border-bottom: 1px solid var(--border-glow);
        }
        .hero h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            margin-bottom: 1.5rem;
            line-height: 1.2;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #fff;
            text-shadow: 0 0 10px rgba(212, 175, 55, 0.7);
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 2rem;
            color: var(--text-secondary);
        }
        .search-container {
            max-width: 600px;
            margin: 2rem auto;
            padding: 1rem;
            background: rgba(255,255,255,0.05);
            border-radius: 8px;
            border: 1px solid var(--accent-steel);
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex: 1;
            padding: 0.9rem 1rem;
            background: var(--primary-dark);
            border: 1px solid var(--accent-steel);
            border-right: none;
            border-radius: 4px 0 0 4px;
            color: var(--text-primary);
            font-size: 1rem;
        }
        .search-form button {
            padding: 0 1.8rem;
            background: var(--accent-steel);
            color: white;
            border: none;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        .search-form button:hover {
            background: var(--accent-gold);
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr minmax(300px, 25%);
            gap: 3rem;
            padding: var(--section-padding) 1.5rem;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: rgba(26, 26, 46, 0.6);
            border-radius: 8px;
            padding: 2.5rem;
            border: 1px solid rgba(112, 128, 144, 0.3);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }
        .article-content h2 {
            font-size: 2.2rem;
            margin: 2.5rem 0 1.5rem;
            padding-bottom: 0.75rem;
            border-bottom: 2px solid var(--accent-red);
            color: #fff;
        }
        .article-content h3 {
            font-size: 1.7rem;
            margin: 2rem 0 1rem;
            color: var(--accent-gold);
        }
        .article-content h4 {
            font-size: 1.3rem;
            margin: 1.5rem 0 0.75rem;
            color: var(--text-secondary);
        }
        .article-content p {
            margin-bottom: 1.5rem;
            text-align: justify;
            hyphens: auto;
        }
        .article-content .lead {
            font-size: 1.3rem;
            font-weight: 300;
            color: var(--accent-gold);
            border-left: 4px solid var(--accent-red);
            padding-left: 1.5rem;
            margin: 2rem 0;
        }
        .highlight {
            background: rgba(212, 175, 55, 0.1);
            border-left: 4px solid var(--accent-gold);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 4px 4px 0;
        }
        .featured-img {
            width: 100%;
            margin: 2.5rem auto;
            border: 2px solid var(--accent-gold);
            border-radius: 4px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.7);
        }
        .featured-img figcaption {
            text-align: center;
            padding: 0.75rem;
            font-style: italic;
            color: var(--text-secondary);
            background: rgba(0,0,0,0.5);
        }
        .inline-link-list {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            list-style: none;
            padding: 1.5rem;
            background: rgba(10, 10, 18, 0.7);
            border-radius: 4px;
            margin: 2rem 0;
            justify-content: center;
        }
        .inline-link-list li a {
            padding: 0.5rem 1rem;
            border: 1px solid var(--accent-steel);
            border-radius: 4px;
            display: block;
        }
        .sidebar-widget {
            background: rgba(26, 26, 46, 0.8);
            border-radius: 8px;
            padding: 2rem;
            margin-bottom: 2rem;
            border: 1px solid rgba(112, 128, 144, 0.3);
        }
        .sidebar-widget h3 {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid var(--accent-gold);
            color: #fff;
        }
        .rating-container {
            text-align: center;
        }
        .stars {
            font-size: 2rem;
            color: var(--accent-steel);
            margin: 1rem 0;
            cursor: pointer;
        }
        .stars .star:hover,
        .stars .star.active {
            color: var(--accent-gold);
            text-shadow: 0 0 8px gold;
        }
        .comment-form textarea,
        .score-form select {
            width: 100%;
            padding: 1rem;
            margin-bottom: 1rem;
            background: var(--primary-dark);
            border: 1px solid var(--accent-steel);
            border-radius: 4px;
            color: var(--text-primary);
            font-family: inherit;
        }
        .update-time {
            text-align: center;
            font-size: 0.9rem;
            color: var(--accent-steel);
            margin-top: 1rem;
            padding-top: 1rem;
            border-top: 1px dashed var(--accent-steel);
        }
        .site-footer {
            background-color: var(--primary-dark);
            border-top: 2px solid var(--border-glow);
            padding: var(--section-padding) 1.5rem;
            margin-top: 3rem;
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 3rem;
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        .footer-section h4 {
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            color: var(--accent-gold);
        }
        friend-link {
            display: block;
            margin-bottom: 0.75rem;
            padding: 0.5rem;
            background: rgba(255,255,255,0.03);
            border-radius: 4px;
            transition: background 0.3s ease;
        }
        friend-link:hover {
            background: rgba(212, 175, 55, 0.1);
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid var(--accent-steel);
            color: var(--text-secondary);
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .main-nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: var(--secondary-dark);
                padding: 1.5rem;
                border-top: 1px solid var(--border-glow);
                box-shadow: 0 10px 20px rgba(0,0,0,0.5);
            }
            .main-nav.active ul {
                display: flex;
            }
            .header-container {
                flex-wrap: wrap;
            }
            .article-content {
                padding: 1.5rem;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
        }
