*,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        :root {
            --primary: #1a3a5c;
            --primary-light: #2a5a8c;
            --accent: #f5a623;
            --accent-dark: #d4891a;
            --bg: #f8f9fa;
            --card-bg: #ffffff;
            --text: #222222;
            --text-light: #555555;
            --border: #e0e0e0;
            --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            --radius: 12px;
            --max-width: 1200px;
            --header-bg: linear-gradient(135deg, #0f2a44 0%, #1a4a6e 100%);
            --footer-bg: #0f1a2e;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Roboto, -apple-system, BlinkMacSystemFont, sans-serif;
            background: var(--bg);
            color: var(--text);
            line-height: 1.7;
            font-size: 16px;
            -webkit-font-smoothing: antialiased;
        }
        a {
            color: var(--primary-light);
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: var(--accent-dark);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: var(--radius);
        }
        .container {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: var(--header-bg);
            color: #fff;
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 900;
            letter-spacing: -0.5px;
            background: linear-gradient(to right, #f5a623, #f7c948);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: none;
            transition: transform 0.3s;
        }
        .my-logo:hover {
            transform: scale(1.02);
        }
        .my-logo small {
            font-size: 0.6rem;
            display: block;
            -webkit-text-fill-color: rgba(255, 255, 255, 0.7);
            color: rgba(255, 255, 255, 0.7);
            font-weight: 400;
            letter-spacing: 1px;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.6rem;
            cursor: pointer;
            padding: 8px;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        .main-nav {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            align-items: center;
        }
        .main-nav a {
            color: rgba(255, 255, 255, 0.85);
            padding: 8px 16px;
            border-radius: 30px;
            font-weight: 500;
            font-size: 0.95rem;
            transition: all 0.25s;
            border: 1px solid transparent;
        }
        .main-nav a:hover,
        .main-nav a.active {
            color: #fff;
            background: rgba(255, 255, 255, 0.12);
            border-color: rgba(255, 255, 255, 0.2);
        }
        .main-nav a i {
            margin-right: 6px;
        }
        .breadcrumb {
            background: #fff;
            padding: 12px 0;
            border-bottom: 1px solid var(--border);
            font-size: 0.9rem;
        }
        .breadcrumb ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
            align-items: center;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 12px;
            color: #aaa;
            font-size: 1.1rem;
        }
        .breadcrumb a {
            color: var(--primary-light);
        }
        .breadcrumb .current {
            color: var(--text-light);
            font-weight: 500;
        }
        .hero {
            background: linear-gradient(135deg, #1a3a5c 0%, #2a5a8c 100%);
            color: #fff;
            padding: 60px 0 50px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .hero::after {
            content: "⚽";
            position: absolute;
            right: -30px;
            bottom: -30px;
            font-size: 200px;
            opacity: 0.06;
            transform: rotate(15deg);
        }
        .hero h1 {
            font-size: 2.8rem;
            font-weight: 900;
            line-height: 1.2;
            margin-bottom: 16px;
            letter-spacing: -0.5px;
        }
        .hero h1 span {
            background: linear-gradient(to right, #f5a623, #f7c948);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero p {
            font-size: 1.2rem;
            opacity: 0.9;
            max-width: 720px;
            margin: 0 auto 24px;
        }
        .hero .meta-info {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
            font-size: 0.95rem;
            opacity: 0.8;
        }
        .hero .meta-info i {
            margin-right: 6px;
            color: var(--accent);
        }
        .search-section {
            background: #fff;
            padding: 30px 0;
            border-bottom: 1px solid var(--border);
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            border: 1px solid var(--border);
            transition: box-shadow 0.3s;
        }
        .search-form:focus-within {
            box-shadow: 0 4px 30px rgba(26, 58, 92, 0.12);
        }
        .search-form input {
            flex: 1;
            padding: 16px 24px;
            border: none;
            outline: none;
            font-size: 1rem;
            background: #fff;
        }
        .search-form button {
            background: var(--primary);
            color: #fff;
            border: none;
            padding: 16px 32px;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.3s;
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 600;
        }
        .search-form button:hover {
            background: var(--primary-light);
        }
        .main-content {
            padding: 50px 0 60px;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 48px;
        }
        .content-article {
            min-width: 0;
        }
        .content-article h2 {
            font-size: 2rem;
            font-weight: 800;
            color: var(--primary);
            margin: 48px 0 16px;
            padding-bottom: 8px;
            border-bottom: 3px solid var(--accent);
            display: inline-block;
        }
        .content-article h2:first-of-type {
            margin-top: 0;
        }
        .content-article h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-light);
            margin: 32px 0 12px;
        }
        .content-article h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--text);
            margin: 24px 0 8px;
        }
        .content-article p {
            margin-bottom: 18px;
            color: var(--text);
        }
        .content-article ul,
        .content-article ol {
            margin: 16px 0 24px 24px;
        }
        .content-article li {
            margin-bottom: 8px;
        }
        .content-article .highlight-box {
            background: #f0f6fe;
            border-left: 4px solid var(--accent);
            padding: 20px 24px;
            border-radius: 0 var(--radius) var(--radius) 0;
            margin: 24px 0;
        }
        .content-article .highlight-box strong {
            color: var(--primary);
        }
        .content-article .stat-badge {
            display: inline-block;
            background: var(--primary);
            color: #fff;
            padding: 2px 14px;
            border-radius: 30px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-right: 6px;
        }
        .featured-image {
            margin: 32px 0;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .featured-image figcaption {
            background: #fff;
            padding: 12px 20px;
            font-size: 0.9rem;
            color: var(--text-light);
            border-top: 1px solid var(--border);
            font-style: italic;
        }
        .sidebar {
            position: sticky;
            top: 120px;
            align-self: start;
        }
        .sidebar-card {
            background: #fff;
            border-radius: var(--radius);
            padding: 24px;
            box-shadow: var(--shadow);
            margin-bottom: 28px;
            border: 1px solid var(--border);
        }
        .sidebar-card h3 {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .sidebar-card ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .sidebar-card li {
            padding: 6px 0;
            border-bottom: 1px solid #f0f0f0;
        }
        .sidebar-card li:last-child {
            border-bottom: none;
        }
        .sidebar-card a {
            font-weight: 500;
            display: block;
            padding: 4px 0;
        }
        .sidebar-card a:hover {
            color: var(--accent-dark);
            padding-left: 4px;
        }
        .interaction-section {
            background: #fff;
            border-radius: var(--radius);
            padding: 32px;
            box-shadow: var(--shadow);
            margin-top: 48px;
            border: 1px solid var(--border);
        }
        .interaction-section h2 {
            margin-top: 0 !important;
            border-bottom: none !important;
            display: block !important;
        }
        .interaction-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
            margin-top: 24px;
        }
        .comment-form textarea,
        .comment-form input,
        .score-form select,
        .score-form input {
            width: 100%;
            padding: 12px 16px;
            border: 1px solid var(--border);
            border-radius: 8px;
            font-size: 1rem;
            font-family: inherit;
            transition: border 0.3s;
            background: #fafafa;
        }
        .comment-form textarea:focus,
        .comment-form input:focus,
        .score-form select:focus {
            border-color: var(--primary-light);
            outline: none;
            background: #fff;
        }
        .comment-form textarea {
            min-height: 100px;
            resize: vertical;
        }
        .comment-form .form-group,
        .score-form .form-group {
            margin-bottom: 16px;
        }
        .comment-form label,
        .score-form label {
            font-weight: 600;
            display: block;
            margin-bottom: 4px;
            font-size: 0.95rem;
        }
        .btn-primary {
            background: var(--primary);
            color: #fff;
            border: none;
            padding: 12px 32px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .btn-primary:hover {
            background: var(--primary-light);
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(26, 58, 92, 0.2);
        }
        .star-rating {
            display: flex;
            gap: 6px;
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
        }
        .star-rating .star {
            transition: color 0.2s, transform 0.2s;
        }
        .star-rating .star:hover,
        .star-rating .star.selected {
            color: var(--accent);
            transform: scale(1.1);
        }
        .site-footer {
            background: var(--footer-bg);
            color: rgba(255, 255, 255, 0.85);
            padding: 48px 0 32px;
            margin-top: 60px;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 32px;
        }
        .footer-inner h4 {
            color: var(--accent);
            font-size: 1.1rem;
            margin-bottom: 16px;
            font-weight: 700;
        }
        .footer-inner p,
        .footer-inner a {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.95rem;
        }
        .footer-inner a:hover {
            color: var(--accent);
        }
        .footer-inner ul {
            list-style: none;
            padding: 0;
        }
        .footer-inner li {
            padding: 4px 0;
        }
        friend-link {
            display: block;
            margin-top: 12px;
            font-size: 0.95rem;
        }
        friend-link a {
            color: rgba(255, 255, 255, 0.7);
            margin-right: 16px;
            display: inline-block;
        }
        friend-link a:hover {
            color: var(--accent);
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding-top: 24px;
            text-align: center;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.5);
        }
        .footer-bottom strong {
            color: rgba(255, 255, 255, 0.8);
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
                margin-top: 40px;
            }
            .footer-inner {
                grid-template-columns: 1fr 1fr;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                background: rgba(255, 255, 255, 0.05);
                padding: 16px 0;
                margin-top: 12px;
                border-radius: 12px;
                gap: 4px;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 12px 20px;
                width: 100%;
                border-radius: 0;
                border: none;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .interaction-grid {
                grid-template-columns: 1fr;
            }
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .search-form {
                flex-direction: column;
                border-radius: 16px;
            }
            .search-form input {
                padding: 14px 20px;
            }
            .search-form button {
                padding: 14px 20px;
                justify-content: center;
            }
            .breadcrumb ul {
                font-size: 0.8rem;
                gap: 4px 8px;
            }
            .breadcrumb li+li::before {
                margin-right: 8px;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 14px;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .hero {
                padding: 40px 0 30px;
            }
            .hero h1 {
                font-size: 1.5rem;
            }
            .content-article h2 {
                font-size: 1.5rem;
            }
            .content-article h3 {
                font-size: 1.2rem;
            }
            .interaction-section {
                padding: 20px;
            }
        }
        .fade-up {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }
        .fade-up.visible {
            opacity: 1;
            transform: translateY(0);
        }
        .skip-link {
            position: absolute;
            top: -100px;
            left: 0;
            background: var(--accent);
            color: #000;
            padding: 8px 20px;
            z-index: 10000;
            font-weight: 600;
            transition: top 0.3s;
        }
        .skip-link:focus {
            top: 0;
        }
