* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #f8fafc;
            color: #1e293b;
            line-height: 1.8;
            font-size: 16px;
        }
        a {
            color: #0f3b5e;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #e67e22;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .header {
            background: linear-gradient(135deg, #0a1f2e, #1a3a4a);
            color: #fff;
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            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;
        }
        .my-logo {
            font-size: 1.6rem;
            font-weight: 800;
            color: #fbbf24;
            letter-spacing: 1px;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .my-logo i {
            color: #fbbf24;
            font-size: 1.8rem;
        }
        .my-logo:hover {
            color: #f59e0b;
        }
        .my-logo small {
            font-size: 0.7rem;
            font-weight: 400;
            color: #cbd5e1;
            display: block;
            letter-spacing: 0.5px;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.6rem;
            cursor: pointer;
            padding: 4px 12px;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        .nav-menu {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            align-items: center;
        }
        .nav-menu a {
            color: #e2e8f0;
            padding: 8px 16px;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 500;
            transition: all 0.2s;
            white-space: nowrap;
        }
        .nav-menu a:hover {
            background: rgba(255, 255, 255, 0.12);
            color: #fbbf24;
        }
        .nav-menu a.active {
            background: #fbbf24;
            color: #0a1f2e;
        }
        .breadcrumb {
            background: #f1f5f9;
            padding: 12px 0;
            font-size: 0.85rem;
            border-bottom: 1px solid #e2e8f0;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 6px;
            color: #94a3b8;
        }
        .breadcrumb a {
            color: #0f3b5e;
        }
        .breadcrumb a:hover {
            color: #e67e22;
        }
        .breadcrumb .current {
            color: #64748b;
            font-weight: 600;
        }
        .hero {
            background: linear-gradient(135deg, #0f3b5e, #1e5a7a);
            color: #fff;
            padding: 48px 0 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .hero::after {
            content: "⚽";
            position: absolute;
            right: -30px;
            bottom: -30px;
            font-size: 12rem;
            opacity: 0.06;
            pointer-events: none;
        }
        .hero h1 {
            font-size: 2.6rem;
            line-height: 1.2;
            margin-bottom: 16px;
            font-weight: 800;
            letter-spacing: -0.5px;
        }
        .hero h1 i {
            color: #fbbf24;
        }
        .hero p {
            font-size: 1.1rem;
            max-width: 720px;
            margin: 0 auto 20px;
            color: #cbd5e1;
        }
        .hero .meta {
            display: flex;
            justify-content: center;
            gap: 24px;
            flex-wrap: wrap;
            font-size: 0.9rem;
            color: #94a3b8;
        }
        .hero .meta span i {
            margin-right: 6px;
            color: #fbbf24;
        }
        .update-badge {
            display: inline-block;
            background: #fbbf24;
            color: #0a1f2e;
            padding: 4px 18px;
            border-radius: 30px;
            font-weight: 700;
            font-size: 0.8rem;
            letter-spacing: 0.5px;
            margin-bottom: 14px;
        }
        .section {
            padding: 48px 0;
            border-bottom: 1px solid #e2e8f0;
        }
        .section:last-of-type {
            border-bottom: none;
        }
        .section h2 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 24px;
            color: #0a1f2e;
            border-left: 5px solid #fbbf24;
            padding-left: 18px;
        }
        .section h2 i {
            color: #fbbf24;
            margin-right: 10px;
        }
        .section h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin: 28px 0 14px;
            color: #1e3a5f;
        }
        .section h4 {
            font-size: 1.15rem;
            font-weight: 600;
            margin: 20px 0 10px;
            color: #2d4a6e;
        }
        .section p {
            margin-bottom: 16px;
            color: #334155;
        }
        .section p strong {
            color: #0a1f2e;
        }
        .section ul,
        .section ol {
            margin: 12px 0 20px 24px;
            color: #334155;
        }
        .section li {
            margin-bottom: 8px;
        }
        .highlight-box {
            background: #f0f7ff;
            border-left: 5px solid #fbbf24;
            padding: 20px 24px;
            border-radius: 0 12px 12px 0;
            margin: 24px 0;
        }
        .highlight-box p:last-child {
            margin-bottom: 0;
        }
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
            margin: 28px 0;
        }
        .card {
            background: #fff;
            border-radius: 16px;
            padding: 24px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
            border: 1px solid #e2e8f0;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.10);
        }
        .card i {
            font-size: 2rem;
            color: #fbbf24;
            margin-bottom: 12px;
        }
        .card h4 {
            margin-top: 0;
        }
        .feature-image {
            border-radius: 16px;
            margin: 32px 0;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
            width: 100%;
            max-height: 500px;
            object-fit: cover;
        }
        .search-form {
            display: flex;
            max-width: 520px;
            margin: 20px 0 10px;
            border-radius: 50px;
            overflow: hidden;
            border: 2px solid #e2e8f0;
            background: #fff;
            transition: border-color 0.2s;
        }
        .search-form:focus-within {
            border-color: #fbbf24;
        }
        .search-form input {
            flex: 1;
            padding: 14px 20px;
            border: none;
            outline: none;
            font-size: 1rem;
            background: transparent;
        }
        .search-form button {
            background: #0f3b5e;
            color: #fff;
            border: none;
            padding: 0 28px;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-form button:hover {
            background: #1a5a7a;
        }
        .form-card {
            background: #fff;
            border-radius: 16px;
            padding: 28px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
            border: 1px solid #e2e8f0;
            margin: 20px 0;
        }
        .form-card label {
            font-weight: 600;
            display: block;
            margin: 14px 0 6px;
            color: #0a1f2e;
        }
        .form-card input,
        .form-card textarea,
        .form-card select {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #e2e8f0;
            border-radius: 10px;
            font-size: 1rem;
            transition: border-color 0.2s;
            font-family: inherit;
            background: #fafafa;
        }
        .form-card input:focus,
        .form-card textarea:focus,
        .form-card select:focus {
            border-color: #fbbf24;
            outline: none;
            background: #fff;
        }
        .form-card textarea {
            min-height: 100px;
            resize: vertical;
        }
        .form-card .btn {
            background: #0f3b5e;
            color: #fff;
            border: none;
            padding: 14px 32px;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            margin-top: 16px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        .form-card .btn:hover {
            background: #1a5a7a;
            transform: scale(1.02);
        }
        .star-rating {
            display: flex;
            gap: 8px;
            font-size: 1.8rem;
            cursor: pointer;
            margin: 8px 0;
        }
        .star-rating i {
            color: #d1d5db;
            transition: color 0.15s;
        }
        .star-rating i.active,
        .star-rating i:hover {
            color: #fbbf24;
        }
        .footer {
            background: #0a1f2e;
            color: #cbd5e1;
            padding: 48px 0 24px;
            margin-top: 40px;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 32px;
            margin-bottom: 32px;
        }
        .footer h4 {
            color: #fbbf24;
            margin-bottom: 16px;
            font-size: 1.1rem;
        }
        .footer a {
            color: #94a3b8;
            display: block;
            padding: 4px 0;
            transition: color 0.2s;
        }
        .footer a:hover {
            color: #fbbf24;
        }
        .footer .copyright {
            text-align: center;
            padding-top: 24px;
            border-top: 1px solid #1e3a4a;
            font-size: 0.85rem;
            color: #64748b;
        }
        friend-link {
            display: block;
            margin: 12px 0;
        }
        friend-link a {
            display: inline-block;
            margin: 4px 8px 4px 0;
            padding: 4px 12px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            font-size: 0.85rem;
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                padding: 16px 0 8px;
                gap: 4px;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu a {
                width: 100%;
                text-align: left;
                padding: 10px 16px;
                border-radius: 8px;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .section h2 {
                font-size: 1.5rem;
            }
            .section h3 {
                font-size: 1.25rem;
            }
            .search-form {
                flex-direction: column;
                border-radius: 16px;
            }
            .search-form button {
                padding: 12px;
                justify-content: center;
            }
            .card-grid {
                grid-template-columns: 1fr;
            }
            .header-inner {
                gap: 8px;
            }
            .my-logo {
                font-size: 1.3rem;
            }
            .hero .meta {
                flex-direction: column;
                gap: 8px;
            }
        }
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.4rem;
            }
            .container {
                padding: 0 14px;
            }
            .section {
                padding: 32px 0;
            }
        }
        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: #fbbf24;
            color: #0a1f2e;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
            cursor: pointer;
            transition: transform 0.2s, opacity 0.3s;
            opacity: 0;
            pointer-events: none;
            border: none;
            z-index: 99;
        }
        .scroll-top.visible {
            opacity: 1;
            pointer-events: auto;
        }
        .scroll-top:hover {
            transform: scale(1.1);
        }
        .table-wrap {
            overflow-x: auto;
            margin: 24px 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        }
        th {
            background: #0f3b5e;
            color: #fff;
            padding: 14px 18px;
            text-align: left;
            font-weight: 600;
        }
        td {
            padding: 12px 18px;
            border-bottom: 1px solid #e2e8f0;
        }
        tr:last-child td {
            border-bottom: none;
        }
        tr:hover td {
            background: #f8fafc;
        }
        .tag {
            display: inline-block;
            background: #e2e8f0;
            padding: 2px 12px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            color: #0f3b5e;
        }
        .tag.gold {
            background: #fbbf24;
            color: #0a1f2e;
        }
