        *,
        *::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: #faf9f6;
            color: #1e1e2a;
            line-height: 1.7;
            padding: 0 1rem;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: #b45309;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #7a2e0e;
            text-decoration: underline;
        }
        ul,
        ol {
            padding-left: 1.5rem;
            margin-bottom: 1.2rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.25;
            color: #1a1a2e;
            margin-top: 2rem;
            margin-bottom: 0.75rem;
        }
        h1 {
            font-size: 2.4rem;
            border-bottom: 4px solid #d97706;
            padding-bottom: 0.5rem;
        }
        h2 {
            font-size: 1.8rem;
            border-left: 6px solid #d97706;
            padding-left: 1rem;
            margin-top: 2.8rem;
        }
        h3 {
            font-size: 1.35rem;
            color: #2d2d44;
        }
        h4 {
            font-size: 1.1rem;
            color: #3b3b54;
        }
        p {
            margin-bottom: 1.2rem;
            color: #2d2d3f;
        }
        strong {
            color: #0f0f1a;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }
        .site-header {
            background: linear-gradient(135deg, #1e1e2a 0%, #2d2d44 100%);
            padding: 1rem 0;
            border-radius: 0 0 24px 24px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 100;
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.8rem;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 900;
            background: linear-gradient(135deg, #fbbf24, #d97706);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.5px;
            text-shadow: 0 2px 12px rgba(251, 191, 36, 0.2);
            display: flex;
            align-items: center;
            gap: 0.5rem;
            transition: transform 0.2s;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
        }
        .my-logo i {
            -webkit-text-fill-color: #d97706;
            font-size: 1.8rem;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #fbbf24;
            color: #fbbf24;
            font-size: 1.6rem;
            padding: 0.4rem 0.8rem;
            border-radius: 8px;
            cursor: pointer;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(251, 191, 36, 0.15);
        }
        .main-nav {
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem;
            align-items: center;
        }
        .main-nav a {
            color: #fef3c7;
            padding: 0.5rem 1rem;
            border-radius: 40px;
            font-weight: 500;
            font-size: 0.9rem;
            transition: background 0.2s, color 0.2s;
            white-space: nowrap;
        }
        .main-nav a:hover {
            background: #fbbf24;
            color: #1a1a2e;
            text-decoration: none;
        }
        .main-nav a.active {
            background: #d97706;
            color: #fff;
        }
        .breadcrumb {
            background: #fff8ed;
            padding: 0.6rem 1.2rem;
            border-radius: 40px;
            font-size: 0.85rem;
            margin-bottom: 1.8rem;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.3rem 0.8rem;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
            border: 1px solid #fde68a;
        }
        .breadcrumb a {
            color: #92400e;
        }
        .breadcrumb span {
            color: #78716c;
        }
        .breadcrumb .separator {
            color: #d4a373;
        }
        .search-section {
            background: #fff8ed;
            border-radius: 20px;
            padding: 1.8rem 2rem;
            margin-bottom: 2.5rem;
            border: 1px solid #fde68a;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
        }
        .search-section form {
            display: flex;
            gap: 0.8rem;
            flex-wrap: wrap;
            max-width: 700px;
            margin: 0 auto;
        }
        .search-section input[type="text"] {
            flex: 1;
            min-width: 180px;
            padding: 0.9rem 1.4rem;
            border: 2px solid #fde68a;
            border-radius: 60px;
            font-size: 1rem;
            background: #fff;
            transition: border 0.2s, box-shadow 0.2s;
            outline: none;
        }
        .search-section input[type="text"]:focus {
            border-color: #d97706;
            box-shadow: 0 0 0 4px rgba(217, 119, 6, 0.15);
        }
        .search-section button {
            background: #d97706;
            color: #fff;
            border: none;
            padding: 0.9rem 2rem;
            border-radius: 60px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .search-section button:hover {
            background: #b45309;
            transform: scale(1.02);
        }
        .rating-box {
            background: #fff8ed;
            border-radius: 20px;
            padding: 1.8rem 2rem;
            margin-bottom: 2.5rem;
            border: 1px solid #fde68a;
            text-align: center;
        }
        .rating-stars {
            display: flex;
            justify-content: center;
            gap: 0.6rem;
            font-size: 2.4rem;
            margin: 0.8rem 0;
            flex-wrap: wrap;
        }
        .rating-stars i {
            color: #d4a373;
            cursor: pointer;
            transition: color 0.15s, transform 0.15s;
        }
        .rating-stars i.active,
        .rating-stars i:hover {
            color: #d97706;
            transform: scale(1.15);
        }
        .rating-box .score-result {
            font-weight: 700;
            font-size: 1.2rem;
            color: #92400e;
        }
        .rating-box form {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.6rem;
        }
        .rating-box input[type="hidden"] {
            display: none;
        }
        .rating-box button {
            background: #d97706;
            color: #fff;
            border: none;
            padding: 0.6rem 2.2rem;
            border-radius: 60px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
        }
        .rating-box button:hover {
            background: #b45309;
        }
        .comments-section {
            background: #fff8ed;
            border-radius: 20px;
            padding: 1.8rem 2rem;
            margin-bottom: 2.5rem;
            border: 1px solid #fde68a;
        }
        .comments-section form {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
            max-width: 600px;
        }
        .comments-section input,
        .comments-section textarea {
            padding: 0.8rem 1.2rem;
            border: 2px solid #fde68a;
            border-radius: 12px;
            font-size: 0.95rem;
            font-family: inherit;
            outline: none;
            transition: border 0.2s;
            background: #fff;
        }
        .comments-section input:focus,
        .comments-section textarea:focus {
            border-color: #d97706;
        }
        .comments-section textarea {
            min-height: 120px;
            resize: vertical;
        }
        .comments-section button {
            background: #d97706;
            color: #fff;
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 60px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
            align-self: flex-start;
        }
        .comments-section button:hover {
            background: #b45309;
        }
        .content-area {
            background: #fff;
            border-radius: 24px;
            padding: 2.2rem 2.5rem;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
            margin-bottom: 2.5rem;
        }
        .content-area img {
            border-radius: 16px;
            margin: 1.8rem auto;
            box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
            max-width: 100%;
        }
        .content-area .img-caption {
            text-align: center;
            font-size: 0.9rem;
            color: #78716c;
            margin-top: -0.8rem;
            margin-bottom: 1.8rem;
        }
        .last-updated {
            font-size: 0.85rem;
            color: #78716c;
            background: #faf9f6;
            display: inline-block;
            padding: 0.2rem 1rem;
            border-radius: 40px;
            margin-bottom: 1.2rem;
            border: 1px solid #e7e5e4;
        }
        .site-footer {
            background: #1e1e2a;
            color: #e7e5e4;
            border-radius: 24px 24px 0 0;
            padding: 2.5rem 2rem 1.8rem;
            margin-top: 2rem;
        }
        .site-footer a {
            color: #fbbf24;
        }
        .site-footer a:hover {
            color: #fde68a;
        }
        friend-link {
            display: block;
            padding: 1.2rem 1.5rem;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 16px;
            margin-bottom: 1.5rem;
            border: 1px solid rgba(251, 191, 36, 0.2);
        }
        friend-link a {
            display: inline-block;
            margin: 0.3rem 1rem 0.3rem 0;
        }
        .footer-copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding-top: 1.5rem;
            text-align: center;
            font-size: 0.9rem;
            color: #a8a29e;
        }
        @media (max-width: 768px) {
            body {
                padding: 0 0.5rem;
            }
            .header-inner {
                flex-direction: row;
            }
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                background: #2d2d44;
                padding: 1rem;
                border-radius: 16px;
                margin-top: 0.5rem;
                gap: 0.2rem;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                width: 100%;
                text-align: center;
                padding: 0.7rem;
            }
            .content-area {
                padding: 1.2rem 1rem;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.15rem;
            }
            .search-section {
                padding: 1.2rem 1rem;
            }
            .search-section form {
                flex-direction: column;
            }
            .search-section input[type="text"] {
                min-width: unset;
            }
            .rating-stars {
                font-size: 1.8rem;
            }
            .site-footer {
                padding: 1.8rem 1rem 1.2rem;
            }
            .breadcrumb {
                font-size: 0.75rem;
                padding: 0.4rem 0.8rem;
            }
        }
        @media (min-width: 769px) {
            .main-nav {
                display: flex !important;
            }
            .nav-toggle {
                display: none !important;
            }
        }
        @media (max-width: 480px) {
            .my-logo {
                font-size: 1.4rem;
            }
            .my-logo i {
                font-size: 1.2rem;
            }
            h1 {
                font-size: 1.5rem;
            }
            h2 {
                font-size: 1.2rem;
                padding-left: 0.6rem;
            }
            .content-area {
                padding: 0.8rem 0.6rem;
                border-radius: 16px;
            }
            .rating-stars {
                font-size: 1.4rem;
                gap: 0.3rem;
            }
        }
        .highlight {
            background: linear-gradient(to right, #fef3c7, #fde68a);
            padding: 0.1rem 0.4rem;
            border-radius: 6px;
            font-weight: 600;
        }
        .emoji-big {
            font-size: 1.3em;
        }
        .flex-cols {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
        }
        .flex-cols>* {
            flex: 1 1 260px;
        }
        .card {
            background: #faf9f6;
            border-radius: 16px;
            padding: 1.2rem 1.5rem;
            border: 1px solid #e7e5e4;
            transition: box-shadow 0.2s, transform 0.2s;
        }
        .card:hover {
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
            transform: translateY(-2px);
        }
        .stat-number {
            font-size: 2.2rem;
            font-weight: 900;
            color: #d97706;
            line-height: 1;
        }
        .hidden-schema {
            display: none;
        }
