        * {
            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: #333;
            background-color: #f5f1e8;
            background-image: linear-gradient(to bottom, #f5f1e8 0%, #e8e1d1 100%);
            max-width: 100vw;
            overflow-x: hidden;
        }
        a {
            color: #a0522d;
            text-decoration: none;
            transition: color 0.3s ease, text-decoration 0.3s ease;
        }
        a:hover {
            color: #8b4513;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .text-center { text-align: center; }
        .bold { font-weight: 700; }
        .italic { font-style: italic; }
        .section-spacing {
            padding: 3rem 0;
        }
        .hidden { display: none !important; }
        .visible { display: block; }
        header {
            background-color: #1a1a1a;
            color: #d4af37;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0,0,0,0.3);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Times New Roman', serif;
            font-size: 2.5rem;
            font-weight: bold;
            color: #d4af37;
            text-decoration: none;
            letter-spacing: 2px;
            text-transform: uppercase;
            display: flex;
            align-items: center;
        }
        .my-logo i {
            margin-right: 10px;
            font-size: 2rem;
        }
        .my-logo:hover {
            color: #f5d142;
            text-decoration: none;
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .nav-links a {
            color: #f0e6d2;
            font-weight: 500;
            padding: 0.5rem 1rem;
            border-radius: 4px;
        }
        .nav-links a:hover {
            background-color: #333;
            text-decoration: none;
            color: #d4af37;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #f0e6d2;
            cursor: pointer;
            padding: 0.5rem;
        }
        .breadcrumb {
            padding: 1rem 20px;
            background-color: #2c2c2c;
            color: #aaa;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #d4af37;
        }
        .breadcrumb a:hover {
            color: #f5d142;
        }
        .breadcrumb span {
            margin: 0 8px;
        }
        .search-container {
            background: linear-gradient(135deg, #3a2c1a 0%, #5d4a2e 100%);
            padding: 2rem;
            border-radius: 10px;
            margin: 2rem auto;
            max-width: 800px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.2);
        }
        .search-form {
            display: flex;
        }
        .search-input {
            flex: 1;
            padding: 1rem;
            border: 2px solid #d4af37;
            border-radius: 5px 0 0 5px;
            font-size: 1.1rem;
            background-color: #fffaf0;
        }
        .search-btn {
            background-color: #d4af37;
            color: #1a1a1a;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            font-size: 1.1rem;
            font-weight: bold;
            transition: background-color 0.3s;
        }
        .search-btn:hover {
            background-color: #f5d142;
        }
        main {
            padding: 2rem 0;
            background-color: #fff;
            box-shadow: 0 0 30px rgba(0,0,0,0.1);
            border-radius: 10px;
            margin: 2rem auto;
            max-width: 1200px;
            overflow: hidden;
        }
        .article-header {
            padding: 2rem 20px;
            border-bottom: 3px solid #d4af37;
            margin-bottom: 2rem;
        }
        h1 {
            font-size: 3.2rem;
            color: #2c1810;
            margin-bottom: 1rem;
            line-height: 1.2;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
        }
        .article-meta {
            color: #666;
            font-size: 0.95rem;
            margin-bottom: 1.5rem;
        }
        h2 {
            font-size: 2.5rem;
            color: #3a2c1a;
            margin: 2.5rem 0 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #e8d6b5;
        }
        h3 {
            font-size: 1.8rem;
            color: #5d4a2e;
            margin: 2rem 0 1rem;
        }
        h4 {
            font-size: 1.4rem;
            color: #7a613c;
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background-color: #fff8e1;
            border-left: 5px solid #d4af37;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 5px 5px 0;
        }
        .img-container {
            margin: 2.5rem auto;
            text-align: center;
            max-width: 800px;
        }
        .img-container img {
            border-radius: 10px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
            border: 5px solid #e8d6b5;
        }
        .caption {
            font-style: italic;
            color: #666;
            margin-top: 0.5rem;
            font-size: 0.95rem;
        }
        .quote {
            font-size: 1.3rem;
            color: #5d4a2e;
            text-align: center;
            padding: 2rem;
            margin: 2.5rem 0;
            background: #f8f4e9;
            border-radius: 10px;
            border-left: 8px solid #d4af37;
            border-right: 8px solid #d4af37;
        }
        .link-list {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1rem;
            margin: 2rem 0;
        }
        .link-list li {
            background: #f8f4e9;
            padding: 1rem;
            border-radius: 5px;
            transition: transform 0.3s;
        }
        .link-list li:hover {
            transform: translateY(-5px);
            background: #f0e6d2;
        }
        .interaction-section {
            padding: 3rem 20px;
            background-color: #f9f5eb;
            border-radius: 10px;
            margin: 3rem 0;
        }
        .rating-form, .comment-form {
            max-width: 800px;
            margin: 2rem auto;
            background: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }
        input, textarea, select {
            width: 100%;
            padding: 0.8rem;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-family: inherit;
            font-size: 1rem;
        }
        textarea {
            min-height: 150px;
            resize: vertical;
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
            margin-bottom: 1rem;
        }
        .stars i:hover,
        .stars i.active {
            color: #ffc107;
        }
        .submit-btn {
            background-color: #a0522d;
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 5px;
            cursor: pointer;
            font-size: 1.1rem;
            font-weight: bold;
            transition: background-color 0.3s;
        }
        .submit-btn:hover {
            background-color: #8b4513;
        }
        footer {
            background-color: #1a1a1a;
            color: #f0e6d2;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section h4 {
            color: #d4af37;
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        .footer-links a {
            color: #f0e6d2;
        }
        .footer-links a:hover {
            color: #d4af37;
        }
        friend-link {
            display: block;
            background: #2c2c2c;
            padding: 1.5rem;
            border-radius: 5px;
            margin: 1.5rem 0;
            text-align: center;
        }
        friend-link a {
            color: #d4af37;
            font-weight: bold;
            font-size: 1.1rem;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #444;
            font-size: 0.9rem;
            color: #aaa;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.8rem; }
            h2 { font-size: 2.2rem; }
            .nav-links {
                gap: 1rem;
            }
        }
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                align-items: flex-start;
            }
            .my-logo {
                margin-bottom: 1rem;
            }
            nav {
                width: 100%;
                justify-content: space-between;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                background-color: #2c2c2c;
                padding: 1rem;
                border-radius: 5px;
                margin-top: 1rem;
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .search-form {
                flex-direction: column;
            }
            .search-input, .search-btn {
                width: 100%;
                border-radius: 5px;
                margin-bottom: 0.5rem;
            }
            .link-list {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 480px) {
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            .container {
                padding: 0 15px;
            }
            .search-container {
                padding: 1.5rem;
            }
        }
