        *,
        *::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, 'Helvetica Neue', sans-serif;
            background: #f4f7fc;
            color: #1a2634;
            line-height: 1.75;
            padding: 0 1rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        a {
            color: #0056b3;
            text-decoration: none;
            transition: color 0.2s, border-bottom 0.2s;
        }
        a:hover,
        a:focus-visible {
            color: #003d82;
            border-bottom: 2px solid #f5a623;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
            margin: 1rem 0;
        }
        li {
            margin-bottom: 0.5rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            line-height: 1.25;
            color: #0b1a2e;
            margin-top: 2rem;
            margin-bottom: 0.75rem;
            letter-spacing: -0.01em;
        }
        h1 {
            font-size: 2.4rem;
            border-left: 6px solid #f5a623;
            padding-left: 1rem;
        }
        h2 {
            font-size: 1.8rem;
            border-bottom: 2px solid #e0e9f2;
            padding-bottom: 0.5rem;
        }
        h3 {
            font-size: 1.35rem;
            color: #1f3a5f;
        }
        h4 {
            font-size: 1.1rem;
            color: #2c4a6e;
        }
        p {
            margin-bottom: 1.2rem;
            font-size: 1.05rem;
        }
        strong,
        b {
            color: #0b1a2e;
            font-weight: 700;
        }
        em {
            font-style: italic;
            color: #2a4a6a;
        }
        hr {
            border: none;
            height: 2px;
            background: linear-gradient(90deg, #f5a623, transparent);
            margin: 2.5rem 0;
        }
        .container {
            background: #ffffff;
            border-radius: 24px;
            padding: 1.5rem 2rem 2rem;
            margin: 1.5rem 0 2rem;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
        }
        .badge {
            display: inline-block;
            background: #f5a623;
            color: #0b1a2e;
            padding: 0.2rem 1rem;
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 0.5px;
        }
        header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 1rem 0 0.5rem;
            border-bottom: 2px solid #dce5ef;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            background: linear-gradient(135deg, #003d82, #f5a623);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.5px;
            text-transform: uppercase;
            border-bottom: none !important;
        }
        .my-logo:hover {
            opacity: 0.85;
            border-bottom: none !important;
        }
        .logo-sub {
            font-size: 0.75rem;
            color: #4a6670;
            display: block;
            letter-spacing: 1px;
            font-weight: 400;
            -webkit-text-fill-color: #4a6670;
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        nav {
            display: flex;
            gap: 0.25rem;
            flex-wrap: wrap;
        }
        nav a {
            padding: 0.5rem 1rem;
            border-radius: 40px;
            font-weight: 600;
            font-size: 0.9rem;
            color: #1a2a3a;
            background: transparent;
            transition: background 0.2s, color 0.2s;
            border-bottom: none !important;
        }
        nav a:hover,
        nav a:focus-visible {
            background: #e9f0f8;
            color: #003d82;
            border-bottom: none !important;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: #1a2a3a;
            cursor: pointer;
            padding: 0.25rem 0.5rem;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: #e9f0f8;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding: 0.75rem 0 0.25rem;
            margin: 0;
            font-size: 0.85rem;
            color: #4a6670;
        }
        .breadcrumb li {
            margin: 0;
            padding: 0;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin: 0 0.6rem;
            color: #8aa0b0;
            font-weight: 700;
        }
        .breadcrumb a {
            color: #2a5a7a;
            border-bottom: none !important;
        }
        .breadcrumb a:hover {
            color: #003d82;
            border-bottom: none !important;
        }
        .search-box {
            display: flex;
            max-width: 460px;
            margin: 1.5rem 0 0.5rem;
            border-radius: 60px;
            overflow: hidden;
            border: 2px solid #dce5ef;
            background: #fff;
            transition: border-color 0.25s;
        }
        .search-box:focus-within {
            border-color: #f5a623;
        }
        .search-box input {
            flex: 1;
            border: none;
            padding: 0.75rem 1.2rem;
            font-size: 1rem;
            background: transparent;
            outline: none;
            min-width: 0;
        }
        .search-box button {
            background: #003d82;
            color: #fff;
            border: none;
            padding: 0.75rem 1.5rem;
            cursor: pointer;
            font-size: 1.1rem;
            transition: background 0.2s;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .search-box button:hover {
            background: #002a5a;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0;
            font-size: 0.98rem;
            background: #f8fafc;
            border-radius: 12px;
            overflow: hidden;
        }
        th,
        td {
            padding: 0.75rem 1rem;
            text-align: left;
            border-bottom: 1px solid #e5ecf3;
        }
        th {
            background: #1f3a5f;
            color: #fff;
            font-weight: 700;
        }
        tr:last-child td {
            border-bottom: none;
        }
        tr:hover td {
            background: #f0f5fb;
        }
        .form-card {
            background: #f8fafc;
            border-radius: 16px;
            padding: 1.5rem 2rem;
            margin: 1.5rem 0;
            border: 1px solid #e5ecf3;
        }
        .form-card form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .form-card label {
            font-weight: 600;
            font-size: 0.95rem;
            color: #1f3a5f;
        }
        .form-card input,
        .form-card textarea,
        .form-card select {
            padding: 0.7rem 1rem;
            border: 2px solid #dce5ef;
            border-radius: 10px;
            font-size: 1rem;
            font-family: inherit;
            background: #fff;
            transition: border-color 0.25s;
        }
        .form-card input:focus,
        .form-card textarea:focus,
        .form-card select:focus {
            border-color: #f5a623;
            outline: none;
        }
        .form-card textarea {
            min-height: 120px;
            resize: vertical;
        }
        .form-card .btn-submit {
            background: #f5a623;
            color: #0b1a2e;
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 60px;
            font-weight: 700;
            font-size: 1.05rem;
            cursor: pointer;
            transition: background 0.25s, transform 0.1s;
            align-self: flex-start;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .form-card .btn-submit:hover {
            background: #e5941a;
            transform: scale(1.02);
        }
        .star-rating {
            display: flex;
            gap: 0.4rem;
            font-size: 1.8rem;
            color: #dce5ef;
            cursor: pointer;
            flex-direction: row-reverse;
            justify-content: flex-end;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 2rem;
            color: #dce5ef;
            transition: color 0.15s;
            cursor: pointer;
        }
        .star-rating input:checked~label,
        .star-rating label:hover,
        .star-rating label:hover~label {
            color: #f5a623;
        }
        .player-interview {
            background: #eef4fa;
            padding: 1.5rem 2rem;
            border-radius: 20px;
            margin: 2rem 0;
            border-left: 6px solid #f5a623;
            font-style: italic;
        }
        .player-interview .speaker {
            font-style: normal;
            font-weight: 700;
            color: #003d82;
            display: block;
            margin-top: 0.75rem;
        }
        .data-highlight {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 1rem;
            margin: 1.5rem 0;
        }
        .data-card {
            background: #f0f5fb;
            padding: 1.2rem;
            border-radius: 16px;
            text-align: center;
            border: 1px solid #e0e9f2;
        }
        .data-card .number {
            font-size: 2.2rem;
            font-weight: 800;
            color: #f5a623;
            display: block;
        }
        .data-card .label {
            font-size: 0.9rem;
            color: #2a4a6a;
        }
        footer {
            margin-top: 3rem;
            padding: 2rem 0 1.5rem;
            border-top: 2px solid #dce5ef;
            font-size: 0.92rem;
            color: #2a4a6a;
        }
        friend-link {
            display: block;
            background: #f0f5fb;
            padding: 1.2rem 1.8rem;
            border-radius: 16px;
            margin: 1.2rem 0;
            font-size: 0.98rem;
        }
        friend-link a {
            display: inline-block;
            margin: 0.3rem 1rem 0.3rem 0;
            padding: 0.2rem 0.6rem;
            background: #fff;
            border-radius: 30px;
            border: 1px solid #dce5ef;
            font-weight: 500;
            transition: background 0.2s, border-color 0.2s;
            border-bottom: none !important;
        }
        friend-link a:hover {
            background: #e9f0f8;
            border-color: #f5a623;
            border-bottom: none !important;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            font-size: 0.85rem;
            color: #5a7a8a;
        }
        .copyright strong {
            color: #1a3a4a;
        }
        @media (max-width: 820px) {
            body {
                padding: 0 0.75rem;
            }
            .container {
                padding: 1rem 1.2rem 1.5rem;
            }
            h1 {
                font-size: 1.8rem;
                padding-left: 0.75rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.15rem;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            .nav-wrapper nav {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #fff;
                padding: 1rem 0.5rem;
                border-radius: 16px;
                box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
                margin-top: 0.75rem;
            }
            .nav-wrapper nav.open {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .nav-wrapper {
                flex-wrap: wrap;
            }
            header {
                flex-wrap: wrap;
            }
            .search-box {
                max-width: 100%;
            }
            .form-card {
                padding: 1rem 1.2rem;
            }
            .data-highlight {
                grid-template-columns: 1fr 1fr;
            }
            table {
                font-size: 0.85rem;
            }
            th,
            td {
                padding: 0.5rem 0.6rem;
            }
        }
        @media (max-width: 480px) {
            h1 {
                font-size: 1.5rem;
            }
            .container {
                padding: 0.75rem 0.9rem 1.2rem;
            }
            .data-highlight {
                grid-template-columns: 1fr;
            }
            .breadcrumb {
                font-size: 0.75rem;
            }
            .breadcrumb li+li::before {
                margin: 0 0.3rem;
            }
            .star-rating label {
                font-size: 1.6rem;
            }
        }
        .flex-between {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 0.5rem;
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .text-small {
            font-size: 0.9rem;
            color: #4a6670;
        }
        .updated {
            font-weight: 600;
            color: #1f3a5f;
            background: #eef4fa;
            padding: 0.2rem 1rem;
            border-radius: 30px;
            display: inline-block;
            font-size: 0.85rem;
        }
        .emoji-lg {
            font-size: 1.3rem;
            margin-right: 0.2rem;
        }
        .tip-box {
            background: #fef9ef;
            border: 1px solid #f5e3c4;
            border-radius: 16px;
            padding: 1.2rem 1.8rem;
            margin: 1.5rem 0;
        }
        .tip-box i {
            color: #f5a623;
            margin-right: 0.5rem;
        }
        .schema-hidden {
            display: none;
        }
