        *,
        *::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, sans-serif;
            background: #faf9f6;
            color: #1e1e2a;
            line-height: 1.7;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }
        a {
            color: #b45309;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover,
        a:focus {
            color: #7a2e0e;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 600;
            line-height: 1.3;
            color: #1a1a2e;
        }
        h1 {
            font-size: 2.4rem;
            margin-bottom: 0.75rem;
        }
        h2 {
            font-size: 1.8rem;
            margin-top: 2.5rem;
            margin-bottom: 0.6rem;
            border-bottom: 2px solid #e5e7eb;
            padding-bottom: 0.3rem;
        }
        h3 {
            font-size: 1.35rem;
            margin-top: 1.8rem;
            margin-bottom: 0.4rem;
        }
        h4 {
            font-size: 1.1rem;
            margin-top: 1.2rem;
            margin-bottom: 0.3rem;
            font-weight: 500;
        }
        p {
            margin-bottom: 1rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.2rem;
        }
        .site-header {
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
            color: #f1f5f9;
            padding: 0.8rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            color: #fbbf24;
            background: linear-gradient(to right, #fbbf24, #f59e0b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 8px rgba(251, 191, 36, 0.2);
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
        }
        .my-logo i {
            -webkit-text-fill-color: #fbbf24;
            color: #fbbf24;
            font-size: 1.6rem;
        }
        .my-logo:hover {
            opacity: 0.9;
            text-decoration: none;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #fbbf24;
            color: #fbbf24;
            font-size: 1.5rem;
            padding: 0.3rem 0.8rem;
            border-radius: 6px;
            cursor: pointer;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(251, 191, 36, 0.15);
        }
        .primary-nav {
            display: flex;
            gap: 0.2rem;
            flex-wrap: wrap;
            align-items: center;
        }
        .primary-nav a {
            color: #e2e8f0;
            padding: 0.4rem 1rem;
            border-radius: 30px;
            font-weight: 500;
            font-size: 0.92rem;
            transition: background 0.2s, color 0.2s;
        }
        .primary-nav a:hover,
        .primary-nav a:focus {
            background: rgba(251, 191, 36, 0.18);
            color: #fbbf24;
            text-decoration: none;
        }
        .primary-nav a.active {
            background: #fbbf24;
            color: #0f172a;
        }
        .breadcrumb {
            background: #e9e6df;
            padding: 0.5rem 0;
            font-size: 0.85rem;
            color: #4b5563;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.6rem;
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.5rem;
            color: #9ca3af;
            font-weight: 600;
        }
        .breadcrumb a {
            color: #7a2e0e;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .main-wrapper {
            flex: 1;
            padding: 2rem 0 3rem;
        }
        .featured-figure {
            margin: 1.5rem 0 2rem;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
            background: #e2e8f0;
        }
        .featured-figure img {
            width: 100%;
            height: auto;
            max-height: 460px;
            object-fit: cover;
        }
        .featured-figure figcaption {
            padding: 0.75rem 1.2rem;
            background: #f1f5f9;
            font-size: 0.9rem;
            color: #334155;
            font-style: italic;
        }
        .search-section {
            background: #f1f5f9;
            padding: 1.8rem 1.5rem;
            border-radius: 18px;
            margin: 2rem 0;
            border: 1px solid #e2e8f0;
        }
        .search-form {
            display: flex;
            gap: 0.6rem;
            flex-wrap: wrap;
        }
        .search-form input[type="text"] {
            flex: 1;
            min-width: 180px;
            padding: 0.7rem 1.2rem;
            border: 2px solid #cbd5e1;
            border-radius: 40px;
            font-size: 1rem;
            background: #fff;
            transition: border 0.2s;
        }
        .search-form input[type="text"]:focus {
            border-color: #b45309;
            outline: none;
            box-shadow: 0 0 0 3px rgba(180, 83, 9, 0.15);
        }
        .search-form button {
            padding: 0.7rem 1.8rem;
            background: #b45309;
            color: #fff;
            border: none;
            border-radius: 40px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-form button:hover {
            background: #92400e;
            transform: scale(1.01);
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.8rem;
            margin: 2.5rem 0;
        }
        .feedback-card {
            background: #ffffff;
            padding: 1.8rem 1.8rem 2rem;
            border-radius: 18px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
            border: 1px solid #e5e7eb;
            transition: box-shadow 0.2s;
        }
        .feedback-card:hover {
            box-shadow: 0 8px 28px rgba(0, 0, 0, 0.07);
        }
        .feedback-card h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 0.6rem;
            color: #1e293b;
        }
        .feedback-card form {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
            margin-top: 0.8rem;
        }
        .feedback-card textarea,
        .feedback-card input[type="text"],
        .feedback-card select {
            padding: 0.7rem 1rem;
            border: 2px solid #d1d5db;
            border-radius: 10px;
            font-size: 0.95rem;
            font-family: inherit;
            background: #fafafa;
            transition: border 0.2s;
        }
        .feedback-card textarea:focus,
        .feedback-card input:focus,
        .feedback-card select:focus {
            border-color: #b45309;
            outline: none;
            box-shadow: 0 0 0 3px rgba(180, 83, 9, 0.1);
        }
        .feedback-card textarea {
            min-height: 90px;
            resize: vertical;
        }
        .feedback-card .star-select {
            display: flex;
            gap: 0.4rem;
            align-items: center;
            flex-wrap: wrap;
        }
        .feedback-card .star-select label {
            font-size: 1.5rem;
            cursor: pointer;
            color: #d1d5db;
            transition: color 0.15s;
        }
        .feedback-card .star-select input {
            display: none;
        }
        .feedback-card .star-select label:hover,
        .feedback-card .star-select input:checked~label {
            color: #f59e0b;
        }
        .btn-submit {
            padding: 0.7rem 1.6rem;
            background: #0f172a;
            color: #fff;
            border: none;
            border-radius: 40px;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: background 0.2s;
            align-self: flex-start;
        }
        .btn-submit:hover {
            background: #1e293b;
        }
        .link-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
            gap: 0.6rem 1rem;
            margin: 1.2rem 0;
            padding: 0;
            list-style: none;
        }
        .link-grid li a {
            display: block;
            padding: 0.4rem 0.8rem;
            background: #f1f5f9;
            border-radius: 30px;
            font-size: 0.88rem;
            border: 1px solid #e2e8f0;
            transition: background 0.2s, border-color 0.2s;
        }
        .link-grid li a:hover {
            background: #fbbf24;
            border-color: #fbbf24;
            color: #0f172a;
            text-decoration: none;
        }
        .site-footer {
            background: #0f172a;
            color: #cbd5e1;
            padding: 2rem 0 1.5rem;
            margin-top: 3rem;
        }
        .site-footer a {
            color: #fbbf24;
        }
        .site-footer a:hover {
            color: #fef3c7;
        }
        .footer-inner {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem 1.8rem;
            justify-content: center;
        }
        .footer-links a {
            font-size: 0.95rem;
        }
        friend-link {
            display: block;
            padding: 0.8rem 1.2rem;
            background: #1e293b;
            border-radius: 12px;
            text-align: center;
            font-size: 0.95rem;
        }
        friend-link a {
            margin: 0 0.6rem;
        }
        .copyright {
            text-align: center;
            font-size: 0.85rem;
            border-top: 1px solid #334155;
            padding-top: 1.2rem;
            margin-top: 0.6rem;
            color: #94a3b8;
        }
        .last-updated {
            text-align: center;
            font-size: 0.85rem;
            color: #94a3b8;
            margin-top: 0.3rem;
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .primary-nav {
                display: none;
                flex-direction: column;
                width: 100%;
                margin-top: 0.8rem;
                gap: 0.3rem;
                background: #1e293b;
                padding: 0.8rem 0.6rem;
                border-radius: 14px;
            }
            .primary-nav.open {
                display: flex;
            }
            .primary-nav a {
                padding: 0.6rem 1rem;
                border-radius: 30px;
            }
            h1 {
                font-size: 1.9rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            .feedback-grid {
                grid-template-columns: 1fr;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                width: 100%;
                justify-content: center;
            }
            .featured-figure img {
                max-height: 240px;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 0.8rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .link-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        .highlight {
            background: linear-gradient(to right, #fef3c7, #fde68a);
            padding: 0 0.2rem;
            font-weight: 500;
        }
        .badge {
            display: inline-block;
            background: #b45309;
            color: #fff;
            font-size: 0.7rem;
            padding: 0.15rem 0.6rem;
            border-radius: 30px;
            font-weight: 600;
            letter-spacing: 0.3px;
            vertical-align: middle;
        }
        .quote-block {
            border-left: 4px solid #fbbf24;
            padding: 0.8rem 1.2rem;
            margin: 1.2rem 0;
            background: #fefcf5;
            border-radius: 0 10px 10px 0;
            font-style: italic;
        }
        .emoji-lg {
            font-size: 1.3rem;
        }
        .spacer {
            height: 0.8rem;
        }
