        *,
        *::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, 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.7;
            color: #1e2a2f;
            background: #f9f7f2;
            padding: 0;
            margin: 0;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        a {
            color: #b46a2a;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover,
        a:focus-visible {
            color: #7f4b1c;
            text-decoration: underline;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.25;
            color: #0f2c2a;
            margin-top: 2rem;
            margin-bottom: 0.75rem;
        }
        h1 {
            font-size: 2.4rem;
            margin-top: 0.5rem;
            border-bottom: 4px solid #d4a373;
            padding-bottom: 0.5rem;
            display: inline-block;
        }
        h2 {
            font-size: 1.8rem;
            border-left: 5px solid #b46a2a;
            padding-left: 1rem;
        }
        h3 {
            font-size: 1.35rem;
            color: #1e4a47;
        }
        h4 {
            font-size: 1.1rem;
            color: #2d5f5b;
        }
        p {
            margin-bottom: 1.1rem;
        }
        .container {
            max-width: 1180px;
            margin: 0 auto;
            padding: 0 1.25rem;
        }
        .site-header {
            background: linear-gradient(145deg, #0a1f1d 0%, #14302d 100%);
            color: #f5efe6;
            padding: 0.75rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
        }
        .header-inner {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 0.75rem 1.5rem;
        }
        .my-logo {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            font-size: 1.6rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            color: #f5efe6;
            text-decoration: none;
            transition: opacity 0.2s;
        }
        .my-logo:hover {
            opacity: 0.85;
            text-decoration: none;
        }
        .my-logo i {
            color: #f0c040;
            font-size: 1.8rem;
        }
        .my-logo span {
            background: linear-gradient(to right, #f0c040, #e6a830);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #e6d8c3;
            color: #e6d8c3;
            font-size: 1.6rem;
            padding: 0.3rem 0.8rem;
            border-radius: 8px;
            cursor: pointer;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        .primary-nav {
            display: flex;
            flex-wrap: wrap;
            gap: 0.25rem 0.1rem;
        }
        .primary-nav a {
            color: #e6d8c3;
            padding: 0.5rem 1rem;
            border-radius: 30px;
            font-weight: 500;
            font-size: 0.9rem;
            transition: background 0.2s, color 0.2s;
            white-space: nowrap;
        }
        .primary-nav a:hover,
        .primary-nav a:focus-visible {
            background: #b46a2a;
            color: #fff;
            text-decoration: none;
        }
        .primary-nav a.active {
            background: #b46a2a;
            color: #fff;
        }
        .breadcrumb {
            background: #ece6db;
            padding: 0.6rem 1.25rem;
            font-size: 0.85rem;
            border-bottom: 1px solid #d6cdbf;
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.6rem;
        }
        .breadcrumb a {
            color: #5d4a36;
        }
        .breadcrumb a:hover {
            color: #b46a2a;
        }
        .breadcrumb .sep {
            color: #9a8a7a;
        }
        .breadcrumb .current {
            color: #2d5f5b;
            font-weight: 600;
        }
        .hero {
            background: linear-gradient(135deg, #122d29 0%, #1e4a45 50%, #2f5d52 100%);
            color: #f5efe6;
            padding: 3rem 0 4rem;
            margin-bottom: 2.5rem;
            border-radius: 0 0 40px 40px;
            position: relative;
            overflow: hidden;
        }
        .hero::after {
            content: "⚽🏆";
            position: absolute;
            right: -20px;
            bottom: -30px;
            font-size: 12rem;
            opacity: 0.07;
            pointer-events: none;
            transform: rotate(-8deg);
        }
        .hero .container {
            position: relative;
            z-index: 2;
        }
        .hero h1 {
            font-size: 2.8rem;
            margin-bottom: 0.75rem;
            color: #f5efe6;
            border-bottom-color: #f0c040;
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 720px;
            opacity: 0.9;
            margin-bottom: 1.2rem;
        }
        .hero .meta-badge {
            display: inline-block;
            background: #b46a2a;
            padding: 0.3rem 1.2rem;
            border-radius: 40px;
            font-weight: 600;
            font-size: 0.85rem;
            letter-spacing: 0.5px;
            color: #fff;
        }
        .search-section {
            background: #fff;
            border-radius: 20px;
            padding: 1.8rem 2rem;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
            margin-bottom: 2.5rem;
            border: 1px solid #e6ddd0;
        }
        .search-section form {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
            align-items: center;
        }
        .search-section input[type="text"] {
            flex: 1 1 240px;
            padding: 0.75rem 1.2rem;
            border: 2px solid #ddd6ca;
            border-radius: 50px;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.2s;
            background: #fcfaf7;
        }
        .search-section input[type="text"]:focus {
            border-color: #b46a2a;
        }
        .search-section button {
            background: #b46a2a;
            color: #fff;
            border: none;
            padding: 0.75rem 1.8rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .search-section button:hover {
            background: #8f5320;
            transform: scale(1.02);
        }
        .content-layout {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            margin-bottom: 3rem;
        }
        .main-column {
            min-width: 0;
        }
        .sidebar {
            position: sticky;
            top: 110px;
            align-self: start;
        }
        .sidebar-card {
            background: #fff;
            border-radius: 20px;
            padding: 1.6rem 1.8rem;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
            border: 1px solid #ece4d8;
            margin-bottom: 1.5rem;
        }
        .sidebar-card h4 {
            margin-top: 0;
            border-bottom: 2px solid #e6ddd0;
            padding-bottom: 0.5rem;
            margin-bottom: 1rem;
            font-size: 1.1rem;
        }
        .sidebar-link-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .sidebar-link-list li {
            padding: 0.5rem 0;
            border-bottom: 1px solid #f0ebe3;
        }
        .sidebar-link-list li:last-child {
            border-bottom: none;
        }
        .sidebar-link-list a {
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .sidebar-link-list a i {
            color: #b46a2a;
            font-size: 0.85rem;
        }
        .article-body {
            background: #fff;
            border-radius: 24px;
            padding: 2.2rem 2.5rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
            border: 1px solid #ece4d8;
        }
        .article-body .featured-img {
            margin: 1.5rem 0 2rem;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
        }
        .article-body .featured-img img {
            width: 100%;
            object-fit: cover;
            max-height: 480px;
        }
        .article-body .img-caption {
            font-size: 0.85rem;
            color: #6d5e4e;
            text-align: center;
            margin-top: 0.5rem;
            font-style: italic;
        }
        .highlight-box {
            background: #f4efe7;
            border-left: 6px solid #b46a2a;
            padding: 1.2rem 1.8rem;
            border-radius: 0 16px 16px 0;
            margin: 1.8rem 0;
        }
        .highlight-box strong {
            color: #0f2c2a;
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 1.2rem;
            margin: 1.8rem 0;
        }
        .stat-card {
            background: #f6f2eb;
            padding: 1.2rem;
            border-radius: 16px;
            text-align: center;
            border: 1px solid #e6ddd0;
        }
        .stat-card .num {
            font-size: 2rem;
            font-weight: 800;
            color: #b46a2a;
            display: block;
        }
        .stat-card .label {
            font-size: 0.85rem;
            color: #4d3f32;
            font-weight: 500;
        }
        .interview-block {
            background: #eaf3f0;
            border-radius: 20px;
            padding: 1.8rem 2rem;
            margin: 2rem 0;
            border: 1px solid #c5d9d3;
        }
        .interview-block .quote {
            font-size: 1.15rem;
            font-style: italic;
            font-weight: 500;
            color: #0f2c2a;
            padding-left: 1.2rem;
            border-left: 4px solid #b46a2a;
        }
        .interview-block .attribution {
            margin-top: 0.8rem;
            font-weight: 600;
            color: #2d5f5b;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.8rem 0;
        }
        .table-wrap table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.95rem;
            min-width: 520px;
        }
        .table-wrap th {
            background: #0f2c2a;
            color: #f5efe6;
            padding: 0.7rem 1rem;
            text-align: left;
            font-weight: 600;
        }
        .table-wrap td {
            padding: 0.65rem 1rem;
            border-bottom: 1px solid #e6ddd0;
        }
        .table-wrap tr:nth-child(even) td {
            background: #f8f5f0;
        }
        .table-wrap tr:hover td {
            background: #efe9df;
        }
        .interaction-area {
            margin-top: 3rem;
            border-top: 2px solid #e6ddd0;
            padding-top: 2rem;
        }
        .interaction-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }
        .comment-section,
        .rating-section {
            background: #faf8f4;
            border-radius: 20px;
            padding: 1.8rem 2rem;
            border: 1px solid #e6ddd0;
        }
        .comment-section h3,
        .rating-section h3 {
            margin-top: 0;
            font-size: 1.25rem;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .comment-section textarea,
        .comment-section input {
            width: 100%;
            padding: 0.7rem 1rem;
            border: 2px solid #ddd6ca;
            border-radius: 12px;
            font-size: 0.95rem;
            font-family: inherit;
            resize: vertical;
            transition: border-color 0.2s;
            background: #fff;
        }
        .comment-section textarea:focus,
        .comment-section input:focus {
            border-color: #b46a2a;
            outline: none;
        }
        .comment-section .form-group {
            margin-bottom: 1rem;
        }
        .comment-section button,
        .rating-section button {
            background: #b46a2a;
            color: #fff;
            border: none;
            padding: 0.6rem 1.6rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: background 0.2s;
        }
        .comment-section button:hover,
        .rating-section button:hover {
            background: #8f5320;
        }
        .rating-stars {
            display: flex;
            gap: 0.3rem;
            font-size: 2rem;
            color: #d4a373;
            margin: 0.8rem 0;
            cursor: pointer;
            direction: rtl;
        }
        .rating-stars i {
            transition: color 0.15s, transform 0.1s;
        }
        .rating-stars i:hover,
        .rating-stars i:hover~i {
            color: #f0c040;
            transform: scale(1.1);
        }
        .rating-stars input[type="radio"] {
            display: none;
        }
        .rating-stars label {
            cursor: pointer;
            padding: 0 0.1rem;
        }
        .rating-stars label i {
            font-size: 2rem;
            color: #ddd6ca;
            transition: color 0.15s;
        }
        .rating-stars input:checked~label i {
            color: #f0c040;
        }
        .rating-stars label:hover i,
        .rating-stars label:hover~label i {
            color: #f0c040;
        }
        .site-footer {
            background: #0a1f1d;
            color: #d6cdbf;
            padding: 2.5rem 0 1.5rem;
            margin-top: 3.5rem;
            border-top: 4px solid #b46a2a;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2rem;
        }
        .site-footer h4 {
            color: #f5efe6;
            margin-top: 0;
            font-size: 1.1rem;
            border-bottom: 2px solid #2d5f5b;
            padding-bottom: 0.4rem;
            display: inline-block;
        }
        .site-footer a {
            color: #cbb29b;
        }
        .site-footer a:hover {
            color: #f0c040;
        }
        .friend-link {
            display: block;
            padding: 0.3rem 0;
        }
        .friend-link a {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .footer-bottom {
            border-top: 1px solid #2d4a45;
            margin-top: 2rem;
            padding-top: 1.2rem;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 0.5rem;
            font-size: 0.85rem;
        }
        .footer-bottom .copyright {
            color: #9a8a7a;
        }
        @media (max-width: 899px) {
            .content-layout {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 1.2rem;
            }
            .sidebar .sidebar-card:first-child {
                grid-column: 1 / -1;
            }
            .interaction-grid {
                grid-template-columns: 1fr;
            }
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .article-body {
                padding: 1.5rem 1.2rem;
            }
            .header-inner .primary-nav {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #0f2c2a;
                padding: 1rem 0.5rem;
                border-radius: 16px;
                margin-top: 0.5rem;
            }
            .header-inner .primary-nav.open {
                display: flex;
            }
            .header-inner .primary-nav a {
                padding: 0.7rem 1.2rem;
                border-radius: 10px;
            }
            .nav-toggle {
                display: block;
            }
        }
        @media (max-width: 599px) {
            .sidebar {
                grid-template-columns: 1fr;
            }
            .hero h1 {
                font-size: 1.7rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .stat-grid {
                grid-template-columns: 1fr 1fr;
            }
            .search-section form {
                flex-direction: column;
            }
            .search-section input[type="text"] {
                flex: 1 1 auto;
                width: 100%;
            }
            .search-section button {
                width: 100%;
                justify-content: center;
            }
            .breadcrumb {
                font-size: 0.75rem;
                padding: 0.4rem 1rem;
            }
            .my-logo {
                font-size: 1.2rem;
            }
        }
        @media (min-width: 900px) {
            .nav-toggle {
                display: none !important;
            }
            .primary-nav {
                display: flex !important;
            }
        }
        ::-webkit-scrollbar {
            width: 8px;
            height: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #ece6db;
        }
        ::-webkit-scrollbar-thumb {
            background: #b46a2a;
            border-radius: 10px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #8f5320;
        }
        .anchor-offset {
            scroll-margin-top: 100px;
        }
        .eaat-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            background: #eaf3f0;
            padding: 0.3rem 1rem;
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: 600;
            color: #1e4a47;
            margin-bottom: 1rem;
        }
