*,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        :root {
            --primary: #1a2a3a;
            --accent: #d4a017;
            --accent-light: #f0d080;
            --bg: #faf9f6;
            --card-bg: #ffffff;
            --text: #1e1e1e;
            --text-light: #4a4a4a;
            --border: #dcdcdc;
            --shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
            --radius: 18px;
            --font: 'Segoe UI', Roboto, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: var(--font);
            background: var(--bg);
            color: var(--text);
            line-height: 1.7;
            padding: 0;
            margin: 0;
        }
        a {
            color: #b8860b;
            text-decoration: underline;
            text-underline-offset: 2px;
            transition: color 0.2s;
        }
        a:hover,
        a:focus {
            color: #8b6508;
            text-decoration: none;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: var(--primary);
            color: #fff;
            padding: 14px 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.6rem;
            font-weight: 700;
            letter-spacing: 0.5px;
            color: #fff;
            text-decoration: none;
            background: linear-gradient(135deg, var(--accent), #f5d98a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline-block;
        }
        .my-logo:hover {
            opacity: 0.85;
        }
        .my-logo small {
            font-size: 0.7rem;
            display: block;
            -webkit-text-fill-color: #ccc;
            color: #ccc;
            letter-spacing: 1px;
            font-weight: 300;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid var(--accent);
            color: var(--accent);
            font-size: 1.4rem;
            padding: 6px 14px;
            border-radius: 8px;
            cursor: pointer;
            transition: 0.2s;
        }
        .nav-toggle:hover {
            background: var(--accent);
            color: #1a2a3a;
        }
        .nav-menu {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            align-items: center;
        }
        .nav-menu a {
            color: #eaeaea;
            text-decoration: none;
            padding: 6px 14px;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 500;
            transition: 0.2s;
            background: transparent;
        }
        .nav-menu a:hover,
        .nav-menu a:focus {
            background: rgba(212, 160, 23, 0.2);
            color: var(--accent);
        }
        .breadcrumb-wrap {
            background: #f0ede8;
            padding: 10px 0;
            border-bottom: 1px solid var(--border);
            font-size: 0.85rem;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            gap: 6px;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 6px;
            color: #888;
        }
        .breadcrumb a {
            color: #6a6a6a;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            color: var(--accent);
        }
        .breadcrumb .current {
            color: var(--text);
            font-weight: 500;
        }
        .hero {
            padding: 40px 0 30px;
            text-align: center;
        }
        .hero h1 {
            font-size: 2.6rem;
            font-weight: 800;
            color: var(--primary);
            letter-spacing: -0.5px;
            line-height: 1.2;
        }
        .hero h1 i {
            color: var(--accent);
            margin-right: 10px;
        }
        .hero .sub-title {
            font-size: 1.1rem;
            color: var(--text-light);
            max-width: 720px;
            margin: 12px auto 0;
        }
        .last-update {
            display: inline-block;
            margin-top: 14px;
            background: var(--accent-light);
            padding: 6px 20px;
            border-radius: 30px;
            font-size: 0.85rem;
            font-weight: 500;
            color: #3a2e00;
        }
        .search-section {
            background: var(--card-bg);
            border-radius: var(--radius);
            padding: 28px 24px;
            box-shadow: var(--shadow);
            margin: 20px 0 30px;
        }
        .search-form {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            max-width: 600px;
            margin: 0 auto;
        }
        .search-form input[type="text"] {
            flex: 1;
            min-width: 180px;
            padding: 14px 18px;
            border: 2px solid var(--border);
            border-radius: 40px;
            font-size: 1rem;
            outline: none;
            transition: 0.25s;
            background: #fff;
        }
        .search-form input[type="text"]:focus {
            border-color: var(--accent);
            box-shadow: 0 0 0 4px rgba(212, 160, 23, 0.15);
        }
        .search-form button {
            padding: 14px 32px;
            background: var(--primary);
            color: #fff;
            border: none;
            border-radius: 40px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .search-form button:hover {
            background: #2a3a4a;
            transform: scale(1.02);
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin: 30px 0;
        }
        .main-content {
            min-width: 0;
        }
        .sidebar {
            position: sticky;
            top: 100px;
            align-self: start;
        }
        h2 {
            font-size: 1.9rem;
            margin-top: 2.2rem;
            margin-bottom: 0.8rem;
            color: var(--primary);
            border-left: 6px solid var(--accent);
            padding-left: 18px;
            font-weight: 700;
        }
        h3 {
            font-size: 1.4rem;
            margin-top: 1.8rem;
            margin-bottom: 0.5rem;
            color: #2a3a3a;
            font-weight: 600;
        }
        h4 {
            font-size: 1.15rem;
            margin-top: 1.2rem;
            margin-bottom: 0.3rem;
            color: #3a4a4a;
            font-weight: 600;
        }
        p {
            margin-bottom: 1.2rem;
            color: var(--text-light);
        }
        .content-card {
            background: var(--card-bg);
            border-radius: var(--radius);
            padding: 28px 32px;
            box-shadow: var(--shadow);
            margin-bottom: 28px;
        }
        .highlight-box {
            background: #f8f4ec;
            border-left: 6px solid var(--accent);
            padding: 18px 22px;
            border-radius: 0 12px 12px 0;
            margin: 20px 0;
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 16px;
            margin: 20px 0;
        }
        .stat-item {
            background: var(--bg);
            padding: 18px 10px;
            border-radius: 14px;
            text-align: center;
            border: 1px solid var(--border);
        }
        .stat-item .num {
            font-size: 2rem;
            font-weight: 800;
            color: var(--accent);
            display: block;
        }
        .stat-item .label {
            font-size: 0.85rem;
            color: var(--text-light);
            font-weight: 500;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 20px 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.9rem;
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
        }
        th {
            background: var(--primary);
            color: #fff;
            padding: 12px 16px;
            text-align: left;
            font-weight: 600;
        }
        td {
            padding: 10px 16px;
            border-bottom: 1px solid var(--border);
        }
        tr:hover td {
            background: #f8f4ec;
        }
        .sidebar-card {
            background: var(--card-bg);
            border-radius: var(--radius);
            padding: 22px 20px;
            box-shadow: var(--shadow);
            margin-bottom: 22px;
        }
        .sidebar-card h3 {
            font-size: 1.1rem;
            margin-top: 0;
            border-bottom: 2px solid var(--accent);
            padding-bottom: 8px;
        }
        .sidebar ul {
            list-style: none;
            padding: 0;
        }
        .sidebar ul li {
            padding: 6px 0;
            border-bottom: 1px solid #f0ece6;
        }
        .sidebar ul li a {
            text-decoration: none;
            color: var(--text-light);
            font-weight: 500;
            font-size: 0.9rem;
            display: block;
            transition: 0.2s;
        }
        .sidebar ul li a:hover {
            color: var(--accent);
            padding-left: 4px;
        }
        .sidebar .link-icon {
            margin-right: 8px;
            color: var(--accent);
            width: 18px;
            text-align: center;
        }
        .trophy-figure {
            margin: 30px 0;
            text-align: center;
        }
        .trophy-figure img {
            max-width: 100%;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }
        .trophy-figure figcaption {
            margin-top: 10px;
            font-style: italic;
            color: #666;
            font-size: 0.9rem;
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin: 30px 0;
        }
        .feedback-card {
            background: var(--card-bg);
            border-radius: var(--radius);
            padding: 24px 28px;
            box-shadow: var(--shadow);
        }
        .feedback-card h3 {
            margin-top: 0;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .feedback-card form {
            margin-top: 12px;
        }
        .feedback-card input,
        .feedback-card textarea,
        .feedback-card select {
            width: 100%;
            padding: 12px 14px;
            border: 2px solid var(--border);
            border-radius: 10px;
            font-size: 0.95rem;
            margin-bottom: 12px;
            font-family: var(--font);
            transition: 0.2s;
            background: #fff;
        }
        .feedback-card input:focus,
        .feedback-card textarea:focus,
        .feedback-card select:focus {
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.12);
            outline: none;
        }
        .feedback-card textarea {
            min-height: 90px;
            resize: vertical;
        }
        .feedback-card .star-select {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 4px;
            margin-bottom: 12px;
        }
        .feedback-card .star-select input {
            display: none;
        }
        .feedback-card .star-select label {
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
            transition: 0.15s;
        }
        .feedback-card .star-select input:checked~label,
        .feedback-card .star-select label:hover,
        .feedback-card .star-select label:hover~label {
            color: var(--accent);
        }
        .feedback-card button {
            padding: 12px 28px;
            background: var(--primary);
            color: #fff;
            border: none;
            border-radius: 40px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .feedback-card button:hover {
            background: #2a3a4a;
            transform: scale(1.02);
        }
        .site-footer {
            background: var(--primary);
            color: #d8d4cc;
            padding: 40px 0 20px;
            margin-top: 50px;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 30px;
        }
        .footer-inner h4 {
            color: var(--accent);
            font-size: 1rem;
            margin-bottom: 10px;
        }
        .footer-inner a {
            color: #c8c4bc;
            text-decoration: none;
        }
        .footer-inner a:hover {
            color: var(--accent);
        }
        .footer-inner ul {
            list-style: none;
            padding: 0;
        }
        .footer-inner ul li {
            padding: 4px 0;
        }
        .friend-link {
            display: block;
            margin-top: 20px;
            padding: 16px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
        }
        .friend-link a {
            display: inline-block;
            margin: 0 12px 6px 0;
            background: rgba(255, 255, 255, 0.06);
            padding: 4px 16px;
            border-radius: 30px;
            font-size: 0.85rem;
            color: #ccc;
        }
        .friend-link a:hover {
            background: var(--accent);
            color: #1a2a3a;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            font-size: 0.85rem;
            color: #999;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            margin-top: 20px;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
            }
            .footer-inner {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                padding-top: 12px;
                border-top: 1px solid rgba(255, 255, 255, 0.1);
                margin-top: 10px;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu a {
                width: 100%;
                text-align: center;
                padding: 10px 0;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .feedback-grid {
                grid-template-columns: 1fr;
            }
            .footer-inner {
                grid-template-columns: 1fr;
            }
            .content-card {
                padding: 18px 16px;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                width: 100%;
                justify-content: center;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 12px;
            }
            .hero h1 {
                font-size: 1.4rem;
            }
            .stat-grid {
                grid-template-columns: 1fr 1fr;
            }
            .my-logo {
                font-size: 1.2rem;
            }
        }
        .emoji-big {
            font-size: 1.4em;
            margin-right: 4px;
        }
        .text-accent {
            color: var(--accent);
        }
        .fw-700 {
            font-weight: 700;
        }
        .mt-0 {
            margin-top: 0;
        }
        .mb-0 {
            margin-bottom: 0;
        }
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 16px;
            margin: 20px 0;
        }
        .gallery-grid img {
            border-radius: 12px;
            height: 180px;
            object-fit: cover;
            width: 100%;
        }
        .footnote {
            font-size: 0.85rem;
            color: #888;
            border-top: 1px solid var(--border);
            padding-top: 14px;
            margin-top: 20px;
        }
