:root {
            --primary-dark: #1a1a2e;
            --primary-deep: #16213e;
            --accent-gold: #d4af37;
            --accent-red: #b71c1c;
            --text-light: #f0f0f0;
            --text-gray: #b0b0b0;
            --section-bg: #0f3460;
            --card-bg: rgba(255, 255, 255, 0.05);
            --border-radius: 12px;
            --shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
            --transition: all 0.3s ease;
        }
        * {
            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-deep) 100%);
            min-height: 100vh;
            background-attachment: fixed;
        }
        a {
            color: var(--accent-gold);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: #ffd700;
            text-decoration: underline;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background-color: rgba(10, 10, 20, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid var(--accent-gold);
            box-shadow: var(--shadow);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .my-logo {
            font-family: 'Palatino Linotype', 'Book Antiqua', serif;
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--accent-gold);
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
            letter-spacing: 1px;
        }
        .my-logo:hover {
            text-decoration: none;
            color: #ffd700;
        }
        .nav-desktop {
            display: flex;
            gap: 30px;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-desktop a {
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 6px;
        }
        .nav-desktop a:hover {
            background-color: rgba(212, 175, 55, 0.15);
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: var(--accent-gold);
            font-size: 1.8rem;
            cursor: pointer;
            padding: 5px;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
        }
        .mobile-nav {
            position: fixed;
            top: 70px;
            left: 0;
            width: 100%;
            background-color: var(--primary-deep);
            flex-direction: column;
            padding: 20px;
            gap: 15px;
            display: none;
            box-shadow: 0 10px 20px rgba(0,0,0,0.5);
            z-index: 999;
            border-top: 1px solid var(--accent-gold);
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            padding: 12px 20px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            font-weight: 600;
        }
        .breadcrumb {
            padding: 15px 0;
            background-color: rgba(15, 52, 96, 0.5);
            margin-bottom: 30px;
        }
        .breadcrumb a {
            color: var(--text-gray);
        }
        .breadcrumb a:hover {
            color: var(--accent-gold);
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 30px 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        article {
            background-color: var(--card-bg);
            backdrop-filter: blur(10px);
            border-radius: var(--border-radius);
            padding: 40px;
            box-shadow: var(--shadow);
            border: 1px solid rgba(212, 175, 55, 0.2);
        }
        h1 {
            font-size: 3rem;
            color: var(--accent-gold);
            margin-bottom: 20px;
            line-height: 1.2;
            text-align: center;
            border-bottom: 3px solid var(--accent-red);
            padding-bottom: 20px;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.2rem;
            }
        }
        h2 {
            font-size: 2.2rem;
            color: var(--accent-gold);
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid rgba(212, 175, 55, 0.5);
        }
        h3 {
            font-size: 1.8rem;
            color: #ffcc80;
            margin: 30px 0 15px;
        }
        h4 {
            font-size: 1.4rem;
            color: #b0b0ff;
            margin: 25px 0 10px;
        }
        p {
            margin-bottom: 1.5em;
            text-align: justify;
            font-size: 1.1rem;
        }
        .intro {
            font-size: 1.3rem;
            font-weight: 300;
            background-color: rgba(183, 28, 28, 0.1);
            padding: 25px;
            border-left: 5px solid var(--accent-red);
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
            margin-bottom: 30px;
        }
        .highlight {
            background-color: rgba(212, 175, 55, 0.1);
            padding: 25px;
            border-radius: var(--border-radius);
            margin: 25px 0;
            border-left: 5px solid var(--accent-gold);
        }
        strong {
            color: #ffcc80;
            font-weight: 700;
        }
        em {
            color: #b0b0ff;
            font-style: italic;
        }
        .article-image {
            width: 100%;
            max-width: 800px;
            height: auto;
            border-radius: var(--border-radius);
            margin: 30px auto;
            display: block;
            box-shadow: var(--shadow);
            border: 3px solid var(--accent-gold);
        }
        figcaption {
            text-align: center;
            font-style: italic;
            color: var(--text-gray);
            margin-top: 10px;
            font-size: 0.95rem;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }
        .sidebar-widget {
            background-color: var(--card-bg);
            backdrop-filter: blur(10px);
            border-radius: var(--border-radius);
            padding: 25px;
            box-shadow: var(--shadow);
            border: 1px solid rgba(255,255,255,0.1);
        }
        .sidebar-widget h3 {
            font-size: 1.5rem;
            margin-top: 0;
            color: var(--accent-gold);
            border-bottom: 1px solid rgba(212, 175, 55, 0.3);
            padding-bottom: 10px;
        }
        .search-form {
            display: flex;
            margin-top: 15px;
        }
        .search-form input {
            flex: 1;
            padding: 12px 15px;
            border: 1px solid rgba(212, 175, 55, 0.5);
            background-color: rgba(0,0,0,0.3);
            color: var(--text-light);
            border-radius: var(--border-radius) 0 0 var(--border-radius);
            font-size: 1rem;
        }
        .search-form button {
            background-color: var(--accent-gold);
            color: var(--primary-dark);
            border: none;
            padding: 0 20px;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
            cursor: pointer;
            font-weight: 700;
            transition: var(--transition);
        }
        .search-form button:hover {
            background-color: #ffd700;
        }
        .related-links ul {
            list-style: none;
            margin-top: 15px;
        }
        .related-links li {
            margin-bottom: 12px;
            padding-bottom: 12px;
            border-bottom: 1px dashed rgba(255,255,255,0.1);
        }
        .related-links a {
            display: block;
            padding: 8px 10px;
            border-radius: 6px;
        }
        .related-links a:hover {
            background-color: rgba(212, 175, 55, 0.1);
            text-decoration: none;
        }
        .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-top: 20px;
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .form-group label {
            font-weight: 600;
            color: var(--accent-gold);
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            padding: 12px 15px;
            border: 1px solid rgba(212, 175, 55, 0.5);
            background-color: rgba(0,0,0,0.3);
            color: var(--text-light);
            border-radius: var(--border-radius);
            font-size: 1rem;
            font-family: inherit;
        }
        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }
        .stars {
            display: flex;
            gap: 10px;
            font-size: 1.8rem;
            color: var(--text-gray);
            cursor: pointer;
        }
        .stars i:hover,
        .stars i.active {
            color: var(--accent-gold);
        }
        .submit-btn {
            background-color: var(--accent-red);
            color: white;
            border: none;
            padding: 15px 25px;
            border-radius: var(--border-radius);
            cursor: pointer;
            font-weight: 700;
            font-size: 1.1rem;
            transition: var(--transition);
            margin-top: 10px;
        }
        .submit-btn:hover {
            background-color: #d32f2f;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(183, 28, 28, 0.4);
        }
        .update-time {
            text-align: center;
            font-style: italic;
            color: var(--text-gray);
            margin: 30px 0;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.2);
        }
        .site-footer {
            background-color: rgba(10, 10, 20, 0.98);
            margin-top: 60px;
            padding: 40px 0;
            border-top: 3px solid var(--accent-gold);
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-section h3 {
            color: var(--accent-gold);
            margin-bottom: 20px;
            font-size: 1.5rem;
        }
        friend-link {
            display: block;
            padding: 10px 0;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        friend-link:last-child {
            border-bottom: none;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.2);
            color: var(--text-gray);
            font-size: 0.95rem;
        }
        .emoji {
            font-size: 1.2em;
            margin: 0 3px;
        }
        .text-center {
            text-align: center;
        }
        .mt-40 {
            margin-top: 40px;
        }
        .mb-30 {
            margin-bottom: 30px;
        }
