        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            line-height: 1.7;
            color: #1e2a3a;
            background: #faf8f5;
            padding: 0;
            margin: 0;
        }
        a {
            color: #b54a2e;
            text-decoration: none;
            transition: color 0.25s;
        }
        a:hover {
            color: #7a2e1b;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
            margin: 1rem 0;
        }
        li {
            margin-bottom: 0.4rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.2rem;
        }
        .site-header {
            background: linear-gradient(145deg, #1e2a3a 0%, #2a3a4e 100%);
            color: #fff;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            color: #f0d9b5;
            text-transform: uppercase;
            font-style: italic;
            text-shadow: 2px 2px 0 #b54a2e;
            transition: transform 0.3s;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
            color: #fce4c8;
        }
        .my-logo .logo-sub {
            display: block;
            font-size: 0.6rem;
            font-weight: 400;
            letter-spacing: 2px;
            color: #b8c7d9;
            text-transform: none;
            font-style: normal;
            text-shadow: none;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.2rem 0.5rem;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        .main-nav {
            display: flex;
            gap: 0.2rem;
            flex-wrap: wrap;
            align-items: center;
        }
        .main-nav a {
            color: #dfe8f0;
            padding: 0.5rem 1rem;
            border-radius: 6px;
            font-weight: 500;
            font-size: 0.95rem;
            transition: background 0.25s, color 0.25s;
            white-space: nowrap;
        }
        .main-nav a:hover {
            background: rgba(255, 255, 255, 0.12);
            color: #f0d9b5;
            text-decoration: none;
        }
        .main-nav a.active {
            background: #b54a2e;
            color: #fff;
        }
        .breadcrumb {
            background: #f0ebe4;
            padding: 0.7rem 0;
            font-size: 0.9rem;
            border-bottom: 1px solid #e0d6cc;
        }
        .breadcrumb ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.6rem;
            margin: 0;
            padding: 0;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.6rem;
            color: #9a8a7a;
            font-weight: 700;
        }
        .breadcrumb a {
            color: #7a5a4a;
        }
        .breadcrumb .current {
            color: #b54a2e;
            font-weight: 600;
        }
        .hero {
            background: linear-gradient(135deg, #2a3a4e 0%, #1e2a3a 100%);
            color: #fff;
            padding: 4rem 0 3rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .hero::after {
            content: "♠ ♥ ♦ ♣";
            font-size: 12rem;
            position: absolute;
            bottom: -2rem;
            right: -2rem;
            opacity: 0.04;
            letter-spacing: 1rem;
            pointer-events: none;
            font-weight: 700;
        }
        .hero h1 {
            font-size: 2.8rem;
            font-weight: 800;
            margin-bottom: 1rem;
            letter-spacing: -0.5px;
            color: #f0d9b5;
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 720px;
            margin: 0 auto 1.5rem;
            opacity: 0.9;
            color: #dfe8f0;
        }
        .hero .hero-meta {
            font-size: 0.95rem;
            color: #b8c7d9;
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
        }
        .hero .hero-meta i {
            margin-right: 0.4rem;
            color: #f0d9b5;
        }
        section {
            padding: 3rem 0;
        }
        .section-title {
            font-size: 2rem;
            font-weight: 700;
            color: #1e2a3a;
            margin-bottom: 1.8rem;
            border-left: 5px solid #b54a2e;
            padding-left: 1.2rem;
        }
        .section-title i {
            color: #b54a2e;
            margin-right: 0.6rem;
        }
        h2 {
            font-size: 1.9rem;
            font-weight: 700;
            color: #1e2a3a;
            margin: 2.5rem 0 1.2rem;
        }
        h3 {
            font-size: 1.4rem;
            font-weight: 600;
            color: #2a3a4e;
            margin: 2rem 0 1rem;
        }
        h4 {
            font-size: 1.15rem;
            font-weight: 600;
            color: #3a4a5e;
            margin: 1.4rem 0 0.6rem;
        }
        p {
            margin-bottom: 1.2rem;
            color: #2e3a4a;
        }
        .card-special {
            background: #fff;
            border-radius: 16px;
            padding: 2rem;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
            margin: 2rem 0;
            border: 1px solid #eee8e0;
        }
        .card-special h3 {
            margin-top: 0;
        }
        .highlight-box {
            background: #f5efe8;
            border-left: 6px solid #b54a2e;
            padding: 1.5rem 2rem;
            border-radius: 0 12px 12px 0;
            margin: 1.8rem 0;
        }
        .highlight-box strong {
            color: #b54a2e;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .stat-item {
            background: #fff;
            padding: 1.8rem 1.2rem;
            border-radius: 14px;
            text-align: center;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
            border: 1px solid #eee8e0;
            transition: transform 0.25s, box-shadow 0.25s;
        }
        .stat-item:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
        }
        .stat-item .number {
            font-size: 2.8rem;
            font-weight: 800;
            color: #b54a2e;
            display: block;
        }
        .stat-item .label {
            font-size: 0.95rem;
            color: #5a6a7a;
            margin-top: 0.3rem;
        }
        .img-wrapper {
            margin: 2rem 0;
            border-radius: 14px;
            overflow: hidden;
            box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
        }
        .img-wrapper figcaption {
            background: #f5efe8;
            padding: 0.8rem 1.2rem;
            font-size: 0.9rem;
            color: #5a6a7a;
            text-align: center;
            font-style: italic;
        }
        .search-form {
            display: flex;
            gap: 0.6rem;
            max-width: 520px;
            margin: 1.5rem 0;
            flex-wrap: wrap;
        }
        .search-form input[type="text"] {
            flex: 1;
            min-width: 180px;
            padding: 0.8rem 1.2rem;
            border: 2px solid #ddd6ce;
            border-radius: 40px;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.3s;
            background: #fff;
        }
        .search-form input[type="text"]:focus {
            border-color: #b54a2e;
        }
        .search-form button {
            padding: 0.8rem 1.8rem;
            background: #b54a2e;
            color: #fff;
            border: none;
            border-radius: 40px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
            font-size: 1rem;
        }
        .search-form button:hover {
            background: #7a2e1b;
            transform: scale(1.02);
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin: 2rem 0;
        }
        @media (max-width:700px) {
            .feedback-grid {
                grid-template-columns: 1fr;
            }
        }
        .comment-form textarea,
        .rating-form select,
        .rating-form input,
        .comment-form input {
            width: 100%;
            padding: 0.8rem 1rem;
            border: 2px solid #ddd6ce;
            border-radius: 10px;
            font-size: 1rem;
            font-family: inherit;
            transition: border-color 0.3s;
            background: #fff;
            margin-bottom: 0.8rem;
        }
        .comment-form textarea:focus,
        .rating-form select:focus,
        .rating-form input:focus {
            border-color: #b54a2e;
            outline: none;
        }
        .comment-form textarea {
            min-height: 110px;
            resize: vertical;
        }
        .btn-primary {
            padding: 0.7rem 2rem;
            background: #b54a2e;
            color: #fff;
            border: none;
            border-radius: 40px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
            font-size: 1rem;
        }
        .btn-primary:hover {
            background: #7a2e1b;
            transform: scale(1.02);
        }
        .rating-stars {
            display: flex;
            gap: 0.3rem;
            font-size: 1.8rem;
            color: #f0c040;
            margin: 0.5rem 0;
            cursor: pointer;
        }
        .rating-stars i {
            transition: transform 0.2s;
        }
        .rating-stars i:hover {
            transform: scale(1.2);
        }
        friend-link {
            display: block;
            padding: 2rem 0;
            border-top: 2px solid #e0d6cc;
            margin-top: 2rem;
        }
        friend-link .fl-title {
            font-size: 1.1rem;
            font-weight: 600;
            color: #1e2a3a;
            margin-bottom: 1rem;
        }
        friend-link .fl-list {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem 1.5rem;
            list-style: none;
            padding: 0;
            margin: 0;
        }
        friend-link .fl-list a {
            color: #5a6a7a;
            font-size: 0.95rem;
            padding: 0.2rem 0;
            border-bottom: 1px solid transparent;
            transition: border-color 0.2s, color 0.2s;
        }
        friend-link .fl-list a:hover {
            color: #b54a2e;
            border-bottom-color: #b54a2e;
            text-decoration: none;
        }
        .site-footer {
            background: #1e2a3a;
            color: #b8c7d9;
            padding: 2.5rem 0 1.5rem;
            font-size: 0.9rem;
        }
        .site-footer .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #2a3a4e;
            margin-top: 1.5rem;
            color: #8a9aaa;
        }
        .site-footer a {
            color: #f0d9b5;
        }
        .site-footer a:hover {
            color: #fff;
        }
        @media (max-width: 820px) {
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                padding-top: 1rem;
                gap: 0.3rem;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 0.7rem 1rem;
                border-radius: 8px;
                background: rgba(255, 255, 255, 0.05);
            }
            .hero h1 {
                font-size: 2rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .section-title {
                font-size: 1.6rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            .container {
                padding: 0 1rem;
            }
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.6rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .hero .hero-meta {
                flex-direction: column;
                gap: 0.6rem;
            }
            .search-form button {
                width: 100%;
            }
        }
        .emoji-lg {
            font-size: 1.6rem;
            margin-right: 0.3rem;
        }
        .text-muted {
            color: #7a8a9a;
        }
        .mt-2 {
            margin-top: 2rem;
        }
        .mb-2 {
            margin-bottom: 2rem;
        }
        .flex-between {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 1rem;
            align-items: center;
        }
        .tag {
            display: inline-block;
            background: #f0ebe4;
            padding: 0.2rem 1rem;
            border-radius: 20px;
            font-size: 0.85rem;
            color: #5a6a7a;
        }
        .anchor-offset {
            scroll-margin-top: 90px;
        }
