        *,
        *::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, 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.8;
            color: #2d2d2d;
            background: #faf6f0;
            padding: 0;
            margin: 0;
        }
        a {
            color: #c44569;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover,
        a:focus {
            color: #a83254;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        ul,
        ol {
            padding-left: 1.8rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            line-height: 1.3;
            color: #1a1a2e;
            margin-top: 1.8rem;
            margin-bottom: 0.8rem;
        }
        h1 {
            font-size: 2.4rem;
            border-bottom: 4px solid #f3a683;
            padding-bottom: 0.6rem;
        }
        h2 {
            font-size: 1.9rem;
            border-left: 5px solid #c44569;
            padding-left: 1rem;
            margin-top: 2.5rem;
        }
        h3 {
            font-size: 1.5rem;
            margin-top: 2rem;
            color: #2d3436;
        }
        h4 {
            font-size: 1.2rem;
            margin-top: 1.5rem;
            color: #636e72;
            font-weight: 600;
        }
        p {
            margin-bottom: 1.2rem;
            font-size: 1.05rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.2rem;
        }
        .site-header {
            background: linear-gradient(135deg, #f8e0d6 0%, #f5cba7 100%);
            padding: 0.8rem 0;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.8rem;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            color: #1a1a2e;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #c44569, #e17055);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 2px 2px 8px rgba(196, 69, 105, 0.15);
            display: inline-block;
            padding: 0.2rem 0;
        }
        .my-logo:hover {
            text-decoration: none;
            opacity: 0.85;
        }
        .my-logo small {
            font-size: 0.7rem;
            -webkit-text-fill-color: #636e72;
            color: #636e72;
            display: block;
            font-weight: 400;
            letter-spacing: 0.3px;
        }
        .nav-list {
            list-style: none;
            display: flex;
            gap: 1.2rem;
            align-items: center;
            flex-wrap: wrap;
            padding: 0;
        }
        .nav-list a {
            font-weight: 600;
            color: #2d3436;
            padding: 0.4rem 0.8rem;
            border-radius: 6px;
            transition: background 0.2s, color 0.2s;
            font-size: 0.95rem;
        }
        .nav-list a:hover {
            background: #c44569;
            color: #fff;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: #2d3436;
            cursor: pointer;
            padding: 0.2rem 0.5rem;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: rgba(196, 69, 105, 0.12);
        }
        #nav-toggle {
            display: none;
        }
        #nav-toggle:checked~.nav-wrapper .nav-list {
            display: flex;
            flex-direction: column;
            width: 100%;
            background: #fff;
            padding: 1rem 0;
            border-radius: 12px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
        }
        #nav-toggle:checked~.nav-wrapper .nav-list a {
            padding: 0.7rem 1.5rem;
            width: 100%;
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
        }
        .breadcrumb {
            background: #fff5ee;
            padding: 0.6rem 1.2rem;
            border-radius: 8px;
            margin: 1rem 0 0.5rem;
            font-size: 0.9rem;
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem;
            box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
        }
        .breadcrumb a {
            color: #636e72;
        }
        .breadcrumb a:hover {
            color: #c44569;
        }
        .breadcrumb .sep {
            color: #b2bec3;
            margin: 0 0.3rem;
        }
        .breadcrumb .current {
            color: #2d3436;
            font-weight: 600;
        }
        .search-section {
            background: #fff;
            padding: 1.8rem 1.5rem;
            border-radius: 16px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            margin: 1.8rem 0;
            border: 1px solid #f0e6dc;
        }
        .search-form {
            display: flex;
            gap: 0.8rem;
            flex-wrap: wrap;
            max-width: 600px;
            margin: 0 auto;
        }
        .search-form input[type="text"] {
            flex: 1;
            min-width: 180px;
            padding: 0.9rem 1.2rem;
            border: 2px solid #e0d5cb;
            border-radius: 30px;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.3s;
        }
        .search-form input[type="text"]:focus {
            border-color: #c44569;
        }
        .search-form button {
            padding: 0.9rem 2rem;
            background: #c44569;
            color: #fff;
            border: none;
            border-radius: 30px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s, transform 0.1s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-form button:hover {
            background: #a83254;
            transform: scale(1.02);
        }
        .hero-figure {
            margin: 2rem 0 1.5rem;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
            background: #ffeadd;
            position: relative;
        }
        .hero-figure img {
            width: 100%;
            max-height: 480px;
            object-fit: cover;
        }
        .hero-figure figcaption {
            padding: 0.8rem 1.5rem;
            background: rgba(26, 26, 46, 0.85);
            color: #faf6f0;
            font-size: 0.95rem;
            text-align: center;
        }
        .content-area {
            background: #fff;
            padding: 2.2rem 1.8rem;
            border-radius: 20px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
            margin: 1.8rem 0;
        }
        .content-area p,
        .content-area li {
            font-size: 1.05rem;
            color: #2d3436;
        }
        .content-area .highlight {
            background: #fff3e0;
            padding: 0.2rem 0.6rem;
            border-radius: 4px;
            font-weight: 600;
        }
        .insight-box {
            background: #f8f0e9;
            border-left: 5px solid #c44569;
            padding: 1.2rem 1.5rem;
            margin: 1.5rem 0;
            border-radius: 0 12px 12px 0;
        }
        .insight-box strong {
            color: #c44569;
        }
        .player-quote {
            font-style: italic;
            background: #fff9f5;
            padding: 1.2rem 1.8rem;
            border-radius: 16px;
            border: 1px solid #f0e6dc;
            margin: 1.5rem 0;
            position: relative;
        }
        .player-quote::before {
            content: "\201C";
            font-size: 3rem;
            color: #c44569;
            position: absolute;
            top: -0.2rem;
            left: 0.8rem;
            line-height: 1;
        }
        .player-quote cite {
            display: block;
            margin-top: 0.6rem;
            color: #636e72;
            font-style: normal;
            font-weight: 600;
        }
        .emoji-big {
            font-size: 1.6rem;
            display: inline-block;
            margin-right: 0.3rem;
        }
        .data-table-wrap {
            overflow-x: auto;
            margin: 1.5rem 0;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            background: #fcf9f6;
            border-radius: 12px;
            overflow: hidden;
            font-size: 0.95rem;
        }
        .data-table th {
            background: #c44569;
            color: #fff;
            padding: 0.8rem 1rem;
            text-align: left;
            font-weight: 600;
        }
        .data-table td {
            padding: 0.7rem 1rem;
            border-bottom: 1px solid #f0e6dc;
        }
        .data-table tr:last-child td {
            border-bottom: none;
        }
        .data-table tr:hover td {
            background: #fff3ed;
        }
        .stat-number {
            font-weight: 700;
            color: #c44569;
            font-size: 1.1rem;
        }
        .feedback-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin: 2.5rem 0;
        }
        .feedback-card {
            background: #fff;
            padding: 1.8rem 1.5rem;
            border-radius: 16px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
            border: 1px solid #f0e6dc;
        }
        .feedback-card h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .feedback-form label {
            display: block;
            font-weight: 600;
            margin: 1rem 0 0.3rem;
            color: #2d3436;
        }
        .feedback-form input,
        .feedback-form textarea,
        .feedback-form select {
            width: 100%;
            padding: 0.8rem 1rem;
            border: 2px solid #e0d5cb;
            border-radius: 10px;
            font-size: 0.95rem;
            outline: none;
            transition: border-color 0.3s;
            font-family: inherit;
        }
        .feedback-form input:focus,
        .feedback-form textarea:focus,
        .feedback-form select:focus {
            border-color: #c44569;
        }
        .feedback-form textarea {
            min-height: 100px;
            resize: vertical;
        }
        .feedback-form .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 0.2rem;
            margin: 0.4rem 0 0.8rem;
        }
        .feedback-form .star-rating input {
            display: none;
        }
        .feedback-form .star-rating label {
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.2s;
            margin: 0;
            line-height: 1;
        }
        .feedback-form .star-rating input:checked~label,
        .feedback-form .star-rating label:hover,
        .feedback-form .star-rating label:hover~label {
            color: #f3a683;
        }
        .feedback-form .btn-submit {
            background: #c44569;
            color: #fff;
            border: none;
            padding: 0.9rem 2rem;
            border-radius: 30px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s, transform 0.1s;
            margin-top: 1rem;
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
        }
        .feedback-form .btn-submit:hover {
            background: #a83254;
            transform: scale(1.02);
        }
        friend-link {
            display: block;
            background: #fff5ee;
            padding: 1.8rem 1.5rem;
            border-radius: 16px;
            margin: 2rem 0 1rem;
            border: 1px solid #f0e6dc;
        }
        friend-link ul {
            list-style: none;
            padding: 0;
            display: flex;
            flex-wrap: wrap;
            gap: 1rem 2rem;
        }
        friend-link li a {
            font-weight: 500;
            padding: 0.3rem 0.6rem;
            border-radius: 6px;
            transition: background 0.2s;
        }
        friend-link li a:hover {
            background: #f3d4c2;
            text-decoration: none;
        }
        .site-footer {
            background: #1a1a2e;
            color: #dfe6e9;
            padding: 2rem 0 1.5rem;
            margin-top: 3rem;
            border-radius: 24px 24px 0 0;
        }
        .site-footer .container {
            text-align: center;
        }
        .site-footer a {
            color: #f3a683;
        }
        .site-footer a:hover {
            color: #ffd0b0;
        }
        .footer-copy {
            margin-top: 1rem;
            font-size: 0.9rem;
            border-top: 1px solid #2d3436;
            padding-top: 1.2rem;
            color: #b2bec3;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .nav-list {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #fff;
                padding: 0.8rem 0;
                border-radius: 12px;
                box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
                gap: 0;
            }
            #nav-toggle:checked~.nav-wrapper .nav-list {
                display: flex;
            }
            .nav-wrapper {
                width: 100%;
                order: 3;
            }
            .header-inner {
                position: relative;
            }
            .feedback-section {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.25rem;
            }
            .content-area {
                padding: 1.5rem 1rem;
            }
            .hero-figure img {
                max-height: 240px;
            }
            .data-table th,
            .data-table td {
                padding: 0.5rem 0.6rem;
                font-size: 0.85rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                justify-content: center;
            }
            friend-link ul {
                flex-direction: column;
                gap: 0.6rem;
            }
            .my-logo {
                font-size: 1.5rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 0.8rem;
            }
            .breadcrumb {
                font-size: 0.8rem;
                padding: 0.4rem 0.8rem;
            }
            .feedback-card {
                padding: 1.2rem 0.8rem;
            }
            .feedback-form .star-rating label {
                font-size: 1.6rem;
            }
        }
        .last-updated {
            display: inline-block;
            background: #ffeadd;
            padding: 0.3rem 1rem;
            border-radius: 20px;
            font-size: 0.85rem;
            color: #636e72;
            margin-bottom: 1rem;
        }
        .text-center {
            text-align: center;
        }
        .mt-2 {
            margin-top: 2rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .gap-1 {
            gap: 1rem;
        }
        .flex-wrap {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
        }
