        *,
        *::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: #1a1a2e;
            line-height: 1.75;
            padding: 0 1rem;
        }
        a {
            color: #b8860b;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover {
            color: #8b6508;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }
        :root {
            --primary: #0a1f3d;
            --secondary: #b8860b;
            --accent: #f5c518;
            --light: #f0f4fa;
            --dark: #0d1117;
            --gray: #6b7280;
            --border: #e2e8f0;
            --card-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
            --radius: 16px;
        }
        .site-header {
            background: var(--primary);
            color: #fff;
            border-radius: 0 0 var(--radius) var(--radius);
            padding: 0.75rem 0;
            position: relative;
            z-index: 100;
            box-shadow: 0 4px 20px rgba(10, 31, 61, 0.25);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.75rem 1.5rem;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #f5c518, #b8860b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            transition: transform 0.2s ease;
            display: inline-block;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
        }
        .my-logo small {
            font-size: 0.7rem;
            -webkit-text-fill-color: rgba(255, 255, 255, 0.7);
            color: rgba(255, 255, 255, 0.7);
            display: block;
            font-weight: 400;
            letter-spacing: 0.3px;
        }
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 0.25rem;
            flex-wrap: wrap;
        }
        .nav-menu a {
            color: rgba(255, 255, 255, 0.85);
            padding: 0.5rem 1rem;
            border-radius: 40px;
            font-weight: 500;
            font-size: 0.9rem;
            transition: all 0.2s ease;
        }
        .nav-menu a:hover,
        .nav-menu a.active {
            background: rgba(255, 255, 255, 0.12);
            color: #fff;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.6rem;
            cursor: pointer;
            padding: 0.25rem 0.5rem;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding: 0.75rem 0 0.25rem;
            font-size: 0.85rem;
            color: var(--gray);
            gap: 0.4rem;
        }
        .breadcrumb li+li::before {
            content: "›";
            padding: 0 0.4rem;
            color: var(--gray);
        }
        .breadcrumb a {
            color: var(--secondary);
        }
        .breadcrumb a:hover {
            color: #8b6508;
        }
        .hero {
            padding: 2.5rem 0 1.5rem;
            text-align: center;
        }
        .hero h1 {
            font-size: 2.8rem;
            font-weight: 800;
            color: var(--primary);
            line-height: 1.2;
            margin-bottom: 0.75rem;
        }
        .hero h1 span {
            background: linear-gradient(135deg, var(--secondary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero p {
            font-size: 1.2rem;
            color: var(--gray);
            max-width: 720px;
            margin: 0 auto 1.25rem;
        }
        .update-badge {
            display: inline-block;
            background: var(--accent);
            color: var(--primary);
            padding: 0.3rem 1.2rem;
            border-radius: 40px;
            font-weight: 600;
            font-size: 0.9rem;
            letter-spacing: 0.3px;
        }
        .search-section {
            background: #fff;
            border-radius: var(--radius);
            padding: 1.75rem 2rem;
            box-shadow: var(--card-shadow);
            margin: 1.5rem 0 2rem;
        }
        .search-form {
            display: flex;
            gap: 0.75rem;
            flex-wrap: wrap;
            align-items: center;
        }
        .search-form input[type="text"] {
            flex: 1 1 260px;
            padding: 0.8rem 1.2rem;
            border: 2px solid var(--border);
            border-radius: 40px;
            font-size: 1rem;
            outline: none;
            transition: border 0.2s;
        }
        .search-form input[type="text"]:focus {
            border-color: var(--secondary);
        }
        .search-form button {
            background: var(--primary);
            color: #fff;
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 40px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-form button:hover {
            background: #0d2a52;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 2.5rem;
            margin: 2rem 0;
        }
        .main-content {
            background: #fff;
            border-radius: var(--radius);
            padding: 2rem 2.25rem;
            box-shadow: var(--card-shadow);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 1.75rem;
        }
        .sidebar-card {
            background: #fff;
            border-radius: var(--radius);
            padding: 1.5rem;
            box-shadow: var(--card-shadow);
        }
        .sidebar-card h3 {
            font-size: 1.15rem;
            color: var(--primary);
            margin-bottom: 0.75rem;
            border-bottom: 3px solid var(--accent);
            padding-bottom: 0.4rem;
            display: inline-block;
        }
        .sidebar-card ul {
            list-style: none;
        }
        .sidebar-card ul li {
            padding: 0.4rem 0;
            border-bottom: 1px solid var(--border);
        }
        .sidebar-card ul li:last-child {
            border-bottom: none;
        }
        .sidebar-card ul li a {
            font-weight: 500;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary);
            margin: 2rem 0 1rem;
            border-left: 6px solid var(--accent);
            padding-left: 1rem;
        }
        h3 {
            font-size: 1.45rem;
            font-weight: 600;
            color: var(--primary);
            margin: 1.6rem 0 0.75rem;
        }
        h4 {
            font-size: 1.15rem;
            font-weight: 600;
            color: #1f2937;
            margin: 1.2rem 0 0.5rem;
        }
        p {
            margin-bottom: 1rem;
            color: #2d3748;
        }
        .highlight-box {
            background: var(--light);
            border-left: 6px solid var(--secondary);
            padding: 1.25rem 1.5rem;
            border-radius: 0 12px 12px 0;
            margin: 1.25rem 0;
        }
        .emoji-big {
            font-size: 1.4rem;
            margin-right: 0.3rem;
        }
        .stat-row {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin: 1.5rem 0;
        }
        .stat-card {
            background: var(--light);
            border-radius: 12px;
            padding: 1.25rem 1.5rem;
            flex: 1 1 160px;
            text-align: center;
            border: 1px solid var(--border);
        }
        .stat-card .num {
            font-size: 2rem;
            font-weight: 800;
            color: var(--primary);
        }
        .stat-card .label {
            font-size: 0.85rem;
            color: var(--gray);
            font-weight: 500;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.25rem 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.95rem;
        }
        th {
            background: var(--primary);
            color: #fff;
            padding: 0.75rem 1rem;
            text-align: left;
            font-weight: 600;
        }
        td {
            padding: 0.7rem 1rem;
            border-bottom: 1px solid var(--border);
        }
        tr:hover td {
            background: #f8fafc;
        }
        .img-wrapper {
            margin: 2rem 0;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--card-shadow);
        }
        .img-wrapper figcaption {
            background: var(--light);
            padding: 0.75rem 1.25rem;
            font-size: 0.9rem;
            color: var(--gray);
            text-align: center;
            font-style: italic;
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .feedback-card {
            background: var(--light);
            border-radius: var(--radius);
            padding: 1.75rem;
            border: 1px solid var(--border);
        }
        .feedback-card h3 {
            margin-top: 0;
            font-size: 1.2rem;
        }
        .feedback-card form {
            display: flex;
            flex-direction: column;
            gap: 0.85rem;
        }
        .feedback-card input,
        .feedback-card textarea,
        .feedback-card select {
            padding: 0.7rem 1rem;
            border: 2px solid var(--border);
            border-radius: 10px;
            font-size: 0.95rem;
            outline: none;
            transition: border 0.2s;
            font-family: inherit;
        }
        .feedback-card input:focus,
        .feedback-card textarea:focus,
        .feedback-card select:focus {
            border-color: var(--secondary);
        }
        .feedback-card textarea {
            min-height: 90px;
            resize: vertical;
        }
        .feedback-card .btn-submit {
            background: var(--primary);
            color: #fff;
            border: none;
            padding: 0.7rem 1.5rem;
            border-radius: 40px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
            align-self: flex-start;
        }
        .feedback-card .btn-submit:hover {
            background: #0d2a52;
        }
        .star-rating {
            display: flex;
            gap: 0.25rem;
            font-size: 1.6rem;
            color: #d1d5db;
            cursor: pointer;
            direction: rtl;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            transition: color 0.2s;
            color: #d1d5db;
        }
        .star-rating input:checked~label,
        .star-rating label:hover,
        .star-rating label:hover~label {
            color: var(--accent);
        }
        .site-footer {
            background: var(--primary);
            color: rgba(255, 255, 255, 0.85);
            border-radius: var(--radius) var(--radius) 0 0;
            padding: 2.5rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2rem;
        }
        .footer-inner h4 {
            color: #fff;
            margin-bottom: 0.75rem;
            font-size: 1.1rem;
            border-bottom: 2px solid var(--accent);
            padding-bottom: 0.3rem;
            display: inline-block;
        }
        .footer-inner a {
            color: rgba(255, 255, 255, 0.75);
        }
        .footer-inner a:hover {
            color: var(--accent);
        }
        .footer-inner ul {
            list-style: none;
        }
        .footer-inner ul li {
            padding: 0.25rem 0;
        }
        .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.15);
            padding-top: 1.5rem;
            margin-top: 2rem;
            text-align: center;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.6);
        }
        friend-link {
            display: block;
            margin-top: 0.75rem;
            font-size: 0.9rem;
        }
        friend-link a {
            display: inline-block;
            margin-right: 1rem;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .footer-inner {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 768px) {
            body {
                padding: 0 0.6rem;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .main-content {
                padding: 1.25rem;
            }
            .feedback-grid {
                grid-template-columns: 1fr;
            }
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            .hamburger {
                display: block;
            }
            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                background: rgba(0, 0, 0, 0.25);
                padding: 1rem;
                border-radius: 16px;
                margin-top: 0.5rem;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu a {
                padding: 0.6rem 1rem;
                width: 100%;
            }
            .header-inner {
                position: relative;
            }
            .stat-row {
                flex-direction: column;
            }
            .stat-card {
                flex: 1 1 auto;
            }
        }
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.6rem;
            }
            .search-form input[type="text"] {
                flex: 1 1 100%;
            }
            .search-form button {
                width: 100%;
                justify-content: center;
            }
            .my-logo {
                font-size: 1.5rem;
            }
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mt-2 {
            margin-top: 2rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .text-center {
            text-align: center;
        }
        .flex-wrap {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
            align-items: center;
        }
        .tag {
            display: inline-block;
            background: var(--accent);
            color: var(--primary);
            padding: 0.2rem 0.8rem;
            border-radius: 40px;
            font-size: 0.8rem;
            font-weight: 600;
        }
