        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary-color: #c8a165; 
            --secondary-color: #1a1a2e; 
            --accent-color: #9b2918; 
            --text-light: #f5f5f5;
            --text-dark: #333;
            --bg-dark: #0d0d1a;
            --bg-light: #1e1e2e;
            --border-color: #3a3a4e;
            --transition: all 0.3s ease;
        }
        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(--bg-dark);
            max-width: 100vw;
            overflow-x: hidden;
        }
        a {
            color: var(--primary-color);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--accent-color);
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        ul, ol {
            padding-left: 1.5rem;
            margin: 1rem 0;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }
        .section-padding {
            padding: 3rem 0;
        }
        .visually-hidden {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0,0,0,0);
            border: 0;
        }
        .site-header {
            background-color: var(--secondary-color);
            border-bottom: 2px solid var(--primary-color);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem;
        }
        .my-logo {
            font-family: 'Times New Roman', serif;
            font-size: 2.2rem;
            font-weight: bold;
            color: var(--primary-color);
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        .my-logo:hover {
            text-decoration: none;
            color: var(--accent-color);
        }
        .main-nav {
            display: flex;
            align-items: center;
        }
        .nav-list {
            display: flex;
            list-style: none;
            gap: 1.5rem;
        }
        .nav-list a {
            padding: 0.5rem 1rem;
            border-radius: 4px;
            font-weight: 600;
        }
        .nav-list a:hover {
            background-color: rgba(200, 161, 101, 0.1);
            text-decoration: none;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 4px;
        }
        .hamburger span {
            width: 25px;
            height: 3px;
            background-color: var(--primary-color);
            border-radius: 2px;
            transition: var(--transition);
        }
        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }
        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }
        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }
        .breadcrumb {
            background-color: var(--bg-light);
            padding: 0.8rem 1rem;
            font-size: 0.9rem;
            border-bottom: 1px solid var(--border-color);
        }
        .breadcrumb a {
            color: var(--text-light);
        }
        .breadcrumb a:hover {
            color: var(--primary-color);
        }
        .hero {
            background: linear-gradient(rgba(13,13,26,0.9), rgba(26,26,46,0.9)), url('https://images.unsplash.com/photo-1534447677768-be436bb09401?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
            background-size: cover;
            background-position: center;
            text-align: center;
            padding: 4rem 1rem;
            margin-bottom: 2rem;
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            color: var(--primary-color);
            text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 2rem;
            color: var(--text-light);
        }
        .search-section {
            background-color: var(--bg-light);
            padding: 1.5rem;
            border-radius: 8px;
            margin: 2rem auto;
            max-width: 800px;
            border: 1px solid var(--border-color);
        }
        .search-form {
            display: flex;
            gap: 0.5rem;
        }
        .search-input {
            flex: 1;
            padding: 1rem;
            border: 2px solid var(--border-color);
            border-radius: 4px;
            background-color: var(--secondary-color);
            color: var(--text-light);
            font-size: 1rem;
        }
        .search-input:focus {
            outline: none;
            border-color: var(--primary-color);
        }
        .search-btn {
            padding: 0 1.5rem;
            background-color: var(--primary-color);
            color: var(--secondary-color);
            border: none;
            border-radius: 4px;
            font-weight: bold;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-btn:hover {
            background-color: var(--accent-color);
            color: white;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2rem;
            padding: 1rem 0;
        }
        .article-content {
            background-color: var(--bg-light);
            padding: 2rem;
            border-radius: 8px;
            border: 1px solid var(--border-color);
        }
        .sidebar {
            background-color: var(--bg-light);
            padding: 1.5rem;
            border-radius: 8px;
            border: 1px solid var(--border-color);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        h1, h2, h3, h4 {
            color: var(--primary-color);
            margin-top: 2rem;
            margin-bottom: 1rem;
            line-height: 1.3;
        }
        h1 {
            font-size: 2.8rem;
            border-bottom: 3px solid var(--accent-color);
            padding-bottom: 0.5rem;
        }
        h2 {
            font-size: 2.2rem;
            border-left: 4px solid var(--accent-color);
            padding-left: 1rem;
        }
        h3 {
            font-size: 1.8rem;
        }
        h4 {
            font-size: 1.4rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .highlight {
            background-color: rgba(200, 161, 101, 0.1);
            border-left: 4px solid var(--primary-color);
            padding: 1rem 1.5rem;
            margin: 1.5rem 0;
            border-radius: 0 4px 4px 0;
        }
        .image-container {
            margin: 2rem auto;
            text-align: center;
        }
        .image-caption {
            font-style: italic;
            font-size: 0.9rem;
            color: #aaa;
            margin-top: 0.5rem;
        }
        .content-link {
            font-weight: bold;
            border-bottom: 1px dashed var(--primary-color);
        }
        .key-term {
            font-weight: bold;
            color: var(--accent-color);
        }
        .user-rating {
            background-color: var(--secondary-color);
            padding: 1.5rem;
            border-radius: 8px;
            margin: 2rem 0;
            text-align: center;
        }
        .stars {
            font-size: 1.8rem;
            color: #ffd700;
            margin: 0.5rem 0;
            cursor: pointer;
        }
        .stars span {
            margin: 0 2px;
            transition: var(--transition);
        }
        .stars span:hover {
            transform: scale(1.2);
        }
        .rating-form {
            margin-top: 1rem;
        }
        .comment-section {
            background-color: var(--secondary-color);
            padding: 2rem;
            border-radius: 8px;
            margin: 2rem 0;
        }
        .comment-form textarea {
            width: 100%;
            padding: 1rem;
            border: 2px solid var(--border-color);
            border-radius: 4px;
            background-color: var(--bg-dark);
            color: var(--text-light);
            font-family: inherit;
            font-size: 1rem;
            margin-bottom: 1rem;
            min-height: 150px;
        }
        .form-group {
            margin-bottom: 1rem;
        }
        .form-group input {
            width: 100%;
            padding: 0.8rem;
            border: 2px solid var(--border-color);
            border-radius: 4px;
            background-color: var(--bg-dark);
            color: var(--text-light);
        }
        .submit-btn {
            background-color: var(--primary-color);
            color: var(--secondary-color);
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 4px;
            font-weight: bold;
            cursor: pointer;
            transition: var(--transition);
        }
        .submit-btn:hover {
            background-color: var(--accent-color);
            color: white;
        }
        .site-footer {
            background-color: var(--secondary-color);
            border-top: 2px solid var(--primary-color);
            margin-top: 3rem;
            padding: 2rem 0 0;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            padding-bottom: 2rem;
        }
        .footer-section h3 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.5rem;
        }
        friend-link {
            display: block;
            padding: 0.8rem;
            background-color: rgba(255,255,255,0.05);
            border-radius: 4px;
            margin-bottom: 0.5rem;
            transition: var(--transition);
        }
        friend-link:hover {
            background-color: rgba(200, 161, 101, 0.1);
        }
        .copyright {
            text-align: center;
            padding: 1.5rem;
            border-top: 1px solid var(--border-color);
            font-size: 0.9rem;
            color: #aaa;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
            }
        }
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            h3 { font-size: 1.5rem; }
            .header-container {
                flex-wrap: wrap;
            }
            .main-nav {
                order: 3;
                width: 100%;
                margin-top: 1rem;
                display: none;
            }
            .main-nav.active {
                display: block;
            }
            .nav-list {
                flex-direction: column;
                gap: 0.5rem;
            }
            .hamburger {
                display: flex;
            }
            .search-form {
                flex-direction: column;
            }
            .search-btn {
                padding: 1rem;
            }
        }
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 2rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .article-content, .sidebar {
                padding: 1rem;
            }
        }
