        *,
        *::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, BlinkMacSystemFont, Roboto, 'Helvetica Neue', sans-serif;
            line-height: 1.7;
            color: #1e2a3a;
            background: #f9fafc;
            padding: 0;
            margin: 0;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: #0066cc;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #003d7a;
            text-decoration: underline;
        }
        ul,
        ol {
            padding-left: 1.5rem;
            margin-bottom: 1.2rem;
        }
        li {
            margin-bottom: 0.5rem;
        }
        p {
            margin-bottom: 1.2rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.3;
            color: #0b1c2f;
            margin-top: 2rem;
            margin-bottom: 0.8rem;
        }
        h1 {
            font-size: 2.4rem;
            margin-top: 0.5rem;
            border-bottom: 4px solid #ff6b35;
            padding-bottom: 0.5rem;
            display: inline-block;
        }
        h2 {
            font-size: 1.8rem;
            border-left: 5px solid #ff6b35;
            padding-left: 1rem;
        }
        h3 {
            font-size: 1.4rem;
            color: #1e3a5f;
        }
        h4 {
            font-size: 1.15rem;
            color: #2a4a6f;
            font-weight: 600;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.2rem;
        }
        .site-header {
            background: linear-gradient(135deg, #0b1c2f 0%, #1a3a5c 100%);
            color: #fff;
            padding: 0.8rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        }
        .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: #ff6b35;
            letter-spacing: -0.5px;
            text-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
            transition: transform 0.25s ease;
        }
        .my-logo:hover {
            transform: scale(1.04);
            color: #ff8c5a;
            text-decoration: none;
        }
        .my-logo .logo-sub {
            font-size: 0.7rem;
            display: block;
            color: #aac9e8;
            letter-spacing: 2px;
            font-weight: 300;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid rgba(255, 255, 255, 0.5);
            color: #fff;
            font-size: 1.6rem;
            padding: 0.3rem 0.8rem;
            border-radius: 6px;
            cursor: pointer;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        .primary-nav {
            display: flex;
            gap: 0.2rem;
            flex-wrap: wrap;
            align-items: center;
        }
        .primary-nav a {
            color: #e2edf7;
            padding: 0.5rem 1rem;
            border-radius: 6px;
            font-size: 0.92rem;
            font-weight: 500;
            transition: background 0.2s, color 0.2s;
        }
        .primary-nav a:hover {
            background: rgba(255, 107, 53, 0.25);
            color: #ffb08a;
            text-decoration: none;
        }
        .breadcrumb {
            background: #eef3f8;
            padding: 0.6rem 0;
            font-size: 0.88rem;
            border-bottom: 1px solid #dce4ec;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.6rem;
            padding: 0;
            margin: 0;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.6rem;
            color: #7a8a9e;
            font-weight: 700;
        }
        .breadcrumb a {
            color: #2a5a7a;
        }
        .breadcrumb .current {
            color: #7a8a9e;
        }
        .hero {
            background: linear-gradient(145deg, #0b1c2f 0%, #1f4a6e 100%);
            color: #fff;
            padding: 3rem 0 2.5rem;
            position: relative;
            overflow: hidden;
        }
        .hero::after {
            content: "⚽";
            position: absolute;
            right: -30px;
            bottom: -40px;
            font-size: 16rem;
            opacity: 0.06;
            pointer-events: none;
        }
        .hero h1 {
            color: #fff;
            border-bottom-color: #ff6b35;
            font-size: 2.6rem;
            margin-top: 0;
        }
        .hero p {
            font-size: 1.15rem;
            max-width: 750px;
            color: #c8dcef;
            margin-top: 0.6rem;
        }
        .hero .meta-info {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            margin-top: 1.2rem;
            font-size: 0.95rem;
            color: #b0cce0;
        }
        .hero .meta-info i {
            margin-right: 0.4rem;
            color: #ff6b35;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            padding: 2.5rem 0;
        }
        .main-article {
            background: #fff;
            border-radius: 16px;
            padding: 2rem 2.2rem;
            box-shadow: 0 2px 30px rgba(0, 0, 0, 0.04);
        }
        .sidebar {
            background: #fff;
            border-radius: 16px;
            padding: 1.8rem 1.5rem;
            box-shadow: 0 2px 30px rgba(0, 0, 0, 0.04);
            align-self: start;
            position: sticky;
            top: 90px;
        }
        .sidebar h3 {
            font-size: 1.2rem;
            margin-top: 0;
            border-bottom: 3px solid #ff6b35;
            padding-bottom: 0.5rem;
            margin-bottom: 1rem;
        }
        .sidebar ul {
            list-style: none;
            padding: 0;
        }
        .sidebar li {
            margin-bottom: 0.5rem;
            border-bottom: 1px solid #edf2f7;
            padding-bottom: 0.5rem;
        }
        .sidebar a {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.92rem;
        }
        .sidebar a i {
            color: #ff6b35;
            width: 1.2rem;
            text-align: center;
        }
        .featured-media {
            margin: 1.8rem 0 2.2rem;
            border-radius: 14px;
            overflow: hidden;
            background: #eef3f8;
            position: relative;
        }
        .featured-media img {
            width: 100%;
            max-height: 420px;
            object-fit: cover;
        }
        .featured-media .img-caption {
            padding: 0.8rem 1.2rem;
            background: #f3f7fc;
            font-size: 0.88rem;
            color: #3a5a7a;
            border-top: 1px solid #dce4ec;
        }
        .featured-media .img-caption i {
            margin-right: 0.4rem;
            color: #ff6b35;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0 2rem;
            font-size: 0.95rem;
            background: #f8fafc;
            border-radius: 10px;
            overflow: hidden;
        }
        .data-table th {
            background: #0b1c2f;
            color: #fff;
            padding: 0.8rem 1rem;
            text-align: left;
            font-weight: 600;
        }
        .data-table td {
            padding: 0.75rem 1rem;
            border-bottom: 1px solid #dce4ec;
        }
        .data-table tr:nth-child(even) td {
            background: #f1f6fc;
        }
        .data-table tr:hover td {
            background: #e6f0fa;
        }
        .form-section {
            background: #f4f8fe;
            border-radius: 14px;
            padding: 1.8rem 2rem;
            margin: 2rem 0 1.5rem;
            border: 1px solid #dce8f0;
        }
        .form-section h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .form-group {
            margin-bottom: 1.2rem;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 0.3rem;
            font-size: 0.92rem;
            color: #1e3a5f;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.7rem 1rem;
            border: 1px solid #c8d6e4;
            border-radius: 8px;
            font-size: 1rem;
            font-family: inherit;
            background: #fff;
            transition: border 0.2s, box-shadow 0.2s;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #ff6b35;
            box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.15);
        }
        .form-group textarea {
            min-height: 100px;
            resize: vertical;
        }
        .btn {
            background: #ff6b35;
            color: #fff;
            border: none;
            padding: 0.75rem 2rem;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .btn:hover {
            background: #e55a28;
            transform: translateY(-1px);
            text-decoration: none;
            color: #fff;
        }
        .btn-secondary {
            background: #2a5a7a;
        }
        .btn-secondary:hover {
            background: #1a4a6a;
        }
        .rating-stars {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 0.2rem;
            font-size: 1.6rem;
        }
        .rating-stars input {
            display: none;
        }
        .rating-stars label {
            cursor: pointer;
            color: #c8d6e4;
            transition: color 0.2s;
        }
        .rating-stars label:hover,
        .rating-stars label:hover~label,
        .rating-stars input:checked~label {
            color: #ffb82e;
        }
        .highlight-box {
            background: linear-gradient(135deg, #f0f7fe, #e8f0f8);
            border-left: 5px solid #ff6b35;
            padding: 1.2rem 1.8rem;
            border-radius: 0 10px 10px 0;
            margin: 1.8rem 0;
        }
        .highlight-box p:last-child {
            margin-bottom: 0;
        }
        .highlight-box .quote-attribution {
            font-style: italic;
            color: #3a6a8a;
            font-size: 0.92rem;
            margin-top: 0.5rem;
        }
        .player-interview {
            background: #faf5ef;
            border-radius: 14px;
            padding: 1.5rem 2rem;
            margin: 2rem 0;
            border: 1px solid #f0e4d8;
        }
        .player-interview h3 {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            color: #3a2a1a;
        }
        .site-footer {
            background: #0b1c2f;
            color: #c8dcef;
            padding: 2.5rem 0 1.5rem;
            margin-top: 2rem;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .site-footer h4 {
            color: #ff8c5a;
            margin-top: 0;
            font-size: 1.1rem;
            border-bottom: 2px solid rgba(255, 107, 53, 0.3);
            padding-bottom: 0.4rem;
            margin-bottom: 0.8rem;
        }
        .site-footer a {
            color: #aac9e8;
        }
        .site-footer a:hover {
            color: #ffb08a;
        }
        friend-link {
            display: block;
            margin: 1rem 0;
        }
        friend-link a {
            display: inline-block;
            margin-right: 1.2rem;
            margin-bottom: 0.5rem;
            padding: 0.2rem 0;
        }
        .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding-top: 1.5rem;
            text-align: center;
            font-size: 0.88rem;
            color: #7a9ab8;
        }
        .copyright strong {
            color: #c8dcef;
        }
        @media (max-width: 1024px) {
            .content-wrapper {
                grid-template-columns: 1fr;
                gap: 1.8rem;
            }
            .sidebar {
                position: static;
                order: 2;
            }
            .main-article {
                order: 1;
            }
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .primary-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                background: rgba(11, 28, 47, 0.98);
                padding: 1rem 0.5rem;
                border-radius: 0 0 12px 12px;
                gap: 0.2rem;
                margin-top: 0.5rem;
            }
            .primary-nav.open {
                display: flex;
            }
            .primary-nav a {
                padding: 0.7rem 1rem;
                border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .main-article {
                padding: 1.2rem 1rem;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            .data-table {
                font-size: 0.82rem;
            }
            .data-table th,
            .data-table td {
                padding: 0.5rem 0.6rem;
            }
            .form-section {
                padding: 1.2rem 1rem;
            }
            .sidebar {
                padding: 1.2rem 1rem;
            }
            .hero {
                padding: 2rem 0 1.5rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .player-interview {
                padding: 1rem 1.2rem;
            }
            .highlight-box {
                padding: 1rem 1.2rem;
            }
        }
        @media (max-width: 480px) {
            .my-logo {
                font-size: 1.4rem;
            }
            .header-inner {
                gap: 0.4rem;
            }
            .hero h1 {
                font-size: 1.5rem;
            }
            .hero .meta-info {
                font-size: 0.82rem;
                gap: 0.8rem;
                flex-direction: column;
            }
            .container {
                padding: 0 0.8rem;
            }
            .main-article {
                padding: 0.8rem 0.8rem;
            }
            .data-table {
                font-size: 0.75rem;
            }
            .data-table th,
            .data-table td {
                padding: 0.4rem 0.4rem;
            }
        }
        @media print {
            .site-header {
                position: static;
                background: #fff;
                color: #000;
            }
            .site-header a {
                color: #000;
            }
            .nav-toggle {
                display: none !important;
            }
            .primary-nav {
                display: flex !important;
            }
            .sidebar {
                position: static;
            }
            .site-footer {
                background: #f4f4f4;
                color: #333;
            }
            .hero {
                background: #f4f4f4;
                color: #000;
            }
            .hero h1 {
                color: #000;
            }
            .hero p {
                color: #333;
            }
        }
