        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
            line-height: 1.6;
            color: #333;
            background: linear-gradient(135deg, #f9f3e9 0%, #f5e8d0 100%);
            min-height: 100vh;
        }
        img { max-width: 100%; height: auto; display: block; }
        h1, h2, h3, h4 { font-family: 'Georgia', serif; color: #8B4513; margin-bottom: 1rem; line-height: 1.2; }
        h1 { font-size: 2.8rem; border-bottom: 3px double #D2691E; padding-bottom: 0.5rem; }
        h2 { font-size: 2.2rem; margin-top: 2.5rem; padding-left: 0.5rem; border-left: 5px solid #D2691E; }
        h3 { font-size: 1.8rem; color: #A0522D; margin-top: 2rem; }
        h4 { font-size: 1.4rem; color: #CD853F; margin-top: 1.5rem; }
        p { margin-bottom: 1.5rem; text-align: justify; }
        .lead { font-size: 1.25rem; font-weight: 300; color: #555; }
        .highlight { background-color: #fff9e6; padding: 0.2rem 0.5rem; border-radius: 3px; font-weight: 600; }
        .emoji { font-size: 1.2em; margin-right: 0.3rem; }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        main.container { background-color: rgba(255, 255, 255, 0.95); padding: 30px; border-radius: 10px; box-shadow: 0 5px 25px rgba(0,0,0,0.05); margin-top: 30px; margin-bottom: 40px; }
        .site-header { background-color: #fff; box-shadow: 0 2px 15px rgba(139, 69, 19, 0.1); padding: 1rem 0; position: sticky; top: 0; z-index: 1000; }
        .header-container { display: flex; justify-content: space-between; align-items: center; }
        .my-logo a { font-family: 'Comic Sans MS', cursive, sans-serif; font-size: 2.2rem; font-weight: bold; color: #D2691E; text-decoration: none; display: flex; align-items: center; }
        .my-logo a i { margin-right: 10px; color: #FFD700; }
        .desktop-nav ul { display: flex; list-style: none; gap: 2rem; }
        .desktop-nav a { text-decoration: none; color: #8B4513; font-weight: 600; padding: 0.5rem 0; position: relative; transition: color 0.3s; }
        .desktop-nav a:hover { color: #FF8C00; }
        .desktop-nav a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: #FF8C00; transition: width 0.3s; }
        .desktop-nav a:hover::after { width: 100%; }
        .hamburger { display: none; font-size: 1.8rem; background: none; border: none; color: #8B4513; cursor: pointer; }
        .mobile-nav { display: none; position: absolute; top: 100%; left: 0; width: 100%; background: #fff; box-shadow: 0 5px 15px rgba(0,0,0,0.1); padding: 1rem; }
        .mobile-nav.active { display: block; }
        .mobile-nav ul { list-style: none; }
        .mobile-nav li { margin: 1rem 0; }
        .mobile-nav a { text-decoration: none; color: #8B4513; font-weight: 600; display: block; padding: 0.5rem; border-radius: 5px; }
        .mobile-nav a:hover { background-color: #f9f3e9; }
        .breadcrumb { padding: 1rem 0; font-size: 0.9rem; color: #666; }
        .breadcrumb a { color: #8B4513; text-decoration: none; }
        .breadcrumb a:hover { text-decoration: underline; }
        .search-box { margin: 2rem 0; background: #f1e9dc; padding: 1.5rem; border-radius: 10px; text-align: center; }
        .search-box h3 { margin-top: 0; }
        .search-form { display: flex; max-width: 600px; margin: 1rem auto; }
        .search-form input { flex-grow: 1; padding: 0.8rem 1rem; border: 2px solid #D2691E; border-radius: 5px 0 0 5px; font-size: 1rem; }
        .search-form button { background: #D2691E; color: white; border: none; padding: 0.8rem 1.5rem; border-radius: 0 5px 5px 0; cursor: pointer; font-size: 1rem; transition: background 0.3s; }
        .search-form button:hover { background: #A0522D; }
        .content-section { margin-bottom: 3rem; }
        .featured-image { margin: 2rem 0; text-align: center; }
        .featured-image img { border-radius: 10px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); border: 8px solid #fff; max-height: 500px; object-fit: cover; width: 100%; }
        .caption { font-style: italic; color: #777; margin-top: 0.5rem; font-size: 0.9rem; }
        .internal-link { color: #B8860B; font-weight: 600; text-decoration: none; border-bottom: 1px dotted #B8860B; padding-bottom: 1px; }
        .internal-link:hover { color: #8B4513; border-bottom-style: solid; }
        .user-module { background: #f8f4ec; border-left: 5px solid #D2691E; padding: 1.5rem; margin: 2.5rem 0; border-radius: 0 8px 8px 0; }
        .user-module h3 { margin-top: 0; }
        .rating { display: flex; align-items: center; gap: 1rem; margin: 1rem 0; }
        .stars { color: #FFD700; font-size: 1.5rem; }
        .comment-form textarea, .score-form select { width: 100%; padding: 0.8rem; margin: 0.5rem 0 1rem 0; border: 1px solid #ccc; border-radius: 5px; font-family: inherit; }
        .submit-btn { background: #228B22; color: white; border: none; padding: 0.8rem 1.5rem; border-radius: 5px; cursor: pointer; font-weight: bold; transition: background 0.3s; }
        .submit-btn:hover { background: #1E7A1E; }
        .site-footer { background: #2F4F4F; color: #ddd; padding: 3rem 0 1.5rem; margin-top: 4rem; }
        .footer-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; }
        .footer-section h4 { color: #F4A460; border-bottom: 1px solid #556B2F; padding-bottom: 0.5rem; }
        .footer-links { list-style: none; margin-top: 1rem; }
        .footer-links li { margin-bottom: 0.7rem; }
        .footer-links a { color: #ccc; text-decoration: none; transition: color 0.3s; }
        .footer-links a:hover { color: #F4A460; }
        friend-link { display: block; padding: 0.5rem; background: #3a5f5f; margin: 0.3rem 0; border-radius: 3px; }
        friend-link a { color: #F4A460 !important; font-weight: bold; }
        .copyright { text-align: center; margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid #556B2F; color: #aaa; font-size: 0.9rem; }
        @media (max-width: 768px) {
            .header-container { flex-wrap: wrap; }
            .desktop-nav { display: none; }
            .hamburger { display: block; }
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            h3 { font-size: 1.5rem; }
            .my-logo a { font-size: 1.8rem; }
            .search-form { flex-direction: column; }
            .search-form input, .search-form button { border-radius: 5px; margin: 0.2rem 0; width: 100%; }
        }
