        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary: #b8860b;
            --secondary: #654321;
            --accent: #d4af37;
            --dark: #1a1a1a;
            --light: #f5f5dc;
            --sand: #e6d5a8;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
            --transition: all 0.3s ease;
        }
        body {
            background-color: var(--dark);
            color: var(--light);
            line-height: 1.7;
            overflow-x: hidden;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        h1, h2, h3, h4 {
            color: var(--accent);
            margin-bottom: 1rem;
            font-weight: 700;
            line-height: 1.3;
        }
        h1 {
            font-size: 2.8rem;
            margin-top: 2rem;
            border-bottom: 3px solid var(--primary);
            padding-bottom: 0.5rem;
        }
        h2 {
            font-size: 2.2rem;
            margin-top: 3rem;
            border-left: 5px solid var(--primary);
            padding-left: 15px;
        }
        h3 {
            font-size: 1.8rem;
            margin-top: 2.5rem;
            color: var(--sand);
        }
        h4 {
            font-size: 1.4rem;
            margin-top: 2rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        .lead {
            font-size: 1.3rem;
            color: var(--sand);
            font-weight: 300;
        }
        .highlight {
            background: linear-gradient(90deg, transparent, rgba(180, 134, 11, 0.2), transparent);
            padding: 2rem;
            border-radius: 8px;
            margin: 2rem 0;
            border-left: 4px solid var(--primary);
        }
        .term {
            color: var(--accent);
            font-weight: bold;
            font-style: italic;
        }
        header {
            background-color: rgba(26, 26, 26, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid var(--secondary);
            padding: 1rem 0;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Cinzel', serif;
            font-size: 2.5rem;
            font-weight: 900;
            color: var(--accent);
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 3px;
            background: linear-gradient(to right, var(--primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            transition: var(--transition);
        }
        .my-logo:hover {
            transform: scale(1.05);
            text-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
        }
        .main-nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
        }
        .nav-links li {
            margin-left: 2rem;
        }
        .nav-links a {
            color: var(--light);
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 0;
            position: relative;
            transition: var(--transition);
        }
        .nav-links a:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary);
            transition: var(--transition);
        }
        .nav-links a:hover {
            color: var(--accent);
        }
        .nav-links a:hover:after {
            width: 100%;
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: rgba(101, 67, 33, 0.2);
            margin-bottom: 2rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
        }
        .breadcrumb li {
            margin-right: 0.5rem;
            font-size: 0.95rem;
        }
        .breadcrumb li:not(:last-child):after {
            content: '›';
            margin-left: 0.5rem;
            color: var(--primary);
        }
        .breadcrumb a {
            color: var(--sand);
            text-decoration: none;
            transition: var(--transition);
        }
        .breadcrumb a:hover {
            color: var(--accent);
            text-decoration: underline;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: var(--light);
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.5rem;
        }
        .search-container {
            margin: 3rem auto;
            max-width: 800px;
            background-color: rgba(101, 67, 33, 0.3);
            padding: 2rem;
            border-radius: 10px;
            box-shadow: var(--shadow);
        }
        .search-form {
            display: flex;
        }
        .search-input {
            flex-grow: 1;
            padding: 1rem;
            border: 2px solid var(--secondary);
            border-right: none;
            background-color: var(--dark);
            color: var(--light);
            font-size: 1.1rem;
            border-radius: 8px 0 0 8px;
        }
        .search-btn {
            background-color: var(--primary);
            color: var(--dark);
            border: none;
            padding: 0 2rem;
            font-weight: bold;
            font-size: 1.1rem;
            cursor: pointer;
            border-radius: 0 8px 8px 0;
            transition: var(--transition);
        }
        .search-btn:hover {
            background-color: var(--accent);
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            margin: 3rem 0;
        }
        .article-content {
            background-color: rgba(26, 26, 26, 0.8);
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: var(--shadow);
        }
        .sidebar {
            background-color: rgba(101, 67, 33, 0.3);
            padding: 2rem;
            border-radius: 15px;
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .sidebar h3 {
            margin-top: 0;
            font-size: 1.5rem;
        }
        .rating-section, .comment-section {
            background-color: rgba(26, 26, 26, 0.9);
            padding: 2rem;
            border-radius: 10px;
            margin: 3rem 0;
            box-shadow: var(--shadow);
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 0.5rem;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 2rem;
            color: #444;
            cursor: pointer;
            transition: var(--transition);
        }
        .star-rating label:hover,
        .star-rating label:hover ~ label,
        .star-rating input:checked ~ label {
            color: var(--accent);
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        .form-control {
            padding: 1rem;
            background-color: rgba(245, 245, 220, 0.1);
            border: 1px solid var(--secondary);
            border-radius: 8px;
            color: var(--light);
            font-size: 1rem;
            resize: vertical;
        }
        .submit-btn {
            background-color: var(--primary);
            color: var(--dark);
            border: none;
            padding: 1rem 2rem;
            font-weight: bold;
            font-size: 1.1rem;
            border-radius: 8px;
            cursor: pointer;
            transition: var(--transition);
            align-self: flex-start;
        }
        .submit-btn:hover {
            background-color: var(--accent);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(180, 134, 11, 0.4);
        }
        .article-img {
            margin: 2.5rem auto;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            border: 5px solid var(--secondary);
        }
        .img-caption {
            text-align: center;
            font-style: italic;
            color: var(--sand);
            margin-top: 0.5rem;
            font-size: 0.95rem;
        }
        .content-link {
            color: var(--primary);
            text-decoration: none;
            border-bottom: 1px dotted var(--primary);
            transition: var(--transition);
        }
        .content-link:hover {
            color: var(--accent);
            border-bottom: 1px solid var(--accent);
        }
        footer {
            background-color: rgba(101, 67, 33, 0.5);
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
            border-top: 3px solid var(--primary);
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section h3 {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        .footer-links a {
            color: var(--sand);
            text-decoration: none;
            transition: var(--transition);
        }
        .footer-links a:hover {
            color: var(--accent);
            padding-left: 5px;
        }
        friend-link {
            display: block;
            margin: 1rem 0;
            padding: 1rem;
            background-color: rgba(26, 26, 26, 0.5);
            border-radius: 8px;
            transition: var(--transition);
        }
        friend-link:hover {
            background-color: rgba(180, 134, 11, 0.2);
            transform: translateX(5px);
        }
        friend-link a {
            color: var(--accent);
            text-decoration: none;
            font-weight: bold;
            display: block;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(180, 134, 11, 0.3);
            color: var(--sand);
            font-size: 0.9rem;
        }
        @media (max-width: 1024px) {
            .main-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            .sidebar {
                position: static;
            }
        }
        @media (max-width: 768px) {
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            h3 { font-size: 1.5rem; }
            .header-container {
                flex-wrap: wrap;
            }
            .hamburger {
                display: block;
                order: 1;
            }
            .my-logo {
                order: 0;
                font-size: 2rem;
            }
            .main-nav {
                order: 2;
                width: 100%;
                margin-top: 1rem;
                display: none;
            }
            .nav-active {
                display: block;
            }
            .nav-links {
                flex-direction: column;
                width: 100%;
            }
            .nav-links li {
                margin: 0;
                width: 100%;
                border-bottom: 1px solid rgba(101, 67, 33, 0.5);
            }
            .nav-links a {
                display: block;
                padding: 1rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-input {
                border-radius: 8px;
                border-right: 2px solid var(--secondary);
                margin-bottom: 1rem;
            }
            .search-btn {
                border-radius: 8px;
                padding: 1rem;
            }
            .article-content {
                padding: 1.5rem;
            }
        }
