* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary-color: #D4AF37;
            --secondary-color: #8B4513;
            --accent-color: #2E8B57;
            --dark-color: #1A1A2E;
            --light-color: #F5F5DC;
            --text-color: #333333;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: var(--text-color);
            background-color: #f8f9fa;
            max-width: 100%;
            overflow-x: hidden;
        }
        header {
            background: linear-gradient(135deg, var(--dark-color) 0%, #16213E 100%);
            color: white;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            text-decoration: none;
            color: var(--primary-color);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .logo i {
            font-size: 2rem;
        }
        .logo:hover {
            color: white;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        nav a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            padding: 0.5rem 0;
            position: relative;
            transition: var(--transition);
        }
        nav a:hover {
            color: var(--primary-color);
        }
        nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary-color);
            transition: var(--transition);
        }
        nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }
        .breadcrumb {
            background-color: var(--light-color);
            padding: 0.8rem 2rem;
            font-size: 0.9rem;
            border-bottom: 1px solid #ddd;
        }
        .breadcrumb a {
            color: var(--accent-color);
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        main {
            max-width: 1200px;
            margin: 2rem auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        article {
            background: white;
            border-radius: 12px;
            padding: 3rem;
            box-shadow: var(--shadow);
        }
        h1 {
            color: var(--dark-color);
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            line-height: 1.3;
            border-bottom: 3px solid var(--primary-color);
            padding-bottom: 1rem;
        }
        h2 {
            color: var(--secondary-color);
            font-size: 1.8rem;
            margin: 2.5rem 0 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--light-color);
        }
        h3 {
            color: var(--accent-color);
            font-size: 1.4rem;
            margin: 2rem 0 1rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .highlight {
            background-color: rgba(212, 175, 55, 0.1);
            border-left: 4px solid var(--primary-color);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .stats-box {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            margin: 2.5rem 0;
        }
        .stat-item {
            background: linear-gradient(135deg, var(--light-color) 0%, #e8e8d0 100%);
            padding: 1.5rem;
            border-radius: 10px;
            text-align: center;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        .stat-item:hover {
            transform: translateY(-5px);
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-color);
            display: block;
            margin-bottom: 0.5rem;
        }
        .featured-image {
            width: 100%;
            height: auto;
            border-radius: 12px;
            margin: 2rem 0;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        .featured-image:hover {
            transform: scale(1.01);
        }
        aside {
            background: white;
            border-radius: 12px;
            padding: 2rem;
            box-shadow: var(--shadow);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .search-box, .rating-box, .comment-box {
            margin-bottom: 2.5rem;
        }
        .search-box h3, .rating-box h3, .comment-box h3 {
            color: var(--dark-color);
            margin-bottom: 1.2rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-form {
            display: flex;
            margin-bottom: 1rem;
        }
        .search-form input {
            flex: 1;
            padding: 0.8rem;
            border: 2px solid #ddd;
            border-radius: 6px 0 0 6px;
            font-size: 1rem;
        }
        .search-form button {
            background-color: var(--accent-color);
            color: white;
            border: none;
            padding: 0 1.2rem;
            border-radius: 0 6px 6px 0;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-form button:hover {
            background-color: #26734d;
        }
        .rating-stars {
            display: flex;
            gap: 0.3rem;
            margin-bottom: 1.5rem;
        }
        .rating-stars i {
            color: #ddd;
            font-size: 1.5rem;
            cursor: pointer;
            transition: var(--transition);
        }
        .rating-stars i.active,
        .rating-stars i:hover {
            color: var(--primary-color);
        }
        .rating-form button {
            width: 100%;
            padding: 0.8rem;
            background-color: var(--secondary-color);
            color: white;
            border: none;
            border-radius: 6px;
            font-size: 1rem;
            cursor: pointer;
            transition: var(--transition);
        }
        .rating-form button:hover {
            background-color: #6b3a1a;
        }
        .comment-form textarea {
            width: 100%;
            padding: 0.8rem;
            border: 2px solid #ddd;
            border-radius: 6px;
            font-size: 1rem;
            resize: vertical;
            min-height: 120px;
            margin-bottom: 1rem;
        }
        .comment-form button {
            width: 100%;
            padding: 0.8rem;
            background-color: var(--dark-color);
            color: white;
            border: none;
            border-radius: 6px;
            font-size: 1rem;
            cursor: pointer;
            transition: var(--transition);
        }
        .comment-form button:hover {
            background-color: #0f0f1f;
        }
        .web-links {
            background-color: var(--light-color);
            padding: 3rem 2rem;
            margin-top: 4rem;
        }
        .web-links-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
        }
        .web-link {
            background: white;
            padding: 1rem;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        }
        .web-link a {
            color: var(--accent-color);
            text-decoration: none;
            font-weight: 500;
            display: block;
            transition: var(--transition);
        }
        .web-link a:hover {
            color: var(--primary-color);
            padding-left: 0.5rem;
        }
        footer {
            background-color: var(--dark-color);
            color: white;
            padding: 3rem 2rem 1.5rem;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 2rem;
        }
        .copyright {
            width: 100%;
            text-align: center;
            margin-top: 2rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.9rem;
            opacity: 0.8;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
            .stats-box {
                grid-template-columns: repeat(2, 1fr);
            }
            .web-links-container {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            nav {
                width: 100%;
                order: 3;
                margin-top: 1rem;
                display: none;
            }
            nav.active {
                display: block;
            }
            nav ul {
                flex-direction: column;
                gap: 0;
            }
            nav li {
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            nav a {
                display: block;
                padding: 0.8rem 0;
            }
            .hamburger {
                display: block;
            }
            .stats-box {
                grid-template-columns: 1fr;
            }
            article {
                padding: 2rem;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
        }
        @media (max-width: 480px) {
            .header-container,
            main,
            .breadcrumb {
                padding-left: 1rem;
                padding-right: 1rem;
            }
            article {
                padding: 1.5rem;
            }
            .footer-container {
                flex-direction: column;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        article, aside {
            animation: fadeIn 0.6s ease-out;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 0.3rem;
        }
        strong {
            color: var(--secondary-color);
        }
        .author-note {
            background-color: rgba(139, 69, 19, 0.05);
            padding: 1.5rem;
            border-radius: 10px;
            margin: 2.5rem 0;
            font-style: italic;
        }
