:root {
            --primary-dark: #0a1428;
            --primary-blue: #0090d0;
            --primary-gold: #c8aa6e;
            --primary-red: #c3423f;
            --neutral-light: #f0e6d2;
            --neutral-mid: #5b5a56;
            --neutral-dark: #1e2328;
            --gradient-freljord: linear-gradient(135deg, #a3d4f7 0%, #0a1428 100%);
            --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.5);
            --transition: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: var(--neutral-light);
            background-color: var(--primary-dark);
            background-image: radial-gradient(circle at 20% 30%, rgba(10, 20, 40, 0.9) 0%, #000 100%);
            overflow-x: hidden;
        }
        a {
            color: var(--primary-blue);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--primary-gold);
            text-shadow: 0 0 8px rgba(200, 170, 110, 0.5);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .site-header {
            background-color: rgba(10, 20, 40, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid var(--primary-gold);
            padding: 1rem 2rem;
            position: sticky;
            top: 0;
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .my-logo {
            font-family: 'Cinzel', serif;
            font-size: 2.2rem;
            font-weight: 800;
            background: var(--gradient-freljord);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        .my-logo a {
            background: none;
            color: inherit;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            color: var(--neutral-light);
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            position: relative;
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--primary-gold);
            transition: var(--transition);
            transform: translateX(-50%);
        }
        .main-nav a:hover::after {
            width: 80%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: var(--neutral-light);
            cursor: pointer;
        }
        .breadcrumb {
            padding: 1rem 2rem;
            background-color: rgba(30, 35, 40, 0.8);
            font-size: 0.9rem;
            margin-bottom: 2rem;
        }
        .breadcrumb a {
            color: var(--neutral-light);
        }
        .breadcrumb a:not(:last-child)::after {
            content: ' › ';
            margin: 0 8px;
            color: var(--primary-gold);
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        main {
            grid-column: 1;
        }
        aside {
            grid-column: 2;
        }
        h1, h2, h3, h4 {
            font-family: 'Cinzel', serif;
            color: var(--primary-gold);
            margin-top: 2.5rem;
            margin-bottom: 1.2rem;
            line-height: 1.3;
        }
        h1 {
            font-size: 3.2rem;
            border-bottom: 3px solid var(--primary-blue);
            padding-bottom: 1rem;
            text-align: center;
            background: linear-gradient(to right, #c8aa6e, #f0e6d2);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        h2 {
            font-size: 2.4rem;
            border-left: 5px solid var(--primary-red);
            padding-left: 1rem;
        }
        h3 {
            font-size: 1.8rem;
            color: var(--neutral-light);
        }
        h4 {
            font-size: 1.4rem;
            color: #a3d4f7;
        }
        p {
            margin-bottom: 1.8rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.3rem;
            color: var(--neutral-light);
            font-weight: 300;
            background: rgba(200, 170, 110, 0.1);
            padding: 1.5rem;
            border-radius: 10px;
            border-left: 4px solid var(--primary-gold);
        }
        .highlight {
            background-color: rgba(195, 66, 63, 0.15);
            padding: 2rem;
            border-radius: 12px;
            border: 1px solid var(--primary-red);
            margin: 2.5rem 0;
            box-shadow: var(--shadow-lg);
        }
        .update-time {
            text-align: center;
            font-style: italic;
            color: var(--neutral-mid);
            font-size: 0.95rem;
            margin-top: -1rem;
            margin-bottom: 3rem;
        }
        .article-img {
            width: 100%;
            border-radius: 15px;
            margin: 2.5rem auto;
            border: 3px solid var(--primary-gold);
            box-shadow: var(--shadow-lg);
            transition: transform 0.5s ease;
        }
        .article-img:hover {
            transform: scale(1.02);
        }
        .module {
            background: rgba(30, 35, 40, 0.7);
            border-radius: 12px;
            padding: 2rem;
            margin-bottom: 2.5rem;
            border: 1px solid var(--neutral-mid);
        }
        .module h3 {
            margin-top: 0;
            color: var(--primary-blue);
        }
        .search-box input,
        .comment-form input,
        .comment-form textarea,
        .rating-form select {
            width: 100%;
            padding: 1rem;
            margin-bottom: 1rem;
            background: rgba(240, 230, 210, 0.1);
            border: 1px solid var(--neutral-mid);
            border-radius: 6px;
            color: var(--neutral-light);
            font-size: 1rem;
        }
        .search-box button,
        .comment-form button,
        .rating-form button {
            background: var(--primary-blue);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 6px;
            font-weight: bold;
            cursor: pointer;
            transition: var(--transition);
            width: 100%;
        }
        .search-box button:hover,
        .comment-form button:hover,
        .rating-form button:hover {
            background: var(--primary-gold);
            color: var(--primary-dark);
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            margin: 1rem 0;
            justify-content: center;
        }
        .star {
            font-size: 2rem;
            color: var(--neutral-mid);
            cursor: pointer;
            transition: var(--transition);
        }
        .star:hover,
        .star.active {
            color: var(--primary-gold);
            text-shadow: 0 0 10px gold;
        }
        .related-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 1.5rem;
            margin: 3rem 0;
        }
        .related-card {
            background: rgba(10, 20, 40, 0.7);
            padding: 1.5rem;
            border-radius: 10px;
            border-top: 4px solid var(--primary-blue);
            transition: var(--transition);
        }
        .related-card:hover {
            transform: translateY(-5px);
            border-top-color: var(--primary-gold);
            box-shadow: var(--shadow-lg);
        }
        .site-footer {
            background-color: var(--neutral-dark);
            margin-top: 5rem;
            padding: 3rem 2rem 1.5rem;
            border-top: 3px solid var(--primary-gold);
        }
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
        }
        friend-link {
            display: block;
            margin: 0.8rem 0;
        }
        friend-link a {
            color: var(--neutral-light);
            padding: 0.5rem;
            display: block;
            background: rgba(255,255,255,0.05);
            border-radius: 4px;
        }
        friend-link a:hover {
            background: rgba(200, 170, 110, 0.2);
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid var(--neutral-mid);
            color: var(--neutral-mid);
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            .container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            aside {
                grid-column: 1;
            }
            h1 {
                font-size: 2.6rem;
            }
            h2 {
                font-size: 2rem;
            }
        }
        @media (max-width: 768px) {
            .site-header {
                padding: 1rem;
            }
            .main-nav ul {
                display: none;
                flex-direction: column;
                width: 100%;
                background: var(--neutral-dark);
                position: absolute;
                top: 100%;
                left: 0;
                padding: 1rem;
                box-shadow: var(--shadow-lg);
            }
            .main-nav.active ul {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .container {
                padding: 0 1rem;
            }
            .related-links {
                grid-template-columns: 1fr;
            }
        }
