        *,
        *::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;
            line-height: 1.7;
            color: #1e2a3a;
            background: #f8f6f2;
            padding: 0;
            margin: 0;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: #c84b31;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover,
        a:focus-visible {
            color: #a0351f;
            text-decoration: underline;
        }
        ul,
        ol {
            padding-left: 1.4rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .skip-link {
            position: absolute;
            top: -100%;
            left: 1rem;
            background: #c84b31;
            color: #fff;
            padding: 0.6rem 1.2rem;
            border-radius: 0 0 8px 8px;
            z-index: 9999;
            font-weight: 600;
            transition: top 0.25s;
        }
        .skip-link:focus {
            top: 0;
        }
        .site-header {
            background: linear-gradient(135deg, #0b2a3b 0%, #1a4a5f 100%);
            color: #fff;
            padding: 0.6rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.6rem 1rem;
        }
        .my-logo {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            font-size: 1.6rem;
            font-weight: 800;
            color: #fff;
            text-decoration: none;
            letter-spacing: -0.5px;
            background: rgba(255, 255, 255, 0.08);
            padding: 0.3rem 1rem 0.3rem 0.8rem;
            border-radius: 40px;
            transition: background 0.25s;
        }
        .my-logo:hover {
            background: rgba(255, 255, 255, 0.16);
            text-decoration: none;
        }
        .my-logo i {
            font-size: 1.8rem;
            color: #f9c74f;
        }
        .my-logo span {
            font-size: 0.75rem;
            font-weight: 400;
            opacity: 0.7;
            display: none;
        }
        @media (min-width: 540px) {
            .my-logo span {
                display: inline;
            }
        }
        .nav-toggle {
            display: none;
        }
        .nav-toggle-label {
            display: none;
            font-size: 1.6rem;
            cursor: pointer;
            padding: 0.3rem 0.6rem;
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.1);
            user-select: none;
            transition: background 0.2s;
        }
        .nav-toggle-label:hover {
            background: rgba(255, 255, 255, 0.2);
        }
        .nav-toggle-label i {
            color: #fff;
        }
        .primary-nav {
            display: flex;
            align-items: center;
            gap: 0.3rem;
            flex-wrap: wrap;
        }
        .primary-nav a {
            color: #e6edf0;
            font-weight: 500;
            padding: 0.4rem 0.9rem;
            border-radius: 30px;
            font-size: 0.9rem;
            transition: background 0.2s, color 0.2s;
            white-space: nowrap;
        }
        .primary-nav a:hover,
        .primary-nav a:focus-visible {
            background: rgba(255, 255, 255, 0.15);
            color: #f9c74f;
            text-decoration: none;
        }
        .primary-nav a.active {
            background: #c84b31;
            color: #fff;
        }
        .breadcrumb-wrap {
            background: #fff;
            border-bottom: 1px solid #e5e0d8;
            padding: 0.5rem 0;
            font-size: 0.85rem;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.3rem 0.6rem;
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .breadcrumb li {
            margin: 0;
            display: flex;
            align-items: center;
            gap: 0.3rem;
        }
        .breadcrumb li+li::before {
            content: "›";
            color: #999;
            font-size: 1.2rem;
            line-height: 1;
        }
        .breadcrumb a {
            color: #c84b31;
        }
        .breadcrumb .current {
            color: #555;
            font-weight: 500;
        }
        .main-content {
            padding: 2rem 0 3rem;
        }
        article h1 {
            font-size: 2.4rem;
            line-height: 1.2;
            margin: 0 0 0.6rem;
            color: #0b2a3b;
            font-weight: 800;
            letter-spacing: -0.5px;
        }
        article h1 i {
            color: #f9c74f;
            font-size: 2.6rem;
        }
        .article-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem 2rem;
            color: #666;
            font-size: 0.9rem;
            margin-bottom: 1.8rem;
            padding-bottom: 1rem;
            border-bottom: 2px solid #e5e0d8;
        }
        .article-meta i {
            margin-right: 0.3rem;
            color: #c84b31;
        }
        .last-updated {
            font-weight: 600;
            color: #1a4a5f;
        }
        article h2 {
            font-size: 1.8rem;
            margin: 2.2rem 0 0.8rem;
            color: #0b2a3b;
            font-weight: 700;
            border-left: 5px solid #c84b31;
            padding-left: 1rem;
        }
        article h3 {
            font-size: 1.3rem;
            margin: 1.6rem 0 0.5rem;
            color: #1a4a5f;
            font-weight: 600;
        }
        article h4 {
            font-size: 1.1rem;
            margin: 1.2rem 0 0.3rem;
            color: #2a5a6f;
            font-weight: 600;
        }
        article p {
            margin-bottom: 1rem;
            color: #2a3a4a;
        }
        article p b,
        article p strong {
            color: #0b2a3b;
        }
        .featured-media {
            margin: 1.5rem 0 2rem;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
            background: #fff;
        }
        .featured-media img {
            width: 100%;
            aspect-ratio: 1200/630;
            object-fit: cover;
        }
        .featured-media figcaption {
            padding: 0.8rem 1.2rem;
            font-size: 0.85rem;
            color: #666;
            background: #fafafa;
            border-top: 1px solid #eee;
        }
        .info-box {
            background: linear-gradient(135deg, #f0f7fa, #e8f0f5);
            border-left: 5px solid #c84b31;
            padding: 1.2rem 1.6rem;
            border-radius: 0 12px 12px 0;
            margin: 1.5rem 0;
        }
        .info-box strong {
            color: #0b2a3b;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.5rem 0;
            border-radius: 12px;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: #fff;
            font-size: 0.95rem;
        }
        th,
        td {
            padding: 0.8rem 1rem;
            text-align: left;
            border-bottom: 1px solid #eee;
        }
        th {
            background: #0b2a3b;
            color: #fff;
            font-weight: 600;
        }
        tr:last-child td {
            border-bottom: none;
        }
        tr:hover td {
            background: #f7f3ee;
        }
        .interview-block {
            background: #fff;
            border-radius: 16px;
            padding: 1.6rem 2rem;
            margin: 1.5rem 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
            border: 1px solid #e5e0d8;
            position: relative;
        }
        .interview-block::before {
            content: "💬";
            font-size: 2rem;
            position: absolute;
            top: 1rem;
            right: 1.4rem;
            opacity: 0.2;
        }
        .interview-block h4 {
            margin-top: 0;
            color: #c84b31;
        }
        .interview-block .player-name {
            font-weight: 700;
            color: #0b2a3b;
        }
        .search-section {
            background: #fff;
            border-radius: 16px;
            padding: 1.8rem 2rem;
            margin: 2.5rem 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
            border: 1px solid #e5e0d8;
        }
        .search-section h2 {
            margin-top: 0;
            border-left-color: #f9c74f;
        }
        .search-form {
            display: flex;
            gap: 0.8rem;
            flex-wrap: wrap;
            margin-top: 0.8rem;
        }
        .search-form input[type="text"] {
            flex: 1 1 240px;
            padding: 0.8rem 1.2rem;
            border: 2px solid #ddd;
            border-radius: 40px;
            font-size: 1rem;
            outline: none;
            transition: border 0.25s;
            background: #fafafa;
        }
        .search-form input[type="text"]:focus {
            border-color: #c84b31;
            background: #fff;
        }
        .search-form button {
            padding: 0.8rem 2rem;
            background: #c84b31;
            color: #fff;
            border: none;
            border-radius: 40px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.25s, transform 0.1s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-form button:hover {
            background: #a0351f;
            transform: scale(1.02);
        }
        .search-form button:active {
            transform: scale(0.97);
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin: 2.5rem 0;
        }
        @media (max-width: 720px) {
            .feedback-grid {
                grid-template-columns: 1fr;
            }
        }
        .feedback-card {
            background: #fff;
            border-radius: 16px;
            padding: 1.8rem 2rem;
            border: 1px solid #e5e0d8;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
        }
        .feedback-card h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 0.6rem;
            font-size: 1.2rem;
        }
        .feedback-card h3 i {
            color: #f9c74f;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 0.2rem;
            margin: 0.6rem 0 1rem;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.15s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f9c74f;
        }
        .feedback-card textarea,
        .feedback-card input[type="text"] {
            width: 100%;
            padding: 0.7rem 1rem;
            border: 2px solid #ddd;
            border-radius: 12px;
            font-size: 0.95rem;
            font-family: inherit;
            resize: vertical;
            transition: border 0.25s;
            background: #fafafa;
            margin-bottom: 0.8rem;
        }
        .feedback-card textarea:focus,
        .feedback-card input[type="text"]:focus {
            border-color: #c84b31;
            background: #fff;
        }
        .feedback-card textarea {
            min-height: 90px;
        }
        .feedback-card .btn-submit {
            padding: 0.7rem 2rem;
            background: #0b2a3b;
            color: #fff;
            border: none;
            border-radius: 40px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.25s, transform 0.1s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .feedback-card .btn-submit:hover {
            background: #1a4a5f;
            transform: scale(1.02);
        }
        .feedback-card .btn-submit:active {
            transform: scale(0.97);
        }
        .friend-links-section {
            background: #0b2a3b;
            color: #e6edf0;
            padding: 2rem 0 1.5rem;
            margin-top: 2rem;
        }
        .friend-links-section h3 {
            color: #f9c74f;
            font-size: 1.2rem;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        friend-link {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem 1.8rem;
            padding: 0.4rem 0;
        }
        friend-link a {
            color: #b0cfde;
            font-size: 0.9rem;
            transition: color 0.2s;
        }
        friend-link a:hover {
            color: #f9c74f;
            text-decoration: underline;
        }
        .site-footer {
            background: #071e2a;
            color: #9bb8c9;
            padding: 1.5rem 0;
            font-size: 0.85rem;
            border-top: 2px solid #1a4a5f;
        }
        .site-footer .footer-inner {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            justify-content: space-between;
            align-items: center;
        }
        .site-footer a {
            color: #b0cfde;
        }
        .site-footer a:hover {
            color: #f9c74f;
        }
        .copyright {
            font-size: 0.82rem;
            opacity: 0.8;
        }
        @media (max-width: 799px) {
            .nav-toggle-label {
                display: block;
            }
            .primary-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                background: rgba(11, 42, 59, 0.98);
                padding: 0.8rem 1rem;
                border-radius: 0 0 16px 16px;
                margin-top: 0.4rem;
                gap: 0.2rem;
            }
            .primary-nav a {
                padding: 0.6rem 1rem;
                border-radius: 10px;
                font-size: 1rem;
            }
            .nav-toggle:checked~.primary-nav {
                display: flex;
            }
            .header-inner {
                position: relative;
            }
            article h1 {
                font-size: 1.8rem;
            }
            article h2 {
                font-size: 1.4rem;
            }
            .search-section {
                padding: 1.2rem 1.2rem;
            }
            .feedback-card {
                padding: 1.2rem 1.2rem;
            }
            .interview-block {
                padding: 1.2rem 1.2rem;
            }
        }
        @media (min-width: 800px) {
            .primary-nav {
                display: flex !important;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 12px;
            }
            article h1 {
                font-size: 1.5rem;
            }
            .my-logo {
                font-size: 1.2rem;
                padding: 0.2rem 0.6rem 0.2rem 0.5rem;
            }
            .my-logo i {
                font-size: 1.4rem;
            }
        }
        :focus-visible {
            outline: 3px solid #f9c74f;
            outline-offset: 2px;
        }
        .kw {
            font-weight: 600;
            color: #c84b31;
        }
        .scroll-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            background: #c84b31;
            color: #fff;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
            transition: background 0.25s, transform 0.2s;
            z-index: 999;
            border: none;
            cursor: pointer;
        }
        .scroll-top:hover {
            background: #a0351f;
            transform: translateY(-3px);
        }
        @media (max-width: 480px) {
            .scroll-top {
                bottom: 1.2rem;
                right: 1.2rem;
                width: 42px;
                height: 42px;
                font-size: 1.2rem;
            }
        }
        @media print {
            .site-header,
            .breadcrumb-wrap,
            .search-section,
            .feedback-grid,
            .scroll-top,
            .nav-toggle-label {
                display: none !important;
            }
            .site-footer {
                break-inside: avoid;
            }
            body {
                background: #fff;
                color: #000;
            }
            a {
                color: #000 !important;
                text-decoration: underline !important;
            }
        }
