        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', 'Verdana', 'Garamond', sans-serif;
            line-height: 1.85; 
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
            scroll-padding-top: 80px; 
        }
        body {
            background-color: #f0e8d8; 
            color: #242424;
            padding-bottom: 80px;
            -webkit-font-smoothing: antialiased; 
        }
        header {
            background-color: #8B4513; 
            color: #FFD700; 
            padding: 1rem 2rem;
            position: sticky;
            top: 0;
            z-index: 9999;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
            border-bottom: 2px solid #FFD700;
        }
        .logo {
            font-size: 1.9rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: #FFD700;
        }
        .logo span {
            color: #FFFFFF;
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1280px;
            margin: 0 auto;
            flex-wrap: wrap;
        }
        .main-nav {
            display: flex;
            gap: 2.2rem;
        }
        .main-nav a {
            color: #FFFFFF;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.05rem;
            transition: all 0.3s ease;
            position: relative;
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -3px;
            left: 0;
            background-color: #FFD700;
            transition: width 0.3s ease;
        }
        .main-nav a:hover {
            color: #FFD700;
        }
        .main-nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 2rem;
            cursor: pointer;
            color: #FFFFFF;
        }
        .btn-container {
            display: flex;
            gap: 1.2rem;
        }
        .btn {
            padding: 0.7rem 1.4rem;
            border: none;
            border-radius: 6px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.35s ease;
            text-decoration: none;
            font-size: 1rem;
            box-shadow: 0 3px 8px rgba(0,0,0,0.15);
        }
        .download-btn {
            background-color: #FFD700;
            color: #8B4513;
        }
        .login-btn {
            background-color: #FFFFFF;
            color: #8B4513;
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.2);
        }
        .btn:active {
            transform: translateY(1px);
        }
        .container {
            max-width: 1280px;
            margin: 3rem auto;
            padding: 0 2rem;
        }
        h1 {
            font-size: 2.8rem;
            color: #8B4513;
            margin-bottom: 2rem;
            border-bottom: 4px solid #FFD700;
            padding-bottom: 0.8rem;
            font-weight: 800;
            letter-spacing: 0.5px;
        }
        h2 {
            font-size: 2.2rem;
            color: #8B4513;
            margin: 2.5rem 0 1.2rem;
            font-weight: 700;
            position: relative;
            padding-left: 1rem;
        }
        h2::before {
            content: '🔱'; 
            position: absolute;
            left: -0.5rem;
            top: 0;
        }
        h3 {
            font-size: 1.7rem;
            color: #5D2906;
            margin: 1.8rem 0 1rem;
            font-weight: 700;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.08rem;
            color: #242424;
            word-spacing: 0.5px;
        }
        .highlight {
            font-weight: 700;
            color: #8B4513;
            text-decoration: underline;
            text-underline-offset: 3px;
        }
        .emoji-box {
            padding: 1.5rem;
            background-color: #FFFFFF;
            border-left: 5px solid #FFD700;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
        }
        .emoji-box p {
            font-size: 1.1rem;
            color: #1A1A1A;
        }
        .categories-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            margin: 2.5rem 0;
            padding: 2rem;
            background-color: #FFFFFF;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            border-top: 3px solid #8B4513;
        }
        .category-list, .tag-list {
            flex: 1;
            min-width: 280px;
        }
        .category-list h3, .tag-list h3 {
            margin-bottom: 1.5rem;
            color: #8B4513;
            border-bottom: 2px solid #f0e8d8;
            padding-bottom: 0.5rem;
        }
        .category-list a, .tag-list a {
            display: inline-block;
            margin: 0.7rem 1rem 0.7rem 0;
            padding: 0.6rem 1.1rem;
            background-color: #f8f4ea;
            color: #8B4513;
            text-decoration: none;
            border-radius: 6px;
            transition: all 0.3s ease;
            font-weight: 600;
            border: 1px solid #e0d8c8;
        }
        .category-list a:hover, .tag-list a:hover {
            background-color: #FFD700;
            color: #8B4513;
            border-color: #FFD700;
            transform: translateY(-2px);
        }
        .recommendation {
            background-color: #f9f5ed;
            padding: 2.2rem;
            border-radius: 10px;
            margin: 2.8rem 0;
            border: 2px solid #8B4513;
        }
        .recommendation h3 {
            color: #8B4513;
            margin-bottom: 1.5rem;
            font-size: 1.8rem;
        }
        footer {
            background-color: #242424;
            color: #FFFFFF;
            padding: 2.5rem;
            margin-top: 4rem;
            border-top: 4px solid #FFD700;
        }
        .footer-container {
            max-width: 1280px;
            margin: 0 auto;
            text-align: center;
        }
        .copyright {
            margin-top: 1.5rem;
            font-size: 1rem;
            color: #D0D0D0;
            line-height: 1.9;
        }
        @media (max-width: 768px) {
            .main-nav {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background-color: #8B4513;
                padding: 1.5rem 2rem;
                gap: 1.5rem;
                border-top: 2px solid #FFD700;
                box-shadow: 0 8px 15px rgba(0,0,0,0.2);
            }
            .main-nav.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .btn-container {
                margin-top: 1.5rem;
                width: 100%;
                justify-content: center;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.9rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            .container {
                padding: 0 1.5rem;
                margin: 2rem auto;
            }
            p {
                font-size: 1rem;
            }
            .emoji-box {
                padding: 1.2rem;
            }
            .categories-tags {
                padding: 1.5rem;
                gap: 1.5rem;
            }
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            margin: 1.5rem 0;
            object-fit: cover;
            box-shadow: 0 5px 12px rgba(0,0,0,0.15);
            border: 2px solid #FFFFFF;
        }
        .lazy-load {
            opacity: 0;
            transition: opacity 0.6s ease-in-out;
        }
        .lazy-load.loaded {
            opacity: 1;
        }
        ul {
            margin: 1.5rem 3rem;
            list-style-type: '📍 ';
            padding-left: 1rem;
        }
        ul li {
            margin-bottom: 1rem;
            font-size: 1.08rem;
            text-align: justify;
        }
        ul li strong {
            color: #8B4513;
        }
        @media (prefers-reduced-motion: reduce) {
            * {
                transition: none !important;
            }
        }
        a:focus, button:focus {
            outline: 3px solid #FFD700;
            outline-offset: 2px;
        }
