        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', 'Roboto', system-ui, -apple-system, sans-serif;
            background: #f0f2f5;
            color: #1a1a2e;
            line-height: 1.7;
            padding: 0;
            margin: 0;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: #004d99;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover {
            color: #e6a800;
            text-decoration: underline;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.3;
            color: #0a0a1a;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }
        .site-header {
            background: linear-gradient(135deg, #0a0a1a 0%, #1a1a3e 100%);
            color: #fff;
            padding: 0.8rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .my-logo {
            font-size: 1.6rem;
            font-weight: 800;
            color: #f5c518;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 0 2px 8px rgba(245, 197, 24, 0.3);
            transition: transform 0.2s;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .my-logo:hover {
            transform: scale(1.02);
            color: #ffd700;
            text-decoration: none;
        }
        .my-logo i {
            font-size: 1.8rem;
            color: #fff;
        }
        .my-logo span {
            font-weight: 300;
            color: #ccc;
            font-size: 0.9rem;
            letter-spacing: 0;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid rgba(255, 255, 255, 0.3);
            color: #fff;
            font-size: 1.5rem;
            padding: 0.4rem 0.8rem;
            border-radius: 6px;
            cursor: pointer;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        .main-nav {
            display: flex;
            gap: 0.2rem;
            flex-wrap: wrap;
            align-items: center;
        }
        .main-nav a {
            color: #ddd;
            padding: 0.5rem 0.9rem;
            border-radius: 6px;
            font-size: 0.9rem;
            font-weight: 500;
            transition: all 0.2s;
            white-space: nowrap;
        }
        .main-nav a:hover {
            background: rgba(245, 197, 24, 0.15);
            color: #f5c518;
            text-decoration: none;
        }
        .main-nav a.active {
            background: #f5c518;
            color: #0a0a1a;
        }
        .breadcrumb {
            background: #fff;
            padding: 0.6rem 0;
            border-bottom: 1px solid #e0e0e0;
            font-size: 0.85rem;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem;
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.4rem;
            color: #999;
        }
        .breadcrumb a {
            color: #555;
        }
        .breadcrumb a:hover {
            color: #004d99;
        }
        .breadcrumb .current {
            color: #1a1a2e;
            font-weight: 600;
        }
        .hero {
            background: linear-gradient(145deg, #0f0f2a 0%, #1e2a4a 100%);
            color: #fff;
            padding: 3rem 0 2.5rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .hero::after {
            content: "⚽";
            position: absolute;
            font-size: 12rem;
            opacity: 0.06;
            right: -2rem;
            bottom: -2rem;
            transform: rotate(15deg);
        }
        .hero h1 {
            font-size: 2.8rem;
            color: #fff;
            margin-bottom: 0.6rem;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
        }
        .hero h1 i {
            color: #f5c518;
            margin-right: 0.4rem;
        }
        .hero p {
            font-size: 1.15rem;
            max-width: 700px;
            margin: 0.6rem auto 1.2rem;
            color: #c8d0e0;
        }
        .hero .badge {
            display: inline-block;
            background: #f5c518;
            color: #0a0a1a;
            padding: 0.3rem 1.2rem;
            border-radius: 30px;
            font-weight: 700;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .hero .update-time {
            color: #aab;
            font-size: 0.9rem;
            margin-top: 1rem;
        }
        section {
            padding: 2.5rem 0;
        }
        .section-title {
            font-size: 2rem;
            margin-bottom: 1.5rem;
            border-left: 5px solid #f5c518;
            padding-left: 1rem;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .section-title i {
            color: #f5c518;
            font-size: 1.6rem;
        }
        .card {
            background: #fff;
            border-radius: 12px;
            padding: 1.8rem;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
            margin-bottom: 1.8rem;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .card:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 28px rgba(0, 0, 0, 0.10);
        }
        .match-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
        }
        .match-card {
            background: #fff;
            border-radius: 14px;
            padding: 1.5rem;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
            transition: all 0.25s;
            border: 1px solid #eee;
        }
        .match-card:hover {
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
            transform: translateY(-4px);
        }
        .match-card .teams {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 1.2rem;
            font-weight: 700;
            margin: 0.8rem 0;
        }
        .match-card .vs {
            color: #f5c518;
            font-weight: 800;
            font-size: 1rem;
        }
        .match-card .time {
            color: #666;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 0.3rem;
        }
        .match-card .match-meta {
            display: flex;
            justify-content: space-between;
            font-size: 0.85rem;
            color: #888;
            border-top: 1px solid #f0f0f0;
            padding-top: 0.8rem;
            margin-top: 0.8rem;
        }
        .search-box {
            display: flex;
            gap: 0.6rem;
            max-width: 550px;
            margin: 0 auto;
            flex-wrap: wrap;
        }
        .search-box input {
            flex: 1;
            padding: 0.85rem 1.2rem;
            border: 2px solid #ddd;
            border-radius: 50px;
            font-size: 1rem;
            outline: none;
            transition: border 0.2s;
            min-width: 180px;
        }
        .search-box input:focus {
            border-color: #f5c518;
        }
        .search-box button {
            padding: 0.85rem 2rem;
            background: #f5c518;
            border: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-box button:hover {
            background: #e0b000;
            transform: scale(1.02);
        }
        .comment-form,
        .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            max-width: 600px;
        }
        .comment-form textarea,
        .comment-form input,
        .rating-form select,
        .rating-form input {
            padding: 0.85rem 1rem;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            font-size: 1rem;
            outline: none;
            transition: border 0.2s;
            width: 100%;
            font-family: inherit;
        }
        .comment-form textarea:focus,
        .comment-form input:focus,
        .rating-form select:focus,
        .rating-form input:focus {
            border-color: #f5c518;
        }
        .comment-form textarea {
            min-height: 120px;
            resize: vertical;
        }
        .btn {
            padding: 0.85rem 2rem;
            background: #004d99;
            color: #fff;
            border: none;
            border-radius: 8px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            align-self: flex-start;
        }
        .btn:hover {
            background: #003366;
            transform: translateY(-1px);
        }
        .btn-warning {
            background: #f5c518;
            color: #0a0a1a;
        }
        .btn-warning:hover {
            background: #e0b000;
        }
        .star-group {
            display: flex;
            gap: 0.3rem;
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
        }
        .star-group .star {
            transition: color 0.15s, transform 0.15s;
        }
        .star-group .star:hover,
        .star-group .star.active {
            color: #f5c518;
            transform: scale(1.1);
        }
        .featured-img {
            border-radius: 14px;
            box-shadow: 0 6px 24px rgba(0, 0, 0, 0.10);
            margin: 1.5rem 0;
            width: 100%;
            max-height: 480px;
            object-fit: cover;
        }
        friend-link {
            display: block;
            padding: 1.8rem 0;
        }
        friend-link .friend-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem 1.5rem;
            justify-content: center;
            list-style: none;
            padding: 0;
        }
        friend-link .friend-grid li a {
            color: #004d99;
            font-weight: 500;
            padding: 0.3rem 0.6rem;
            border-radius: 6px;
            transition: background 0.2s;
        }
        friend-link .friend-grid li a:hover {
            background: #f0f4ff;
            text-decoration: underline;
        }
        .site-footer {
            background: #0a0a1a;
            color: #bbb;
            padding: 2rem 0 1.2rem;
            text-align: center;
            border-top: 4px solid #f5c518;
        }
        .site-footer .copyright {
            font-size: 0.9rem;
            color: #888;
            margin-top: 1rem;
            border-top: 1px solid #222;
            padding-top: 1rem;
        }
        .site-footer a {
            color: #aaa;
        }
        .site-footer a:hover {
            color: #f5c518;
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #14142e;
                padding: 0.8rem;
                border-radius: 10px;
                margin-top: 0.5rem;
                gap: 0.2rem;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 0.7rem 1rem;
                border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .section-title {
                font-size: 1.5rem;
            }
            .match-grid {
                grid-template-columns: 1fr;
            }
            .card {
                padding: 1.2rem;
            }
            .my-logo {
                font-size: 1.2rem;
            }
            .my-logo span {
                font-size: 0.7rem;
            }
            .breadcrumb {
                font-size: 0.75rem;
            }
            .search-box {
                flex-direction: column;
            }
            .search-box button {
                justify-content: center;
            }
            .star-group {
                font-size: 1.5rem;
            }
        }
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.4rem;
            }
            .hero .badge {
                font-size: 0.7rem;
                padding: 0.2rem 0.8rem;
            }
            .container {
                padding: 0 0.6rem;
            }
            .match-card .teams {
                font-size: 1rem;
                flex-wrap: wrap;
                gap: 0.3rem;
            }
            .btn {
                width: 100%;
                justify-content: center;
            }
        }
        .text-center {
            text-align: center;
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .flex-center {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }
        .gap-1 {
            gap: 1rem;
        }
        .fw-bold {
            font-weight: 700;
        }
        .text-muted {
            color: #888;
        }
        .bg-light {
            background: #f8f9fc;
        }
        .bg-dark-soft {
            background: #eef0f5;
        }
        .rounded {
            border-radius: 12px;
        }
        .shadow-sm {
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
        }
        .inline-list {
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem 1.2rem;
            list-style: none;
            padding: 0;
        }
        .inline-list li::before {
            content: "•";
            color: #f5c518;
            margin-right: 0.4rem;
        }
        .tag {
            display: inline-block;
            background: #eef0f5;
            padding: 0.2rem 0.8rem;
            border-radius: 20px;
            font-size: 0.8rem;
            color: #555;
        }
