        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
            background: #f8f9fc;
            color: #1e293b;
            line-height: 1.75;
            padding: 0 1rem;
        }
        a {
            color: #b45309;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover,
        a:focus {
            color: #92400e;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            line-height: 1.3;
            font-weight: 700;
            color: #1e293b;
        }
        h1 {
            font-size: 2.4rem;
            margin: 1.5rem 0 1rem;
        }
        h2 {
            font-size: 1.8rem;
            margin: 2rem 0 0.8rem;
            border-bottom: 3px solid #f59e0b;
            padding-bottom: 0.3rem;
        }
        h3 {
            font-size: 1.4rem;
            margin: 1.6rem 0 0.6rem;
            color: #334155;
        }
        h4 {
            font-size: 1.2rem;
            margin: 1.2rem 0 0.4rem;
            color: #475569;
        }
        p {
            margin-bottom: 1.2rem;
            font-size: 1.05rem;
        }
        ul,
        ol {
            margin: 0.8rem 0 1.2rem 1.8rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        strong {
            color: #b45309;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            background: #ffffff;
            padding: 1.5rem 2rem;
            border-radius: 24px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
        }
        .badge {
            display: inline-block;
            background: #f59e0b;
            color: #fff;
            font-size: 0.75rem;
            font-weight: 600;
            padding: 0.2rem 0.8rem;
            border-radius: 30px;
            letter-spacing: 0.3px;
        }
        .section-divider {
            margin: 2.5rem 0;
            border: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, #f59e0b, transparent);
        }
        .last-updated {
            font-size: 0.9rem;
            color: #64748b;
            background: #f1f5f9;
            padding: 0.3rem 1rem;
            border-radius: 30px;
            display: inline-block;
        }
        .site-header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 1rem 0 0.8rem;
            border-bottom: 2px solid #e2e8f0;
            position: relative;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            background: linear-gradient(135deg, #b45309, #f59e0b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.5px;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .my-logo i {
            -webkit-text-fill-color: #f59e0b;
            font-size: 1.8rem;
        }
        .my-logo:hover {
            opacity: 0.85;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: #1e293b;
            cursor: pointer;
            padding: 0.2rem 0.4rem;
            transition: color 0.2s;
        }
        .hamburger:hover {
            color: #b45309;
        }
        .main-nav {
            display: flex;
            flex-wrap: wrap;
            gap: 0.2rem 1.2rem;
            align-items: center;
        }
        .main-nav a {
            font-weight: 600;
            font-size: 0.95rem;
            padding: 0.3rem 0;
            color: #334155;
            border-bottom: 2px solid transparent;
            transition: border-color 0.2s, color 0.2s;
        }
        .main-nav a:hover,
        .main-nav a.active {
            border-bottom-color: #f59e0b;
            color: #b45309;
            text-decoration: none;
        }
        .breadcrumb {
            padding: 0.6rem 0 0.2rem;
            font-size: 0.85rem;
            color: #64748b;
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.6rem;
        }
        .breadcrumb a {
            color: #64748b;
        }
        .breadcrumb a:hover {
            color: #b45309;
        }
        .breadcrumb span {
            color: #94a3b8;
        }
        .search-form {
            display: flex;
            gap: 0.5rem;
            margin: 1.2rem 0 1.8rem;
            max-width: 600px;
            background: #f1f5f9;
            border-radius: 50px;
            padding: 0.2rem 0.2rem 0.2rem 1.2rem;
            border: 1px solid #e2e8f0;
            transition: border-color 0.2s;
        }
        .search-form:focus-within {
            border-color: #f59e0b;
            box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.15);
        }
        .search-form input {
            flex: 1;
            border: none;
            background: transparent;
            padding: 0.7rem 0;
            font-size: 1rem;
            outline: none;
            color: #1e293b;
            min-width: 0;
        }
        .search-form button {
            background: #f59e0b;
            border: none;
            color: #fff;
            font-weight: 600;
            padding: 0.6rem 1.6rem;
            border-radius: 50px;
            cursor: pointer;
            font-size: 0.95rem;
            transition: background 0.2s, transform 0.1s;
            display: flex;
            align-items: center;
            gap: 0.4rem;
            white-space: nowrap;
        }
        .search-form button:hover {
            background: #d97706;
            transform: scale(1.02);
        }
        .search-form button:active {
            transform: scale(0.97);
        }
        .hero-img {
            margin: 1.5rem 0 2rem;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            background: #e2e8f0;
            position: relative;
        }
        .hero-img img {
            width: 100%;
            max-height: 420px;
            object-fit: cover;
        }
        .hero-img .img-caption {
            padding: 0.6rem 1.2rem;
            background: rgba(30, 41, 59, 0.75);
            color: #fff;
            font-size: 0.9rem;
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            backdrop-filter: blur(4px);
        }
        .link-list {
            background: #f8fafc;
            border-radius: 16px;
            padding: 1.2rem 1.6rem;
            margin: 1.6rem 0;
            border-left: 4px solid #f59e0b;
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem 1.4rem;
        }
        .link-list a {
            font-weight: 500;
            font-size: 0.95rem;
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
        }
        .link-list a::before {
            content: "🔗";
            font-size: 0.8rem;
        }
        .interaction-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin: 2.5rem 0;
        }
        @media (max-width: 700px) {
            .interaction-grid {
                grid-template-columns: 1fr;
                gap: 1.6rem;
            }
        }
        .comment-box,
        .rating-box {
            background: #f8fafc;
            border-radius: 16px;
            padding: 1.6rem 1.8rem;
            border: 1px solid #e2e8f0;
        }
        .comment-box h3,
        .rating-box h3 {
            margin-top: 0;
            font-size: 1.3rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .comment-box textarea {
            width: 100%;
            padding: 0.8rem 1rem;
            border-radius: 12px;
            border: 1px solid #cbd5e1;
            font-family: inherit;
            font-size: 0.95rem;
            resize: vertical;
            min-height: 90px;
            background: #fff;
            transition: border-color 0.2s;
        }
        .comment-box textarea:focus {
            border-color: #f59e0b;
            outline: none;
            box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
        }
        .comment-box input[type="text"] {
            width: 100%;
            padding: 0.7rem 1rem;
            border-radius: 12px;
            border: 1px solid #cbd5e1;
            font-size: 0.95rem;
            margin-bottom: 0.6rem;
            background: #fff;
            transition: border-color 0.2s;
        }
        .comment-box input[type="text"]:focus {
            border-color: #f59e0b;
            outline: none;
            box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
        }
        .comment-box .btn,
        .rating-box .btn {
            background: #f59e0b;
            color: #fff;
            border: none;
            padding: 0.7rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            margin-top: 0.4rem;
        }
        .comment-box .btn:hover,
        .rating-box .btn:hover {
            background: #d97706;
            transform: scale(1.02);
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 0.2rem;
            font-size: 2rem;
            margin: 0.6rem 0 1rem;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            cursor: pointer;
            color: #cbd5e1;
            transition: color 0.15s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f59e0b;
        }
        friend-link {
            display: block;
            margin: 2rem 0 1rem;
            padding: 1.2rem 1.6rem;
            background: #f1f5f9;
            border-radius: 16px;
            border: 1px solid #e2e8f0;
        }
        friend-link::before {
            content: "🤝 Friend Links";
            display: block;
            font-weight: 700;
            font-size: 1.1rem;
            color: #334155;
            margin-bottom: 0.6rem;
        }
        friend-link a {
            display: inline-block;
            margin-right: 1.6rem;
            font-weight: 500;
        }
        friend-link a::before {
            content: "• ";
            color: #f59e0b;
            font-weight: 700;
        }
        .site-footer {
            margin-top: 2.5rem;
            padding: 1.6rem 0 1rem;
            border-top: 2px solid #e2e8f0;
            text-align: center;
            font-size: 0.9rem;
            color: #64748b;
        }
        .site-footer .copyright {
            font-weight: 500;
            color: #334155;
        }
        @media (max-width: 800px) {
            .container {
                padding: 1rem 1.2rem;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            .my-logo {
                font-size: 1.5rem;
            }
        }
        @media (max-width: 640px) {
            .hamburger {
                display: block;
            }
            .main-nav {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #fff;
                padding: 1rem 0 0.6rem;
                border-top: 1px solid #e2e8f0;
                margin-top: 0.6rem;
                gap: 0.2rem;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 0.5rem 0;
                font-size: 1.05rem;
                border-bottom: 1px solid #f1f5f9;
            }
            .search-form {
                flex-wrap: wrap;
                border-radius: 24px;
                padding: 0.4rem 0.4rem 0.4rem 1rem;
            }
            .search-form button {
                width: 100%;
                justify-content: center;
                padding: 0.6rem;
            }
            .link-list {
                flex-direction: column;
                gap: 0.3rem;
            }
            .hero-img .img-caption {
                font-size: 0.75rem;
                padding: 0.3rem 0.8rem;
            }
            .interaction-grid {
                grid-template-columns: 1fr;
            }
            friend-link a {
                display: block;
                margin-bottom: 0.3rem;
            }
        }
        @media (min-width: 641px) {
            .main-nav {
                display: flex !important;
            }
            .hamburger {
                display: none !important;
            }
        }
        .text-muted {
            color: #64748b;
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .flex {
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .gap-1 {
            gap: 1rem;
        }
        .emoji-big {
            font-size: 1.6rem;
        }
        .highlight-box {
            background: #fffbeb;
            border-radius: 12px;
            padding: 1.2rem 1.6rem;
            border-left: 4px solid #f59e0b;
            margin: 1.2rem 0;
        }
        .tip {
            background: #ecfdf5;
            border-left-color: #10b981;
        }
        .shimmer {
            background: linear-gradient(90deg, #f1f5f9 25%, #e2e8f0 50%, #f1f5f9 75%);
            background-size: 200% 100%;
            animation: shimmer 1.5s infinite;
        }
        @keyframes shimmer {
            0% {
                background-position: 200% 0;
            }
            100% {
                background-position: -200% 0;
            }
        }
