* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background: #f4f7fb;
            color: #1e293b;
            line-height: 1.7;
            font-size: 16px;
        }
        a {
            text-decoration: none;
            color: #0a4b7a;
            transition: color 0.2s;
        }
        a:hover {
            color: #d62828;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #0a2a44, #1a4a6e);
            color: #fff;
            padding: 16px 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: 12px;
        }
        .my-logo {
            font-size: 28px;
            font-weight: 900;
            letter-spacing: 1px;
            color: #fff;
            display: flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, 0.08);
            padding: 6px 18px 6px 14px;
            border-radius: 40px;
            border: 1px solid rgba(255, 255, 255, 0.15);
            transition: all 0.3s;
        }
        .my-logo i {
            color: #facc15;
            font-size: 26px;
        }
        .my-logo:hover {
            background: rgba(255, 255, 255, 0.18);
            transform: scale(1.02);
        }
        .my-logo span {
            font-weight: 300;
            color: #b8d4e8;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 28px;
            cursor: pointer;
            padding: 6px 10px;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(255, 255, 255, 0.12);
        }
        .main-nav {
            display: flex;
            gap: 6px;
            flex-wrap: wrap;
            align-items: center;
        }
        .main-nav a {
            color: #e0edf7;
            padding: 8px 16px;
            border-radius: 30px;
            font-size: 15px;
            font-weight: 500;
            transition: all 0.25s;
            white-space: nowrap;
        }
        .main-nav a:hover,
        .main-nav a.active {
            background: rgba(255, 255, 255, 0.15);
            color: #fff;
        }
        .main-nav a i {
            margin-right: 6px;
            font-size: 14px;
        }
        .breadcrumb-wrap {
            background: #fff;
            border-bottom: 1px solid #e2e8f0;
            padding: 10px 0;
            font-size: 14px;
            color: #475569;
        }
        .breadcrumb-wrap .container {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 4px;
        }
        .breadcrumb-wrap a {
            color: #0a4b7a;
        }
        .breadcrumb-wrap a:hover {
            text-decoration: underline;
        }
        .breadcrumb-wrap span.sep {
            margin: 0 6px;
            color: #94a3b8;
        }
        .breadcrumb-wrap .current {
            color: #1e293b;
            font-weight: 600;
        }
        .hero-section {
            background: linear-gradient(135deg, #0a2a44 0%, #1a4a6e 60%, #2d6a9e 100%);
            color: #fff;
            padding: 48px 0 40px;
            margin-bottom: 36px;
            border-radius: 0 0 48px 48px;
            position: relative;
            overflow: hidden;
        }
        .hero-section::after {
            content: "⚽";
            position: absolute;
            right: -20px;
            bottom: -30px;
            font-size: 200px;
            opacity: 0.06;
        }
        .hero-section h1 {
            font-size: 42px;
            font-weight: 900;
            line-height: 1.2;
            margin-bottom: 16px;
            letter-spacing: -0.5px;
        }
        .hero-section h1 i {
            color: #facc15;
            margin-right: 12px;
        }
        .hero-section p {
            font-size: 18px;
            max-width: 720px;
            opacity: 0.9;
            margin-bottom: 8px;
        }
        .hero-section .meta-info {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 16px;
            font-size: 14px;
            opacity: 0.8;
        }
        .hero-section .meta-info i {
            margin-right: 6px;
        }
        .page-grid {
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 40px;
            margin-bottom: 50px;
        }
        .main-content {
            min-width: 0;
        }
        .sidebar {
            min-width: 0;
        }
        .article-body h2 {
            font-size: 30px;
            font-weight: 800;
            color: #0a2a44;
            margin: 48px 0 18px;
            padding-bottom: 10px;
            border-bottom: 4px solid #facc15;
            display: inline-block;
        }
        .article-body h3 {
            font-size: 24px;
            font-weight: 700;
            color: #1a4a6e;
            margin: 32px 0 14px;
        }
        .article-body h4 {
            font-size: 20px;
            font-weight: 600;
            color: #2d6a9e;
            margin: 24px 0 10px;
        }
        .article-body p {
            margin-bottom: 18px;
            font-size: 16px;
            color: #1e293b;
        }
        .article-body ul,
        .article-body ol {
            margin: 0 0 20px 24px;
        }
        .article-body li {
            margin-bottom: 8px;
        }
        .article-body strong {
            color: #0a2a44;
        }
        .article-body .highlight-box {
            background: #eef6ff;
            border-left: 5px solid #0a4b7a;
            padding: 20px 24px;
            border-radius: 0 12px 12px 0;
            margin: 24px 0;
        }
        .article-body .highlight-box i {
            color: #0a4b7a;
            margin-right: 10px;
        }
        .article-body .emoji-big {
            font-size: 24px;
            margin-right: 6px;
        }
        .article-image {
            margin: 28px 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.10);
        }
        .article-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        .article-image figcaption {
            background: #fff;
            padding: 12px 18px;
            font-size: 14px;
            color: #475569;
            border-top: 1px solid #e2e8f0;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            gap: 16px;
            margin: 24px 0;
        }
        .stat-card {
            background: #fff;
            border-radius: 16px;
            padding: 20px 16px;
            text-align: center;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
            border: 1px solid #e2e8f0;
            transition: transform 0.2s;
        }
        .stat-card:hover {
            transform: translateY(-4px);
        }
        .stat-card .num {
            font-size: 32px;
            font-weight: 900;
            color: #0a4b7a;
        }
        .stat-card .label {
            font-size: 14px;
            color: #475569;
            margin-top: 4px;
        }
        .stat-card i {
            font-size: 28px;
            color: #facc15;
            margin-bottom: 6px;
        }
        .link-list-inline {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin: 18px 0;
        }
        .link-list-inline a {
            background: #fff;
            border: 1px solid #d0ddee;
            padding: 6px 16px;
            border-radius: 30px;
            font-size: 14px;
            font-weight: 500;
            transition: all 0.2s;
        }
        .link-list-inline a:hover {
            background: #0a4b7a;
            color: #fff;
            border-color: #0a4b7a;
        }
        .search-section {
            background: #fff;
            border-radius: 16px;
            padding: 28px 30px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            margin: 40px 0;
            border: 1px solid #e2e8f0;
        }
        .search-section h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .search-form {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            margin-top: 12px;
        }
        .search-form input {
            flex: 1;
            min-width: 200px;
            padding: 14px 20px;
            border: 2px solid #d0ddee;
            border-radius: 40px;
            font-size: 16px;
            outline: none;
            transition: border 0.3s;
        }
        .search-form input:focus {
            border-color: #0a4b7a;
        }
        .search-form button {
            background: #0a4b7a;
            color: #fff;
            border: none;
            padding: 14px 32px;
            border-radius: 40px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.25s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-form button:hover {
            background: #d62828;
        }
        .interaction-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin: 40px 0;
        }
        .comment-box,
        .rating-box {
            background: #fff;
            border-radius: 16px;
            padding: 28px 30px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            border: 1px solid #e2e8f0;
        }
        .comment-box h3,
        .rating-box h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 22px;
        }
        .comment-form textarea,
        .comment-form input {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #d0ddee;
            border-radius: 12px;
            font-size: 15px;
            outline: none;
            transition: border 0.3s;
            margin-bottom: 12px;
            font-family: inherit;
            resize: vertical;
        }
        .comment-form textarea:focus,
        .comment-form input:focus {
            border-color: #0a4b7a;
        }
        .comment-form textarea {
            min-height: 100px;
        }
        .comment-form button,
        .rating-box button {
            background: #0a4b7a;
            color: #fff;
            border: none;
            padding: 12px 28px;
            border-radius: 40px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.25s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .comment-form button:hover,
        .rating-box button:hover {
            background: #d62828;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 6px;
            margin: 14px 0 18px;
            font-size: 32px;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            cursor: pointer;
            color: #cbd5e1;
            transition: color 0.2s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #facc15;
        }
        .sidebar-card {
            background: #fff;
            border-radius: 16px;
            padding: 24px 22px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            border: 1px solid #e2e8f0;
            margin-bottom: 28px;
        }
        .sidebar-card h3 {
            font-size: 20px;
            font-weight: 700;
            color: #0a2a44;
            margin-bottom: 14px;
            display: flex;
            align-items: center;
            gap: 8px;
            border-bottom: 3px solid #facc15;
            padding-bottom: 8px;
        }
        .sidebar-card ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .sidebar-card ul li {
            padding: 8px 0;
            border-bottom: 1px solid #f1f5f9;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .sidebar-card ul li::before {
            content: "⚽";
            font-size: 14px;
        }
        .sidebar-card ul li a {
            font-weight: 500;
        }
        .site-footer {
            background: #0a2a44;
            color: #cbd5e1;
            padding: 40px 0 20px;
            margin-top: 50px;
            border-radius: 32px 32px 0 0;
        }
        .site-footer .container {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 30px;
        }
        .site-footer h4 {
            color: #fff;
            margin-bottom: 14px;
            font-size: 18px;
        }
        .site-footer a {
            color: #b8d4e8;
        }
        .site-footer a:hover {
            color: #facc15;
        }
        .site-footer .copyright {
            grid-column: 1 / -1;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 18px;
            margin-top: 18px;
            text-align: center;
            font-size: 14px;
        }
        friend-link {
            display: block;
            margin-top: 8px;
        }
        friend-link a {
            display: inline-block;
            margin-right: 16px;
            padding: 4px 0;
        }
        @media (max-width: 992px) {
            .page-grid {
                grid-template-columns: 1fr;
            }
            .site-footer .container {
                grid-template-columns: 1fr 1fr;
            }
            .hero-section h1 {
                font-size: 32px;
            }
            .interaction-grid {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                background: rgba(0, 0, 0, 0.25);
                padding: 12px 16px;
                border-radius: 16px;
                margin-top: 8px;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 10px 14px;
                border-radius: 10px;
            }
            .header-inner {
                align-items: center;
            }
            .hero-section {
                padding: 28px 0 24px;
            }
            .hero-section h1 {
                font-size: 26px;
            }
            .hero-section p {
                font-size: 16px;
            }
            .site-footer .container {
                grid-template-columns: 1fr;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form input {
                min-width: auto;
            }
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .article-body h2 {
                font-size: 24px;
            }
            .article-body h3 {
                font-size: 20px;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 14px;
            }
            .my-logo {
                font-size: 20px;
                padding: 4px 12px;
            }
            .hero-section h1 {
                font-size: 22px;
            }
            .stats-grid {
                grid-template-columns: 1fr 1fr;
                gap: 10px;
            }
            .stat-card {
                padding: 14px 10px;
            }
            .stat-card .num {
                font-size: 24px;
            }
            .sidebar-card {
                padding: 16px;
            }
            .comment-box,
            .rating-box,
            .search-section {
                padding: 18px 16px;
            }
        }
        .mt-0 {
            margin-top: 0;
        }
        .mb-0 {
            margin-bottom: 0;
        }
        .text-center {
            text-align: center;
        }
        .flex-wrap {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            align-items: center;
        }
        .gap-8 {
            gap: 8px;
        }
        .rounded-full {
            border-radius: 9999px;
        }
