        *,
        *::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: #f4f7fb;
            color: #1a2634;
            line-height: 1.7;
            padding: 0 1rem;
            max-width: 1280px;
            margin: 0 auto;
        }
        a {
            color: #c44536;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #772e1f;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.25;
            margin-top: 2rem;
            margin-bottom: 0.75rem;
            color: #0d1b2a;
        }
        h1 {
            font-size: 2.4rem;
            margin-top: 0.5rem;
        }
        h2 {
            font-size: 1.8rem;
            border-bottom: 3px solid #c44536;
            padding-bottom: 0.35rem;
        }
        h3 {
            font-size: 1.35rem;
            color: #1b3a5c;
        }
        h4 {
            font-size: 1.1rem;
            color: #2a4a6e;
        }
        p {
            margin-bottom: 1.2rem;
        }
        ul,
        ol {
            margin: 1rem 0 1.5rem 2rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        hr {
            border: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, #c44536, transparent);
            margin: 2.5rem 0;
        }
        header {
            background: #0d1b2a;
            padding: 1rem 1.5rem;
            border-radius: 0 0 20px 20px;
            margin-bottom: 2rem;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
            position: relative;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: #f0c27a;
            letter-spacing: -0.5px;
            text-transform: uppercase;
        }
        .my-logo span {
            color: #e8e8e8;
            font-weight: 300;
        }
        .my-logo:hover {
            color: #f5d89a;
            text-decoration: none;
        }
        nav {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            flex-wrap: wrap;
        }
        nav a {
            color: #e8e8e8;
            padding: 0.5rem 1rem;
            border-radius: 30px;
            font-weight: 500;
            font-size: 0.9rem;
            transition: background 0.25s, transform 0.15s;
        }
        nav a:hover {
            background: #c44536;
            color: #fff;
            text-decoration: none;
            transform: translateY(-2px);
        }
        .hamburger {
            display: none;
            font-size: 1.6rem;
            color: #f0c27a;
            cursor: pointer;
            background: none;
            border: none;
            padding: 0.3rem 0.6rem;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: rgba(255, 255, 255, 0.08);
        }
        .breadcrumb {
            font-size: 0.85rem;
            padding: 0.6rem 0;
            margin-bottom: 1.5rem;
            color: #5a6a7a;
        }
        .breadcrumb a {
            color: #c44536;
        }
        .breadcrumb a:hover {
            color: #772e1f;
        }
        .breadcrumb .sep {
            margin: 0 0.4rem;
            color: #9aabbb;
        }
        .hero-img-wrap {
            margin: 1.5rem 0 2.5rem;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
            background: #0d1b2a;
            position: relative;
        }
        .hero-img-wrap img {
            width: 100%;
            max-height: 460px;
            object-fit: cover;
            display: block;
        }
        .hero-caption {
            background: rgba(13, 27, 42, 0.7);
            backdrop-filter: blur(4px);
            color: #f0e6d3;
            padding: 0.8rem 1.5rem;
            font-size: 0.9rem;
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            text-align: center;
        }
        .search-wrap {
            background: #fff;
            padding: 1.5rem 2rem;
            border-radius: 16px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            margin: 2rem 0;
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
            align-items: center;
        }
        .search-wrap label {
            font-weight: 600;
            color: #0d1b2a;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-wrap input[type="text"] {
            flex: 1 1 260px;
            padding: 0.75rem 1.2rem;
            border: 2px solid #dce4ec;
            border-radius: 40px;
            font-size: 1rem;
            outline: none;
            transition: border 0.25s;
            background: #f9fbfd;
        }
        .search-wrap input[type="text"]:focus {
            border-color: #c44536;
        }
        .search-wrap button {
            padding: 0.75rem 2rem;
            background: #c44536;
            color: #fff;
            border: none;
            border-radius: 40px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .search-wrap button:hover {
            background: #a13226;
            transform: translateY(-2px);
        }
        .feedback-row {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            margin: 2.5rem 0;
        }
        .feedback-card {
            flex: 1 1 300px;
            background: #fff;
            padding: 1.8rem 2rem;
            border-radius: 16px;
            box-shadow: 0 6px 30px rgba(0, 0, 0, 0.05);
        }
        .feedback-card h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 0.6rem;
            color: #0d1b2a;
        }
        .feedback-card textarea,
        .feedback-card input[type="number"],
        .feedback-card input[type="text"] {
            width: 100%;
            padding: 0.7rem 1rem;
            border: 2px solid #dce4ec;
            border-radius: 12px;
            font-size: 1rem;
            outline: none;
            transition: border 0.25s;
            background: #f9fbfd;
            font-family: inherit;
            margin-bottom: 0.8rem;
        }
        .feedback-card textarea:focus,
        .feedback-card input:focus {
            border-color: #c44536;
        }
        .feedback-card textarea {
            min-height: 90px;
            resize: vertical;
        }
        .feedback-card button {
            padding: 0.65rem 1.8rem;
            background: #0d1b2a;
            color: #f0c27a;
            border: none;
            border-radius: 40px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .feedback-card button:hover {
            background: #1b3a5c;
            transform: translateY(-2px);
        }
        .score-stars {
            display: flex;
            gap: 0.3rem;
            font-size: 1.6rem;
            color: #f0c27a;
            margin-bottom: 0.6rem;
            cursor: pointer;
        }
        .score-stars i {
            transition: transform 0.15s, color 0.2s;
        }
        .score-stars i:hover {
            transform: scale(1.3);
            color: #e6a800;
        }
        .content-wrap {
            background: #fff;
            padding: 2.5rem 2.8rem;
            border-radius: 20px;
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.04);
            margin: 2rem 0;
        }
        .content-wrap p,
        .content-wrap li {
            font-size: 1.05rem;
            color: #1e2c3a;
        }
        .highlight-box {
            background: #fdf6ed;
            border-left: 5px solid #c44536;
            padding: 1.5rem 2rem;
            border-radius: 0 16px 16px 0;
            margin: 2rem 0;
        }
        .highlight-box strong {
            color: #c44536;
        }
        .insight-badge {
            display: inline-block;
            background: #0d1b2a;
            color: #f0c27a;
            padding: 0.2rem 1rem;
            border-radius: 30px;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-right: 0.5rem;
        }
        .stat-number {
            font-weight: 800;
            font-size: 1.6rem;
            color: #c44536;
        }
        .last-updated {
            display: inline-block;
            background: #eef2f7;
            padding: 0.3rem 1.2rem;
            border-radius: 40px;
            font-size: 0.85rem;
            color: #4a5a6a;
            margin: 1rem 0 2rem;
        }
        .link-list-inline {
            list-style: none;
            padding: 0;
            margin: 1.5rem 0;
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem 1.2rem;
        }
        .link-list-inline li a {
            background: #f0f4fa;
            padding: 0.3rem 1.2rem;
            border-radius: 40px;
            font-size: 0.9rem;
            font-weight: 500;
            border: 1px solid #dce4ec;
            transition: all 0.2s;
            display: inline-block;
        }
        .link-list-inline li a:hover {
            background: #c44536;
            color: #fff;
            border-color: #c44536;
            text-decoration: none;
            transform: translateY(-2px);
        }
        footer {
            background: #0d1b2a;
            color: #cbd5e1;
            padding: 2rem 2rem 1.5rem;
            border-radius: 20px 20px 0 0;
            margin-top: 3rem;
            font-size: 0.9rem;
        }
        footer a {
            color: #f0c27a;
        }
        footer a:hover {
            color: #f5d89a;
        }
        friend-link {
            display: block;
            padding: 1rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            margin-bottom: 1rem;
        }
        friend-link a {
            display: inline-block;
            margin: 0.3rem 0.8rem 0.3rem 0;
            padding: 0.2rem 0.8rem;
            background: rgba(255, 255, 255, 0.06);
            border-radius: 30px;
            font-size: 0.85rem;
        }
        friend-link a:hover {
            background: #c44536;
            color: #fff;
            text-decoration: none;
        }
        .copyright {
            text-align: center;
            padding-top: 1rem;
            font-size: 0.8rem;
            color: #8a9aaa;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
        }
        @media (max-width: 820px) {
            body {
                padding: 0 0.6rem;
            }
            header {
                padding: 0.8rem 1rem;
                border-radius: 0 0 16px 16px;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            nav {
                display: none;
                width: 100%;
                flex-direction: column;
                margin-top: 1rem;
                gap: 0.3rem;
            }
            nav.show {
                display: flex;
            }
            nav a {
                padding: 0.6rem 1rem;
                width: 100%;
                text-align: center;
                border-radius: 12px;
            }
            .hamburger {
                display: inline-block;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.15rem;
            }
            .content-wrap {
                padding: 1.5rem 1.2rem;
            }
            .feedback-row {
                flex-direction: column;
                gap: 1.2rem;
            }
            .search-wrap {
                padding: 1.2rem 1.2rem;
                flex-direction: column;
                align-items: stretch;
            }
            .search-wrap input[type="text"] {
                flex: 1 1 auto;
            }
            .hero-img-wrap {
                margin: 1rem 0 1.5rem;
            }
            .hero-caption {
                font-size: 0.75rem;
                padding: 0.5rem 1rem;
            }
            .link-list-inline {
                flex-direction: column;
                gap: 0.4rem;
            }
            .link-list-inline li a {
                display: block;
                text-align: center;
            }
            footer {
                padding: 1.5rem 1rem 1rem;
            }
            friend-link a {
                display: block;
                text-align: center;
                margin: 0.3rem 0;
            }
        }
        @media (max-width: 480px) {
            h1 {
                font-size: 1.5rem;
            }
            h2 {
                font-size: 1.2rem;
            }
            .stat-number {
                font-size: 1.3rem;
            }
            .feedback-card {
                padding: 1.2rem 1.2rem;
            }
        }
        .emoji-lg {
            font-size: 1.4rem;
        }
        .text-accent {
            color: #c44536;
        }
        .fw-700 {
            font-weight: 700;
        }
        .mt-0 {
            margin-top: 0;
        }
        .mb-0 {
            margin-bottom: 0;
        }
        .flex-center {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            flex-wrap: wrap;
        }
        .star-rating-static {
            color: #f0c27a;
            letter-spacing: 2px;
        }
        ::selection {
            background: #c44536;
            color: #fff;
        }
