        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, -apple-system, BlinkMacSystemFont, sans-serif;
            background: #f8fafc;
            color: #1e293b;
            line-height: 1.7;
            padding: 0 16px;
        }
        a {
            color: #0f3b6a;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #d4af37;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        h1,
        h2,
        h3,
        h4 {
            font-weight: 700;
            line-height: 1.3;
            color: #0b2545;
        }
        h1 {
            font-size: 2.4rem;
            margin-bottom: 0.5rem;
        }
        h2 {
            font-size: 1.8rem;
            margin-top: 2.5rem;
            margin-bottom: 0.75rem;
            border-left: 6px solid #d4af37;
            padding-left: 16px;
        }
        h3 {
            font-size: 1.35rem;
            margin-top: 1.8rem;
            margin-bottom: 0.5rem;
            color: #1a3b5c;
        }
        h4 {
            font-size: 1.1rem;
            margin-top: 1.2rem;
            margin-bottom: 0.3rem;
            color: #2c4c6e;
        }
        p {
            margin-bottom: 1rem;
        }
        ul,
        ol {
            margin-left: 1.5rem;
            margin-bottom: 1rem;
        }
        li {
            margin-bottom: 0.3rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            background: #ffffff;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
            border-radius: 24px;
            padding: 20px 28px 40px;
            margin-top: 16px;
            margin-bottom: 40px;
        }
        @media (max-width: 640px) {
            .container {
                padding: 12px 14px 30px;
                border-radius: 16px;
            }
            h1 {
                font-size: 1.6rem;
            }
            h2 {
                font-size: 1.3rem;
                padding-left: 10px;
            }
            h3 {
                font-size: 1.1rem;
            }
            body {
                padding: 0 8px;
            }
        }
        .site-header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 12px 0 8px;
            border-bottom: 2px solid #e9edf2;
            margin-bottom: 16px;
            position: relative;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #0b2545, #1a4a7a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .my-logo i {
            -webkit-text-fill-color: #d4af37;
            font-size: 1.7rem;
        }
        .my-logo:hover {
            opacity: 0.85;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #1e293b;
            border-radius: 8px;
            font-size: 1.6rem;
            padding: 4px 12px;
            cursor: pointer;
            color: #1e293b;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: #e9edf2;
        }
        .main-nav {
            display: flex;
            flex-wrap: wrap;
            gap: 6px 16px;
            align-items: center;
        }
        .main-nav a {
            font-weight: 500;
            font-size: 0.95rem;
            padding: 4px 2px;
            border-bottom: 2px solid transparent;
            transition: border-color 0.2s, color 0.2s;
        }
        .main-nav a:hover {
            border-bottom-color: #d4af37;
        }
        .main-nav a.active {
            border-bottom-color: #0f3b6a;
            font-weight: 600;
        }
        @media (max-width: 720px) {
            .nav-toggle {
                display: inline-block;
            }
            .main-nav {
                display: none;
                flex-direction: column;
                width: 100%;
                margin-top: 12px;
                padding: 12px 0 8px;
                border-top: 1px solid #e2e8f0;
                gap: 10px;
            }
            .main-nav.open {
                display: flex;
            }
        }
        .breadcrumb {
            font-size: 0.85rem;
            color: #64748b;
            padding: 6px 0 10px;
            display: flex;
            flex-wrap: wrap;
            gap: 4px 8px;
        }
        .breadcrumb span {
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }
        .breadcrumb a {
            color: #0f3b6a;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb .sep {
            color: #94a3b8;
        }
        .search-section {
            background: #f1f5f9;
            border-radius: 16px;
            padding: 20px 24px;
            margin: 20px 0 28px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 14px;
        }
        .search-section label {
            font-weight: 600;
            font-size: 1.05rem;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .search-form {
            display: flex;
            flex: 1 1 280px;
            gap: 8px;
        }
        .search-form input {
            flex: 1;
            padding: 10px 16px;
            border: 2px solid #cbd5e1;
            border-radius: 40px;
            font-size: 0.95rem;
            outline: none;
            transition: border 0.2s;
        }
        .search-form input:focus {
            border-color: #0f3b6a;
        }
        .search-form button {
            background: #0f3b6a;
            color: #fff;
            border: none;
            border-radius: 40px;
            padding: 10px 24px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .search-form button:hover {
            background: #1a4a7a;
            transform: scale(1.02);
        }
        .table-wrap {
            overflow-x: auto;
            margin: 20px 0 24px;
            border-radius: 14px;
            border: 1px solid #e2e8f0;
        }
        .ucl-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.9rem;
            min-width: 600px;
        }
        .ucl-table th {
            background: #0b2545;
            color: #f8fafc;
            padding: 12px 10px;
            text-align: left;
            font-weight: 600;
        }
        .ucl-table td {
            padding: 10px;
            border-bottom: 1px solid #e9edf2;
        }
        .ucl-table tr:nth-child(even) {
            background: #f8fafc;
        }
        .ucl-table tr:hover td {
            background: #eef2f7;
        }
        .ucl-table .pos {
            font-weight: 700;
            color: #0f3b6a;
        }
        .ucl-table .pts {
            font-weight: 700;
            color: #d4af37;
        }
        .ucl-table .team-cell {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .ucl-table .team-cell i {
            font-size: 1.2rem;
            color: #334155;
        }
        .badge {
            display: inline-block;
            background: #e2e8f0;
            padding: 0 10px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            color: #1e293b;
        }
        .badge.gold {
            background: #d4af37;
            color: #0b2545;
        }
        .badge.green {
            background: #22c55e;
            color: #fff;
        }
        .badge.red {
            background: #ef4444;
            color: #fff;
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 16px;
            margin: 20px 0;
        }
        .stat-card {
            background: #f1f5f9;
            padding: 18px 16px;
            border-radius: 16px;
            text-align: center;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .stat-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
        }
        .stat-card .num {
            font-size: 2.2rem;
            font-weight: 800;
            color: #0b2545;
            line-height: 1.2;
        }
        .stat-card .label {
            font-size: 0.9rem;
            color: #475569;
            font-weight: 500;
        }
        .rating-section {
            background: #f1f5f9;
            border-radius: 16px;
            padding: 20px 24px;
            margin: 28px 0;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 14px;
        }
        .rating-stars {
            display: flex;
            gap: 4px;
            font-size: 1.6rem;
            color: #cbd5e1;
            cursor: pointer;
            transition: color 0.15s;
        }
        .rating-stars i {
            transition: transform 0.15s, color 0.15s;
        }
        .rating-stars i:hover,
        .rating-stars i.active {
            color: #d4af37;
            transform: scale(1.15);
        }
        .rating-section .avg {
            font-weight: 700;
            font-size: 1.1rem;
            color: #0b2545;
        }
        .rating-form button {
            background: #0f3b6a;
            color: #fff;
            border: none;
            border-radius: 40px;
            padding: 8px 22px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
        }
        .rating-form button:hover {
            background: #1a4a7a;
        }
        .comment-section {
            margin: 28px 0 20px;
            padding: 20px 24px;
            background: #f8fafc;
            border-radius: 16px;
            border: 1px solid #e2e8f0;
        }
        .comment-section h3 {
            margin-top: 0;
        }
        .comment-form {
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin-top: 12px;
        }
        .comment-form input,
        .comment-form textarea {
            padding: 10px 16px;
            border: 2px solid #cbd5e1;
            border-radius: 12px;
            font-size: 0.95rem;
            outline: none;
            font-family: inherit;
            transition: border 0.2s;
        }
        .comment-form input:focus,
        .comment-form textarea:focus {
            border-color: #0f3b6a;
        }
        .comment-form textarea {
            min-height: 90px;
            resize: vertical;
        }
        .comment-form button {
            align-self: flex-start;
            background: #0f3b6a;
            color: #fff;
            border: none;
            border-radius: 40px;
            padding: 10px 28px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
        }
        .comment-form button:hover {
            background: #1a4a7a;
        }
        .comment-list {
            margin-top: 18px;
            max-height: 320px;
            overflow-y: auto;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .comment-item {
            background: #fff;
            padding: 12px 16px;
            border-radius: 12px;
            border: 1px solid #e9edf2;
        }
        .comment-item .author {
            font-weight: 600;
            color: #0b2545;
        }
        .comment-item .time {
            font-size: 0.75rem;
            color: #94a3b8;
            margin-left: 8px;
        }
        .comment-item .text {
            margin-top: 4px;
            color: #334155;
        }
        .featured-img {
            margin: 24px 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
        }
        .featured-img figcaption {
            background: #f1f5f9;
            padding: 10px 16px;
            font-size: 0.85rem;
            color: #475569;
            text-align: center;
            font-style: italic;
        }
        friend-link {
            display: block;
            padding: 20px 0 8px;
            border-top: 2px solid #e2e8f0;
            margin-top: 28px;
        }
        friend-link .fl-title {
            font-weight: 700;
            font-size: 1rem;
            margin-bottom: 10px;
            color: #0b2545;
        }
        .friend-list {
            display: flex;
            flex-wrap: wrap;
            gap: 8px 18px;
            list-style: none;
            margin: 0;
        }
        .friend-list li a {
            font-size: 0.9rem;
            color: #0f3b6a;
        }
        .friend-list li a:hover {
            text-decoration: underline;
        }
        .site-footer {
            margin-top: 24px;
            padding-top: 16px;
            border-top: 1px solid #e2e8f0;
            font-size: 0.85rem;
            color: #64748b;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 8px;
        }
        .site-footer .copyright {
            font-weight: 400;
        }
        .site-footer .copyright strong {
            color: #0b2545;
        }
        .highlight-box {
            background: #fef9e7;
            border-left: 6px solid #d4af37;
            padding: 14px 20px;
            border-radius: 0 12px 12px 0;
            margin: 20px 0;
        }
        .insight-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 18px;
            margin: 18px 0;
        }
        .insight-card {
            background: #ffffff;
            border: 1px solid #e2e8f0;
            border-radius: 16px;
            padding: 18px 16px;
            transition: box-shadow 0.2s, transform 0.2s;
        }
        .insight-card:hover {
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
            transform: translateY(-2px);
        }
        .insight-card h4 {
            margin-top: 0;
        }
        .insight-card i {
            color: #d4af37;
            font-size: 1.2rem;
            margin-right: 6px;
        }
        .last-updated {
            display: inline-block;
            font-size: 0.8rem;
            color: #94a3b8;
            margin-bottom: 12px;
        }
        .btn-outline {
            display: inline-block;
            border: 2px solid #0f3b6a;
            color: #0f3b6a;
            border-radius: 40px;
            padding: 6px 18px;
            font-weight: 600;
            font-size: 0.85rem;
            transition: background 0.2s, color 0.2s;
        }
        .btn-outline:hover {
            background: #0f3b6a;
            color: #fff;
        }
        @media (max-width: 480px) {
            .rating-section {
                flex-direction: column;
                align-items: stretch;
                text-align: center;
            }
            .rating-stars {
                justify-content: center;
            }
            .search-section {
                flex-direction: column;
                align-items: stretch;
            }
            .search-form button {
                justify-content: center;
            }
        }
