        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary-blue: #003366;
            --ucl-blue: #0066B3;
            --ucl-silver: #D4D4D4;
            --accent-gold: #C9A74D;
            --text-dark: #222222;
            --text-light: #444444;
            --bg-light: #F8F9FA;
            --bg-card: #FFFFFF;
            --border-color: #E0E0E0;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            --shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.12);
            --transition: all 0.3s ease;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: var(--text-dark);
            background-color: var(--bg-light);
            font-size: 18px;
            overflow-x: hidden;
        }
        h1, h2, h3, h4 {
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 1rem;
            color: var(--primary-blue);
        }
        h1 {
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            padding-bottom: 1rem;
            border-bottom: 3px solid var(--accent-gold);
        }
        h2 {
            font-size: 2.2rem;
            margin-top: 2.5rem;
            padding-left: 0.5rem;
            border-left: 5px solid var(--ucl-blue);
        }
        h3 {
            font-size: 1.8rem;
            margin-top: 2rem;
            color: var(--ucl-blue);
        }
        h4 {
            font-size: 1.4rem;
            margin-top: 1.5rem;
            color: var(--text-light);
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            hyphens: auto;
        }
        a {
            color: var(--ucl-blue);
            text-decoration: none;
            transition: var(--transition);
            border-bottom: 1px dotted transparent;
        }
        a:hover {
            color: var(--primary-blue);
            border-bottom-color: var(--accent-gold);
        }
        strong {
            color: var(--primary-blue);
            font-weight: 700;
        }
        em {
            font-style: italic;
            color: var(--text-light);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, var(--primary-blue) 0%, #004080 100%);
            color: white;
            padding: 1rem 0;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 800;
            color: white;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .my-logo i {
            color: var(--accent-gold);
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        .nav-desktop a {
            color: white;
            font-weight: 600;
            padding: 0.5rem 0;
            border-bottom: 2px solid transparent;
        }
        .nav-desktop a:hover {
            border-bottom-color: var(--accent-gold);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 5px;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background: var(--primary-blue);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem;
            box-shadow: var(--shadow);
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            color: white;
            padding: 0.8rem;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .breadcrumb {
            background: var(--bg-card);
            padding: 1rem 0;
            border-bottom: 1px solid var(--border-color);
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: var(--text-light);
        }
        .breadcrumb a:hover {
            color: var(--ucl-blue);
        }
        .breadcrumb span {
            color: var(--text-light);
            margin: 0 5px;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            padding: 3rem 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: var(--bg-card);
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: var(--shadow);
        }
        .article-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid var(--border-color);
            font-size: 0.9rem;
            color: var(--text-light);
        }
        .update-time {
            color: var(--ucl-blue);
            font-weight: 600;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .widget {
            background: var(--bg-card);
            padding: 1.5rem;
            border-radius: 12px;
            box-shadow: var(--shadow);
        }
        .widget h3 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--accent-gold);
        }
        .search-form {
            display: flex;
        }
        .search-input {
            flex: 1;
            padding: 0.8rem 1rem;
            border: 2px solid var(--border-color);
            border-right: none;
            border-radius: 6px 0 0 6px;
            font-size: 1rem;
            transition: var(--transition);
        }
        .search-input:focus {
            outline: none;
            border-color: var(--ucl-blue);
        }
        .search-btn {
            background: var(--ucl-blue);
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 6px 6px 0;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-btn:hover {
            background: var(--primary-blue);
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 5px;
            margin: 1rem 0;
        }
        .star {
            font-size: 1.8rem;
            color: var(--ucl-silver);
            cursor: pointer;
            transition: var(--transition);
        }
        .star:hover,
        .star.active {
            color: var(--accent-gold);
        }
        .rating-form {
            display: none;
            flex-direction: column;
            gap: 1rem;
            margin-top: 1rem;
        }
        .rating-input {
            padding: 0.8rem;
            border: 1px solid var(--border-color);
            border-radius: 6px;
            font-size: 1rem;
        }
        .rating-submit {
            background: var(--ucl-blue);
            color: white;
            border: none;
            padding: 0.8rem;
            border-radius: 6px;
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
        }
        .rating-submit:hover {
            background: var(--primary-blue);
        }
        .comments-widget {
            max-height: 500px;
            overflow-y: auto;
        }
        .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-bottom: 2rem;
        }
        .comment-input,
        .comment-textarea {
            padding: 0.8rem;
            border: 1px solid var(--border-color);
            border-radius: 6px;
            font-size: 1rem;
            font-family: inherit;
        }
        .comment-textarea {
            min-height: 100px;
            resize: vertical;
        }
        .comment-submit {
            background: var(--ucl-blue);
            color: white;
            border: none;
            padding: 0.8rem;
            border-radius: 6px;
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
        }
        .comment-submit:hover {
            background: var(--primary-blue);
        }
        .comment-list {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        .comment-item {
            padding: 1rem;
            background: var(--bg-light);
            border-radius: 8px;
            border-left: 3px solid var(--ucl-blue);
        }
        .comment-author {
            font-weight: 600;
            color: var(--primary-blue);
            margin-bottom: 0.5rem;
        }
        .comment-date {
            font-size: 0.8rem;
            color: var(--text-light);
            margin-bottom: 0.5rem;
        }
        .article-image {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: 10px;
            margin: 2rem 0;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        .article-image:hover {
            transform: scale(1.01);
            box-shadow: var(--shadow-hover);
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: var(--text-light);
            margin-top: -1.5rem;
            margin-bottom: 2rem;
            font-size: 0.9rem;
        }
        .standings-table {
            width: 100%;
            border-collapse: collapse;
            margin: 2rem 0;
            box-shadow: var(--shadow);
            border-radius: 8px;
            overflow: hidden;
        }
        .standings-table th {
            background: var(--ucl-blue);
            color: white;
            padding: 1rem;
            text-align: left;
            font-weight: 600;
        }
        .standings-table td {
            padding: 0.8rem 1rem;
            border-bottom: 1px solid var(--border-color);
        }
        .standings-table tr:nth-child(even) {
            background-color: rgba(0, 102, 179, 0.05);
        }
        .standings-table tr:hover {
            background-color: rgba(0, 102, 179, 0.1);
        }
        .team-cell {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .team-badge {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: var(--ucl-silver);
        }
        .site-footer {
            background: var(--primary-blue);
            color: white;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 3rem;
            margin-bottom: 2rem;
        }
        @media (max-width: 768px) {
            .footer-content {
                grid-template-columns: 1fr;
            }
        }
        .footer-section h3 {
            color: white;
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            border-bottom: 2px solid var(--accent-gold);
            padding-bottom: 0.5rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        .footer-links a {
            color: var(--ucl-silver);
            transition: var(--transition);
        }
        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }
        friend-link {
            display: block;
            background: rgba(255,255,255,0.1);
            padding: 1.5rem;
            border-radius: 8px;
            margin-top: 1rem;
        }
        friend-link h4 {
            color: white;
            margin-bottom: 1rem;
        }
        friend-link a {
            color: var(--accent-gold);
            font-weight: 600;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: var(--ucl-silver);
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            body {
                font-size: 16px;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            .nav-desktop {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .article-content {
                padding: 1.5rem;
            }
            .main-content {
                gap: 2rem;
                padding: 2rem 0;
            }
        }
        .text-center {
            text-align: center;
        }
        .mb-3 {
            margin-bottom: 3rem;
        }
        .mt-3 {
            margin-top: 3rem;
        }
        .highlight {
            background: linear-gradient(120deg, rgba(201, 167, 77, 0.2) 0%, rgba(201, 167, 77, 0) 100%);
            padding: 1.5rem;
            border-left: 4px solid var(--accent-gold);
            border-radius: 0 8px 8px 0;
            margin: 2rem 0;
        }
        .note {
            background: rgba(0, 102, 179, 0.08);
            padding: 1rem 1.5rem;
            border-radius: 8px;
            margin: 1.5rem 0;
            font-size: 0.95rem;
        }
        .stat-box {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
            margin: 2rem 0;
        }
        .stat-item {
            background: white;
            padding: 1.2rem;
            border-radius: 8px;
            text-align: center;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        .stat-item:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }
        .stat-value {
            font-size: 2rem;
            font-weight: 700;
            color: var(--ucl-blue);
            margin-bottom: 0.5rem;
        }
        .stat-label {
            font-size: 0.9rem;
            color: var(--text-light);
        }
