:root {
            --primary-dark: #1a1a2e;
            --primary-accent: #d4af37;
            --secondary-accent: #b3541e;
            --text-light: #f0f0f0;
            --text-dim: #b0b0b0;
            --bg-card: #252547;
            --border-color: #444477;
            --shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
            --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.8;
            color: var(--text-light);
            background-color: var(--primary-dark);
            background-image: linear-gradient(to bottom, var(--primary-dark), #16213e);
            min-height: 100vh;
        }
        a {
            color: var(--primary-accent);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--secondary-accent);
            text-decoration: underline;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background-color: rgba(26, 26, 46, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid var(--primary-accent);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Palatino Linotype', 'Book Antiqua', serif;
            font-size: 2.2rem;
            font-weight: bold;
            color: var(--primary-accent);
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
            letter-spacing: 1px;
        }
        .my-logo:hover {
            text-decoration: none;
            color: #f0d070;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .main-nav a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 5px;
            border-bottom: 2px solid transparent;
        }
        .main-nav a:hover {
            border-bottom-color: var(--secondary-accent);
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: var(--text-light);
            cursor: pointer;
        }
        .breadcrumb {
            background-color: rgba(37, 37, 71, 0.8);
            padding: 12px 0;
            margin-bottom: 30px;
            font-size: 0.95rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
        }
        .breadcrumb li:not(:last-child)::after {
            content: "›";
            margin: 0 10px;
            color: var(--text-dim);
        }
        .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(--bg-card);
            border-radius: 10px;
            padding: 40px;
            box-shadow: var(--shadow);
            border: 1px solid var(--border-color);
        }
        h1 {
            font-size: 2.8rem;
            color: var(--primary-accent);
            margin-bottom: 25px;
            line-height: 1.2;
            border-bottom: 3px double var(--secondary-accent);
            padding-bottom: 15px;
        }
        h2 {
            font-size: 2rem;
            color: #e0c060;
            margin-top: 50px;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid var(--border-color);
        }
        h3 {
            font-size: 1.6rem;
            color: #d0b050;
            margin-top: 35px;
            margin-bottom: 15px;
        }
        h4 {
            font-size: 1.3rem;
            color: var(--text-light);
            margin-top: 25px;
            margin-bottom: 10px;
        }
        p {
            margin-bottom: 25px;
            text-align: justify;
            font-size: 1.1rem;
        }
        .intro {
            font-size: 1.2rem;
            font-weight: 500;
            background-color: rgba(212, 175, 55, 0.05);
            border-left: 4px solid var(--primary-accent);
            padding: 20px;
            border-radius: 0 8px 8px 0;
            margin-bottom: 40px;
        }
        .highlight {
            background-color: rgba(179, 84, 30, 0.1);
            padding: 25px;
            border-radius: 8px;
            margin: 30px 0;
            border-left: 5px solid var(--secondary-accent);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            margin: 30px auto;
            border-radius: 8px;
            box-shadow: var(--shadow);
            border: 2px solid var(--border-color);
        }
        .caption {
            text-align: center;
            font-style: italic;
            color: var(--text-dim);
            margin-top: -20px;
            margin-bottom: 30px;
        }
        aside {
            position: sticky;
            top: 120px;
            align-self: start;
        }
        .sidebar-widget {
            background-color: var(--bg-card);
            border-radius: 10px;
            padding: 25px;
            margin-bottom: 25px;
            box-shadow: var(--shadow);
            border: 1px solid var(--border-color);
        }
        .sidebar-widget h3 {
            font-size: 1.4rem;
            margin-top: 0;
            color: var(--primary-accent);
            border-bottom: 1px solid var(--border-color);
            padding-bottom: 10px;
        }
        .search-form, .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .form-group {
            display: flex;
            flex-direction: column;
        }
        label {
            margin-bottom: 5px;
            font-weight: 600;
        }
        input, textarea, select {
            padding: 12px 15px;
            border-radius: 5px;
            border: 1px solid var(--border-color);
            background-color: rgba(255, 255, 255, 0.07);
            color: var(--text-light);
            font-size: 1rem;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: var(--primary-accent);
        }
        button {
            background-color: var(--secondary-accent);
            color: white;
            border: none;
            padding: 14px 20px;
            border-radius: 5px;
            font-weight: bold;
            font-size: 1.1rem;
            cursor: pointer;
            transition: var(--transition);
        }
        button:hover {
            background-color: #d46a2a;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            font-size: 1.8rem;
            color: #555;
            gap: 5px;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            cursor: pointer;
            margin-bottom: 0;
        }
        .star-rating label:hover,
        .star-rating label:hover ~ label,
        .star-rating input:checked ~ label {
            color: var(--primary-accent);
        }
        .related-links {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            list-style: none;
            margin: 20px 0;
        }
        .related-links a {
            background-color: rgba(212, 175, 55, 0.1);
            padding: 10px 20px;
            border-radius: 30px;
            display: inline-block;
            border: 1px solid rgba(212, 175, 55, 0.3);
        }
        .related-links a:hover {
            background-color: rgba(212, 175, 55, 0.2);
            text-decoration: none;
            transform: translateY(-3px);
        }
        .site-footer {
            background-color: #0f0f1f;
            border-top: 2px solid var(--primary-accent);
            padding: 50px 0 30px;
            margin-top: 60px;
        }
        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
        friend-link {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 25px;
            margin: 30px 0;
        }
        friend-link a {
            font-size: 1.1rem;
            font-weight: 600;
        }
        .copyright {
            color: var(--text-dim);
            font-size: 0.95rem;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid var(--border-color);
            width: 100%;
        }
        .last-updated {
            color: var(--primary-accent);
            font-weight: bold;
            margin: 20px 0;
            font-size: 1rem;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .bold {
            font-weight: 800;
            color: #f0d070;
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            .hamburger {
                display: block;
                order: 1;
            }
            .my-logo {
                order: 0;
                font-size: 1.8rem;
            }
            .main-nav {
                order: 2;
                flex-basis: 100%;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.4s ease;
            }
            .main-nav.active {
                max-height: 500px;
                margin-top: 20px;
            }
            .main-nav ul {
                flex-direction: column;
                gap: 15px;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            article, .sidebar-widget {
                padding: 25px 20px;
            }
        }
