:root {
            --primary-dark: #0d1b2a;
            --primary-mid: #1b263b;
            --primary-light: #415a77;
            --accent-gold: #e0aa3e;
            --accent-silver: #b8b8b8;
            --text-light: #e0e1dd;
            --text-dim: #a9b2c3;
            --border-color: #2a3d5e;
            --shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
            --transition: all 0.3s ease;
            --section-padding: clamp(2rem, 5vw, 4rem);
            --container-width: min(1200px, 95vw);
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: var(--text-light);
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-mid) 100%);
            min-height: 100vh;
            padding-top: 80px;
        }
        a {
            color: var(--accent-gold);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: #ffd166;
            text-decoration: underline;
        }
        .container {
            width: var(--container-width);
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background-color: rgba(13, 27, 42, 0.95);
            backdrop-filter: blur(10px);
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            box-shadow: var(--shadow);
            border-bottom: 1px solid var(--border-color);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }
        .my-logo {
            font-family: 'Cinzel', serif;
            font-size: 2rem;
            font-weight: 700;
            background: linear-gradient(to right, #e0aa3e, #ffd166);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: 1px;
            text-shadow: 0 2px 5px rgba(0,0,0,0.3);
        }
        .my-logo:hover {
            text-decoration: none;
            transform: scale(1.02);
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            font-weight: 600;
            font-size: 1.1rem;
            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;
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: rgba(27, 38, 59, 0.7);
            margin-bottom: 2rem;
            border-bottom: 1px solid var(--border-color);
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin-left: 0.5rem;
            color: var(--accent-silver);
        }
        .hero {
            text-align: center;
            padding: var(--section-padding) 0;
            border-bottom: 2px solid var(--border-color);
            background: radial-gradient(circle at center, rgba(65, 90, 119, 0.2) 0%, transparent 70%);
        }
        .hero h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            margin-bottom: 1.5rem;
            color: #fff;
            text-shadow: 0 3px 10px rgba(0,0,0,0.5);
            line-height: 1.2;
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 2rem;
            color: var(--text-dim);
        }
        .article-meta {
            display: flex;
            justify-content: center;
            gap: 2rem;
            color: var(--accent-silver);
            font-size: 0.9rem;
            margin-top: 2rem;
        }
        main {
            padding: var(--section-padding) 0;
        }
        article {
            background: rgba(27, 38, 59, 0.6);
            border-radius: 15px;
            padding: 3rem;
            margin-bottom: 3rem;
            box-shadow: var(--shadow);
            border: 1px solid var(--border-color);
        }
        h2, h3, h4 {
            color: #fff;
            margin-top: 2.5rem;
            margin-bottom: 1rem;
            line-height: 1.3;
        }
        h2 {
            font-size: 2.2rem;
            border-left: 5px solid var(--accent-gold);
            padding-left: 1rem;
            position: relative;
        }
        h2::before {
            content: '⚡';
            margin-right: 10px;
        }
        h3 {
            font-size: 1.8rem;
            color: var(--accent-gold);
            padding-bottom: 0.5rem;
            border-bottom: 1px dashed var(--border-color);
        }
        h4 {
            font-size: 1.4rem;
            color: var(--accent-silver);
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            hyphens: auto;
        }
        .highlight {
            background: rgba(224, 170, 62, 0.1);
            border-left: 4px solid var(--accent-gold);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .content-img {
            width: 100%;
            max-width: 800px;
            height: auto;
            border-radius: 10px;
            margin: 2rem auto;
            display: block;
            box-shadow: var(--shadow);
            border: 2px solid var(--border-color);
            transition: transform 0.5s ease;
        }
        .content-img:hover {
            transform: scale(1.01);
        }
        .related-links {
            background: rgba(65, 90, 119, 0.3);
            padding: 1.5rem;
            border-radius: 10px;
            margin: 3rem 0;
        }
        .related-links h3 {
            margin-top: 0;
        }
        .related-links ul {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1rem;
            list-style: none;
        }
        .related-links li a {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem;
            background: rgba(27, 38, 59, 0.7);
            border-radius: 5px;
            border: 1px solid transparent;
        }
        .related-links li a:hover {
            background: rgba(27, 38, 59, 0.9);
            border-color: var(--accent-gold);
            text-decoration: none;
        }
        .related-links li a::before {
            content: '🔗';
        }
        .interactive-module {
            background: rgba(13, 27, 42, 0.8);
            border-radius: 12px;
            padding: 2rem;
            margin: 3rem 0;
            border: 1px solid var(--border-color);
        }
        .module-title {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }
        .module-title i {
            color: var(--accent-gold);
            font-size: 1.8rem;
        }
        .search-form, .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        label {
            font-weight: 600;
            color: var(--accent-silver);
        }
        input, textarea, select {
            padding: 0.8rem 1rem;
            background: rgba(255, 255, 255, 0.07);
            border: 1px solid var(--border-color);
            border-radius: 6px;
            color: var(--text-light);
            font-size: 1rem;
            transition: var(--transition);
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: var(--accent-gold);
            box-shadow: 0 0 0 3px rgba(224, 170, 62, 0.2);
        }
        button, .btn {
            background: linear-gradient(to right, var(--accent-gold), #c9931a);
            color: var(--primary-dark);
            border: none;
            padding: 0.9rem 1.8rem;
            border-radius: 6px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: var(--transition);
            align-self: flex-start;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        button:hover, .btn:hover {
            background: linear-gradient(to right, #ffd166, #e0aa3e);
            transform: translateY(-3px);
            box-shadow: 0 7px 14px rgba(224, 170, 62, 0.2);
            text-decoration: none;
        }
        .star-rating {
            display: flex;
            gap: 0.5rem;
            font-size: 1.8rem;
            color: var(--accent-silver);
            cursor: pointer;
        }
        .star-rating i:hover,
        .star-rating i:hover ~ i {
            color: var(--accent-silver);
        }
        .star-rating i.active {
            color: var(--accent-gold);
        }
        .site-footer {
            background-color: var(--primary-dark);
            padding: var(--section-padding) 0 2rem;
            border-top: 2px solid var(--border-color);
            margin-top: 4rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }
        .footer-logo {
            font-size: 2.2rem;
        }
        .friend-links {
            margin: 2rem 0;
        }
        .friend-links h4 {
            margin-bottom: 1rem;
        }
        friend-link {
            display: inline-block;
            background: rgba(65, 90, 119, 0.4);
            padding: 0.8rem 1.2rem;
            margin: 0.5rem;
            border-radius: 6px;
            border: 1px solid var(--border-color);
            transition: var(--transition);
        }
        friend-link:hover {
            background: rgba(65, 90, 119, 0.8);
            border-color: var(--accent-gold);
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid var(--border-color);
            color: var(--text-dim);
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            .main-nav ul {
                gap: 1rem;
            }
            article {
                padding: 2rem;
            }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .main-nav {
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: var(--primary-mid);
                clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
                transition: clip-path 0.4s ease;
                box-shadow: var(--shadow);
            }
            .main-nav.active {
                clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            }
            .main-nav ul {
                flex-direction: column;
                padding: 2rem;
                gap: 1.5rem;
            }
            .header-container {
                padding: 0.8rem 0;
            }
            .hero h1 {
                font-size: 2.5rem;
            }
            h2 {
                font-size: 2rem;
            }
            h3 {
                font-size: 1.6rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 15px;
            }
            article {
                padding: 1.5rem;
            }
            .hero {
                padding: 3rem 0;
            }
            .article-meta {
                flex-direction: column;
                gap: 1rem;
            }
            .footer-content {
                grid-template-columns: 1fr;
            }
        }
