        *,
        *::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: #fcf7f0;
            color: #2d2a24;
            line-height: 1.7;
            padding: 0;
            margin: 0;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: #c44b2b;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #8f2e16;
            text-decoration: underline;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #f9e3d0 0%, #f5d0b8 100%);
            border-bottom: 4px solid #d48c6a;
            padding: 12px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 10px;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: #6b2e1a;
            letter-spacing: -0.5px;
            text-shadow: 1px 1px 0 rgba(255, 215, 175, 0.6);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .my-logo i {
            color: #c44b2b;
            font-size: 2rem;
        }
        .my-logo:hover {
            text-decoration: none;
            color: #4d1f0f;
        }
        .main-nav {
            display: flex;
            align-items: center;
            gap: 6px;
            flex-wrap: wrap;
        }
        .main-nav a {
            padding: 6px 14px;
            border-radius: 40px;
            font-weight: 600;
            font-size: 0.9rem;
            color: #4d2b1b;
            background: rgba(255, 255, 255, 0.5);
            transition: background 0.2s, transform 0.15s;
            white-space: nowrap;
        }
        .main-nav a:hover {
            background: #fff;
            transform: translateY(-1px);
            text-decoration: none;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        }
        .main-nav a.active {
            background: #c44b2b;
            color: #fff;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: #6b2e1a;
            cursor: pointer;
            padding: 4px 8px;
        }
        #nav-toggle {
            display: none;
        }
        .breadcrumb {
            background: #f5ede6;
            padding: 10px 0;
            font-size: 0.85rem;
            border-bottom: 1px solid #e3d5cb;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
            padding: 0;
            margin: 0;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 10px;
            color: #b08870;
        }
        .breadcrumb a {
            color: #7a5a48;
        }
        .breadcrumb .current {
            color: #2d2a24;
            font-weight: 600;
        }
        .hero {
            background: linear-gradient(145deg, #f6e3d4, #ecd5c2);
            padding: 40px 0 50px;
            border-bottom: 2px solid #dbbca8;
            text-align: center;
        }
        .hero h1 {
            font-size: 2.6rem;
            font-weight: 900;
            color: #4d1f0f;
            margin-bottom: 12px;
            line-height: 1.2;
        }
        .hero p {
            font-size: 1.2rem;
            color: #5c3d2e;
            max-width: 720px;
            margin: 0 auto 20px;
        }
        .hero .meta-badge {
            display: inline-block;
            background: #c44b2b;
            color: #fff;
            padding: 6px 24px;
            border-radius: 40px;
            font-weight: 600;
            font-size: 0.9rem;
        }
        section {
            padding: 36px 0;
        }
        .section-title {
            font-size: 2rem;
            font-weight: 800;
            color: #4d1f0f;
            margin-bottom: 20px;
            border-left: 5px solid #c44b2b;
            padding-left: 18px;
        }
        .section-sub {
            font-size: 1.4rem;
            font-weight: 700;
            color: #6b3a26;
            margin-top: 28px;
            margin-bottom: 12px;
        }
        .section-sub-sub {
            font-size: 1.15rem;
            font-weight: 600;
            color: #7a4a36;
            margin-top: 20px;
            margin-bottom: 8px;
        }
        p {
            margin-bottom: 16px;
            color: #3d352e;
        }
        .content-card {
            background: #fff;
            border-radius: 20px;
            padding: 28px 30px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
            margin-bottom: 28px;
            border: 1px solid #f0e4db;
        }
        .content-card p:last-child {
            margin-bottom: 0;
        }
        .featured-figure {
            margin: 24px 0 28px;
            border-radius: 16px;
            overflow: hidden;
            background: #f0e4db;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
        }
        .featured-figure img {
            width: 100%;
            height: auto;
            aspect-ratio: 16/9;
            object-fit: cover;
        }
        .featured-figure figcaption {
            padding: 10px 18px;
            font-size: 0.9rem;
            color: #6b5a4a;
            background: #faf3ec;
            font-style: italic;
            border-top: 1px solid #e3d5cb;
        }
        .tips-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            margin: 20px 0;
        }
        .tip-item {
            background: #faf3ec;
            border-radius: 14px;
            padding: 20px 22px;
            border-left: 4px solid #c44b2b;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .tip-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
        }
        .tip-item h4 {
            color: #4d1f0f;
            margin-bottom: 6px;
            font-size: 1.1rem;
        }
        .data-table-wrap {
            overflow-x: auto;
            margin: 20px 0;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.95rem;
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
        }
        .data-table th {
            background: #6b3a26;
            color: #fff;
            padding: 12px 16px;
            text-align: left;
            font-weight: 600;
        }
        .data-table td {
            padding: 10px 16px;
            border-bottom: 1px solid #f0e4db;
        }
        .data-table tr:last-child td {
            border-bottom: none;
        }
        .data-table tr:hover td {
            background: #fcf7f0;
        }
        .player-quote {
            background: #f5ede6;
            border-radius: 16px;
            padding: 24px 28px;
            margin: 24px 0;
            border-left: 6px solid #c44b2b;
            font-style: italic;
            position: relative;
        }
        .player-quote::before {
            content: "\201C";
            font-size: 3.5rem;
            color: #c44b2b;
            position: absolute;
            top: 6px;
            left: 14px;
            opacity: 0.3;
            line-height: 1;
        }
        .player-quote p {
            margin-bottom: 6px;
            font-size: 1.05rem;
        }
        .player-quote cite {
            display: block;
            text-align: right;
            font-size: 0.9rem;
            color: #7a5a48;
            font-style: normal;
            font-weight: 600;
        }
        .search-box {
            display: flex;
            gap: 8px;
            max-width: 520px;
            margin: 16px 0 24px;
            flex-wrap: wrap;
        }
        .search-box input {
            flex: 1;
            padding: 12px 18px;
            border: 2px solid #e3d5cb;
            border-radius: 40px;
            font-size: 1rem;
            background: #fff;
            outline: none;
            transition: border 0.2s;
            min-width: 180px;
        }
        .search-box input:focus {
            border-color: #c44b2b;
        }
        .search-box button {
            padding: 12px 28px;
            background: #c44b2b;
            color: #fff;
            border: none;
            border-radius: 40px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.15s;
        }
        .search-box button:hover {
            background: #8f2e16;
            transform: scale(1.02);
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
            margin: 20px 0;
        }
        @media (max-width:700px) {
            .feedback-grid {
                grid-template-columns: 1fr;
            }
        }
        .feedback-card {
            background: #fff;
            border-radius: 18px;
            padding: 24px 26px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
            border: 1px solid #f0e4db;
        }
        .feedback-card h3 {
            font-size: 1.3rem;
            color: #4d1f0f;
            margin-bottom: 14px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .feedback-card textarea,
        .feedback-card input {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #e3d5cb;
            border-radius: 12px;
            font-size: 0.95rem;
            font-family: inherit;
            background: #fcf9f6;
            resize: vertical;
            outline: none;
            transition: border 0.2s;
        }
        .feedback-card textarea:focus,
        .feedback-card input:focus {
            border-color: #c44b2b;
            background: #fff;
        }
        .feedback-card textarea {
            min-height: 100px;
        }
        .feedback-card .btn {
            padding: 10px 28px;
            background: #c44b2b;
            color: #fff;
            border: none;
            border-radius: 40px;
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            transition: background 0.2s;
            margin-top: 10px;
        }
        .feedback-card .btn:hover {
            background: #8f2e16;
        }
        .star-rating {
            display: flex;
            gap: 6px;
            font-size: 1.8rem;
            color: #e3d5cb;
            cursor: pointer;
            margin: 8px 0 12px;
            flex-wrap: wrap;
        }
        .star-rating i {
            transition: color 0.15s, transform 0.15s;
        }
        .star-rating i:hover,
        .star-rating i.active {
            color: #f5a623;
            transform: scale(1.1);
        }
        .inline-links {
            display: flex;
            flex-wrap: wrap;
            gap: 10px 18px;
            margin: 16px 0 20px;
            padding: 0;
            list-style: none;
        }
        .inline-links li a {
            background: #f5ede6;
            padding: 4px 16px;
            border-radius: 40px;
            font-size: 0.9rem;
            font-weight: 500;
            color: #5c3d2e;
            border: 1px solid #e3d5cb;
            transition: background 0.2s, border-color 0.2s;
        }
        .inline-links li a:hover {
            background: #c44b2b;
            color: #fff;
            border-color: #c44b2b;
            text-decoration: none;
        }
        .site-footer {
            background: #2d2a24;
            color: #e3d5cb;
            padding: 40px 0 28px;
            margin-top: 40px;
            border-top: 6px solid #c44b2b;
        }
        .site-footer a {
            color: #dbbca8;
        }
        .site-footer a:hover {
            color: #fff;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 32px;
        }
        @media (max-width:700px) {
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 24px;
            }
        }
        .footer-inner h4 {
            color: #f5ede6;
            margin-bottom: 12px;
            font-size: 1.1rem;
        }
        .footer-inner ul {
            list-style: none;
            padding: 0;
        }
        .footer-inner ul li {
            margin-bottom: 6px;
        }
        .footer-inner ul li a {
            font-size: 0.9rem;
        }
        friend-link {
            display: block;
            padding: 8px 0;
        }
        friend-link a {
            display: inline-block;
            margin: 4px 12px 4px 0;
            padding: 4px 14px;
            background: rgba(255, 255, 255, 0.06);
            border-radius: 30px;
            font-size: 0.85rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        friend-link a:hover {
            background: rgba(255, 255, 255, 0.12);
            text-decoration: none;
        }
        .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding-top: 20px;
            margin-top: 24px;
            text-align: center;
            font-size: 0.85rem;
            color: #b08870;
        }
        @media (max-width:768px) {
            .hamburger {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                padding-top: 12px;
                gap: 6px;
            }
            .main-nav a {
                text-align: center;
                padding: 10px;
                background: rgba(255, 255, 255, 0.7);
            }
            #nav-toggle:checked+.hamburger+.main-nav {
                display: flex;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .section-title {
                font-size: 1.5rem;
            }
            .content-card {
                padding: 18px 16px;
            }
            .header-inner {
                flex-wrap: wrap;
            }
            .my-logo {
                font-size: 1.4rem;
            }
        }
        @media (max-width:480px) {
            .hero h1 {
                font-size: 1.5rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .feedback-card {
                padding: 16px;
            }
            .data-table th,
            .data-table td {
                padding: 8px 10px;
                font-size: 0.8rem;
            }
        }
        .last-updated {
            display: inline-block;
            background: #f5ede6;
            padding: 4px 18px;
            border-radius: 30px;
            font-size: 0.85rem;
            color: #6b5a4a;
            margin-bottom: 16px;
        }
        .text-highlight {
            background: linear-gradient(to right, #fce9d6, #f5d0b8);
            padding: 0 6px;
            font-weight: 600;
        }
        .emoji-lg {
            font-size: 1.4rem;
            margin-right: 4px;
        }
        hr.divider {
            border: none;
            height: 2px;
            background: linear-gradient(to right, transparent, #e3d5cb, transparent);
            margin: 32px 0;
        }
        .schema-hidden {
            display: none;
        }
