* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary: #0a2f44;
            --primary-light: #134b6b;
            --accent: #e85d04;
            --accent-hover: #f48c06;
            --gold: #ffb703;
            --bg: #f8f9fa;
            --bg-card: #ffffff;
            --text: #1e1e1e;
            --text-light: #4a4a4a;
            --border: #dee2e6;
            --shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
            --radius: 16px;
            --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --font: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
            --max-width: 1200px;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: var(--font);
            background: var(--bg);
            color: var(--text);
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
        }
        a {
            color: var(--primary-light);
            text-decoration: none;
            transition: color var(--transition);
        }
        a:hover {
            color: var(--accent);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, var(--primary) 0%, #0d3b56 100%);
            color: #fff;
            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;
            padding: 12px 20px;
            max-width: var(--max-width);
            margin: 0 auto;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            color: #fff;
            background: linear-gradient(135deg, var(--gold), #ffe45c);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            transition: opacity var(--transition);
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .my-logo:hover {
            opacity: 0.85;
            -webkit-text-fill-color: var(--gold);
        }
        .my-logo i {
            -webkit-text-fill-color: var(--gold);
            font-size: 1.6rem;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid rgba(255, 255, 255, 0.3);
            color: #fff;
            font-size: 1.5rem;
            padding: 6px 12px;
            border-radius: 8px;
            cursor: pointer;
            transition: var(--transition);
        }
        .nav-toggle:hover {
            border-color: var(--gold);
            color: var(--gold);
        }
        .main-nav {
            display: flex;
            gap: 6px;
            flex-wrap: wrap;
            align-items: center;
        }
        .main-nav a {
            color: rgba(255, 255, 255, 0.85);
            padding: 8px 16px;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 500;
            transition: var(--transition);
            white-space: nowrap;
        }
        .main-nav a:hover,
        .main-nav a.active {
            background: rgba(255, 255, 255, 0.15);
            color: var(--gold);
        }
        .main-nav a i {
            margin-right: 6px;
            font-size: 0.85rem;
        }
        .breadcrumb-wrap {
            background: #fff;
            border-bottom: 1px solid var(--border);
            padding: 10px 0;
            font-size: 0.85rem;
        }
        .breadcrumb-wrap .container {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            align-items: center;
        }
        .breadcrumb-wrap a {
            color: var(--text-light);
        }
        .breadcrumb-wrap a:hover {
            color: var(--accent);
        }
        .breadcrumb-wrap span {
            color: var(--text-light);
        }
        .breadcrumb-wrap .sep {
            color: #adb5bd;
            margin: 0 4px;
        }
        .hero {
            background: linear-gradient(135deg, var(--primary) 0%, #1a5a7a 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: 260px;
            opacity: 0.06;
            transform: rotate(15deg);
            pointer-events: none;
        }
        .hero h1 {
            font-size: clamp(2.2rem, 6vw, 4rem);
            font-weight: 900;
            line-height: 1.15;
            margin-bottom: 16px;
            letter-spacing: -0.5px;
        }
        .hero h1 i {
            color: var(--gold);
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 720px;
            margin: 0 auto 24px;
            opacity: 0.9;
            font-weight: 300;
        }
        .hero .last-updated {
            display: inline-block;
            background: rgba(255, 255, 255, 0.12);
            padding: 6px 20px;
            border-radius: 30px;
            font-size: 0.85rem;
            backdrop-filter: blur(4px);
            border: 1px solid rgba(255, 255, 255, 0.08);
        }
        .hero .last-updated i {
            margin-right: 8px;
            color: var(--gold);
        }
        .search-section {
            background: #fff;
            padding: 30px 0;
            border-bottom: 1px solid var(--border);
        }
        .search-form {
            display: flex;
            gap: 12px;
            max-width: 640px;
            margin: 0 auto;
            flex-wrap: wrap;
            justify-content: center;
        }
        .search-form input {
            flex: 1;
            min-width: 200px;
            padding: 14px 20px;
            border: 2px solid var(--border);
            border-radius: 50px;
            font-size: 1rem;
            outline: none;
            transition: var(--transition);
            background: var(--bg);
        }
        .search-form input:focus {
            border-color: var(--accent);
            box-shadow: 0 0 0 4px rgba(232, 93, 4, 0.12);
        }
        .search-form button {
            padding: 14px 32px;
            background: var(--accent);
            color: #fff;
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-form button:hover {
            background: var(--accent-hover);
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(232, 93, 4, 0.35);
        }
        .main-content {
            padding: 40px 0 60px;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 40px;
        }
        .content-body h2 {
            font-size: 1.9rem;
            font-weight: 800;
            margin-top: 48px;
            margin-bottom: 18px;
            color: var(--primary);
            border-left: 5px solid var(--accent);
            padding-left: 18px;
        }
        .content-body h2:first-child {
            margin-top: 0;
        }
        .content-body h3 {
            font-size: 1.4rem;
            font-weight: 700;
            margin-top: 32px;
            margin-bottom: 12px;
            color: var(--primary-light);
        }
        .content-body h4 {
            font-size: 1.15rem;
            font-weight: 600;
            margin-top: 24px;
            margin-bottom: 8px;
            color: var(--text);
        }
        .content-body p {
            margin-bottom: 18px;
            font-size: 1.05rem;
            color: var(--text-light);
        }
        .content-body p b,
        .content-body p strong {
            color: var(--text);
            font-weight: 700;
        }
        .content-body ul,
        .content-body ol {
            margin: 16px 0 24px 24px;
            color: var(--text-light);
        }
        .content-body li {
            margin-bottom: 8px;
            font-size: 1.02rem;
        }
        .content-body .feature-box {
            background: #fff;
            border-radius: var(--radius);
            padding: 24px 28px;
            margin: 28px 0;
            box-shadow: var(--shadow);
            border-left: 6px solid var(--gold);
        }
        .content-body .feature-box h4 {
            margin-top: 0;
            color: var(--primary);
        }
        .content-body .stat-highlight {
            display: inline-block;
            background: var(--primary);
            color: #fff;
            padding: 2px 12px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
        }
        .content-body img.content-img {
            width: 100%;
            margin: 28px 0;
            border-radius: 16px;
            box-shadow: var(--shadow);
        }
        .content-body .img-caption {
            text-align: center;
            font-size: 0.9rem;
            color: #6c757d;
            margin-top: -20px;
            margin-bottom: 28px;
            font-style: italic;
        }
        .sidebar {
            position: sticky;
            top: 100px;
            align-self: start;
        }
        .sidebar-card {
            background: #fff;
            border-radius: var(--radius);
            padding: 24px;
            margin-bottom: 24px;
            box-shadow: var(--shadow);
        }
        .sidebar-card h3 {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 16px;
            color: var(--primary);
            border-bottom: 2px solid var(--gold);
            padding-bottom: 8px;
        }
        .sidebar-card ul {
            list-style: none;
            padding: 0;
        }
        .sidebar-card li {
            margin-bottom: 10px;
        }
        .sidebar-card li a {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 8px 12px;
            border-radius: 10px;
            background: var(--bg);
            transition: var(--transition);
            font-size: 0.95rem;
        }
        .sidebar-card li a:hover {
            background: var(--primary);
            color: #fff;
            transform: translateX(4px);
        }
        .sidebar-card li a i {
            color: var(--accent);
            width: 20px;
            text-align: center;
        }
        .sidebar-card li a:hover i {
            color: var(--gold);
        }
        .interaction-section {
            background: #fff;
            border-radius: var(--radius);
            padding: 32px;
            margin-top: 48px;
            box-shadow: var(--shadow);
        }
        .interaction-section h2 {
            margin-top: 0 !important;
            border-left-color: var(--gold) !important;
        }
        .comment-form,
        .score-form {
            display: flex;
            flex-direction: column;
            gap: 16px;
            max-width: 600px;
            margin-top: 20px;
        }
        .comment-form input,
        .comment-form textarea,
        .score-form input,
        .score-form select {
            padding: 14px 18px;
            border: 2px solid var(--border);
            border-radius: 12px;
            font-size: 1rem;
            font-family: var(--font);
            outline: none;
            transition: var(--transition);
            background: var(--bg);
        }
        .comment-form input:focus,
        .comment-form textarea:focus,
        .score-form input:focus,
        .score-form select:focus {
            border-color: var(--accent);
            box-shadow: 0 0 0 4px rgba(232, 93, 4, 0.08);
        }
        .comment-form textarea {
            min-height: 120px;
            resize: vertical;
        }
        .comment-form button,
        .score-form button {
            align-self: flex-start;
            padding: 14px 36px;
            background: var(--primary);
            color: #fff;
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }
        .comment-form button:hover,
        .score-form button:hover {
            background: var(--primary-light);
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(10, 47, 68, 0.25);
        }
        .rating-stars {
            display: flex;
            gap: 8px;
            font-size: 2rem;
            color: #e0e0e0;
            cursor: pointer;
        }
        .rating-stars .star.active {
            color: var(--gold);
        }
        .rating-stars .star:hover {
            color: var(--gold);
            transform: scale(1.1);
        }
        .site-footer {
            background: var(--primary);
            color: rgba(255, 255, 255, 0.85);
            padding: 48px 0 30px;
            margin-top: 60px;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 32px;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 20px;
        }
        .footer-col h4 {
            color: var(--gold);
            margin-bottom: 16px;
            font-size: 1.1rem;
            font-weight: 700;
        }
        .footer-col ul {
            list-style: none;
            padding: 0;
        }
        .footer-col li {
            margin-bottom: 8px;
        }
        .footer-col a {
            color: rgba(255, 255, 255, 0.7);
            transition: var(--transition);
        }
        .footer-col a:hover {
            color: var(--gold);
            padding-left: 4px;
        }
        .footer-bottom {
            text-align: center;
            padding-top: 28px;
            margin-top: 28px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.5);
            max-width: var(--max-width);
            margin-left: auto;
            margin-right: auto;
            padding-left: 20px;
            padding-right: 20px;
        }
        .footer-bottom i {
            color: var(--accent);
        }
        friend-link {
            display: block;
            padding: 16px 20px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            margin-top: 8px;
            font-size: 0.95rem;
        }
        friend-link a {
            color: var(--gold);
            font-weight: 600;
        }
        friend-link a:hover {
            text-decoration: underline;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 20px;
            }
            .sidebar-card {
                margin-bottom: 0;
            }
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                padding: 16px 0 8px;
                gap: 4px;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                width: 100%;
                text-align: left;
                padding: 12px 16px;
                border-radius: 10px;
            }
            .header-inner {
                padding: 10px 16px;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            .hero {
                padding: 40px 0 30px;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .content-body h2 {
                font-size: 1.5rem;
            }
            .content-body h3 {
                font-size: 1.2rem;
            }
            .sidebar {
                grid-template-columns: 1fr;
            }
            .interaction-section {
                padding: 20px;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                width: 100%;
                justify-content: center;
            }
            .rating-stars {
                font-size: 1.6rem;
            }
            .footer-inner {
                grid-template-columns: 1fr;
                text-align: center;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 14px;
            }
            .hero h1 {
                font-size: 1.5rem;
            }
            .content-body p {
                font-size: 0.98rem;
            }
            .content-body .feature-box {
                padding: 18px 16px;
            }
            .comment-form button,
            .score-form button {
                width: 100%;
                text-align: center;
            }
        }
        .text-gold {
            color: var(--gold);
        }
        .text-accent {
            color: var(--accent);
        }
        .mt-1 {
            margin-top: 8px;
        }
        .mt-2 {
            margin-top: 16px;
        }
        .mt-3 {
            margin-top: 24px;
        }
        .mb-2 {
            margin-bottom: 16px;
        }
        .flex-between {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .gap-2 {
            gap: 12px;
        }
