:root {
            --primary-blue: #1e3a8a;
            --secondary-gold: #fbbf24;
            --accent-green: #10b981;
            --dark-bg: #0f172a;
            --light-bg: #f8fafc;
            --text-dark: #1e293b;
            --text-light: #64748b;
            --white: #ffffff;
            --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
            --border-radius: 8px;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            background-color: var(--light-bg);
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }
        .site-header {
            background: linear-gradient(135deg, var(--dark-bg) 0%, var(--primary-blue) 100%);
            color: var(--white);
            padding: 1rem 5%;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(to right, var(--secondary-gold), var(--accent-green));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .my-logo i {
            font-size: 2rem;
            color: var(--secondary-gold);
        }
        .main-nav {
            display: flex;
            gap: 2rem;
            align-items: center;
        }
        .nav-link {
            color: #cbd5e1;
            font-weight: 500;
            padding: 0.5rem 1rem;
            border-radius: var(--border-radius);
        }
        .nav-link:hover {
            background-color: rgba(255, 255, 255, 0.1);
            color: var(--white);
        }
        .nav-link.active {
            background-color: var(--secondary-gold);
            color: var(--dark-bg);
        }
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 4px;
        }
        .hamburger span {
            width: 25px;
            height: 3px;
            background-color: var(--white);
            border-radius: 2px;
            transition: var(--transition);
        }
        .search-container {
            position: relative;
        }
        #search-form {
            display: flex;
        }
        #search-input {
            padding: 0.6rem 1rem;
            border: none;
            border-radius: var(--border-radius) 0 0 var(--border-radius);
            background: rgba(255, 255, 255, 0.1);
            color: var(--white);
            min-width: 250px;
        }
        #search-input::placeholder {
            color: #94a3b8;
        }
        #search-button {
            background-color: var(--accent-green);
            border: none;
            color: white;
            padding: 0.6rem 1.2rem;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
            cursor: pointer;
        }
        .breadcrumb {
            background-color: #e2e8f0;
            padding: 1rem 5%;
            font-size: 0.9rem;
            color: var(--text-light);
        }
        .breadcrumb a:hover {
            color: var(--primary-blue);
        }
        .container {
            max-width: 1400px;
            margin: 2rem auto;
            padding: 0 5%;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        article {
            background-color: var(--white);
            border-radius: var(--border-radius);
            padding: 2.5rem;
            box-shadow: var(--shadow);
        }
        h1 {
            font-size: 2.8rem;
            color: var(--primary-blue);
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        .article-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: var(--text-light);
            font-size: 0.9rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid #e2e8f0;
            margin-bottom: 2rem;
            flex-wrap: wrap;
            gap: 1rem;
        }
        .update-time {
            color: var(--accent-green);
            font-weight: 600;
        }
        h2 {
            font-size: 2rem;
            color: var(--dark-bg);
            margin: 2.5rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--secondary-gold);
        }
        h3 {
            font-size: 1.5rem;
            color: var(--primary-blue);
            margin: 2rem 0 1rem;
        }
        h4 {
            font-size: 1.2rem;
            color: var(--text-dark);
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.2rem;
            text-align: justify;
        }
        strong {
            color: var(--primary-blue);
        }
        .highlight {
            background-color: #fef3c7;
            padding: 1.5rem;
            border-left: 4px solid var(--secondary-gold);
            margin: 1.5rem 0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }
        .inline-link {
            color: var(--accent-green);
            font-weight: 600;
            border-bottom: 1px dotted var(--accent-green);
        }
        .inline-link:hover {
            color: var(--primary-blue);
            border-bottom-style: solid;
        }
        .feature-img {
            width: 100%;
            border-radius: var(--border-radius);
            margin: 2rem 0;
            box-shadow: var(--shadow);
        }
        .schedule-table {
            width: 100%;
            border-collapse: collapse;
            margin: 2rem 0;
            box-shadow: var(--shadow);
            border-radius: var(--border-radius);
            overflow: hidden;
        }
        .schedule-table th {
            background-color: var(--primary-blue);
            color: white;
            padding: 1rem;
            text-align: left;
        }
        .schedule-table td {
            padding: 1rem;
            border-bottom: 1px solid #e2e8f0;
        }
        .schedule-table tr:hover {
            background-color: #f1f5f9;
        }
        .match-time {
            color: var(--accent-green);
            font-weight: 600;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .widget {
            background-color: var(--white);
            border-radius: var(--border-radius);
            padding: 1.5rem;
            box-shadow: var(--shadow);
        }
        .widget-title {
            font-size: 1.2rem;
            color: var(--primary-blue);
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--secondary-gold);
        }
        .related-links {
            list-style: none;
        }
        .related-links li {
            margin-bottom: 0.8rem;
            padding-left: 1.2rem;
            position: relative;
        }
        .related-links li:before {
            content: "🏏";
            position: absolute;
            left: 0;
        }
        .related-links a:hover {
            color: var(--accent-green);
        }
        .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-top: 1.5rem;
        }
        .form-group {
            display: flex;
            flex-direction: column;
        }
        .form-input, .form-textarea {
            padding: 0.8rem;
            border: 1px solid #cbd5e1;
            border-radius: var(--border-radius);
            font-family: inherit;
        }
        .form-textarea {
            min-height: 120px;
            resize: vertical;
        }
        .star-rating {
            display: flex;
            gap: 5px;
            font-size: 1.8rem;
            color: #cbd5e1;
            cursor: pointer;
            margin-bottom: 1rem;
        }
        .star-rating .star {
            transition: var(--transition);
        }
        .star-rating .star:hover,
        .star-rating .star.active {
            color: var(--secondary-gold);
        }
        .submit-btn {
            background-color: var(--accent-green);
            color: white;
            border: none;
            padding: 1rem;
            border-radius: var(--border-radius);
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }
        .submit-btn:hover {
            background-color: var(--primary-blue);
        }
        .site-footer {
            background-color: var(--dark-bg);
            color: #cbd5e1;
            padding: 3rem 5% 1.5rem;
            margin-top: 3rem;
        }
        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            padding-bottom: 2rem;
            border-bottom: 1px solid #334155;
        }
        .footer-logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--white);
            margin-bottom: 1rem;
        }
        .friend-links {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin: 1rem 0;
        }
        .friend-link {
            background-color: #1e293b;
            color: #94a3b8;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.9rem;
        }
        .friend-link:hover {
            background-color: var(--primary-blue);
            color: white;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            color: #94a3b8;
            font-size: 0.9rem;
        }
        @media (max-width: 1024px) {
            .container {
                grid-template-columns: 1fr;
            }
            h1 {
                font-size: 2.3rem;
            }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }
            .main-nav {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: var(--dark-bg);
                flex-direction: column;
                padding: 1rem 0;
                clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
                transition: clip-path 0.4s ease;
            }
            .main-nav.active {
                clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            }
            .nav-link {
                width: 90%;
                text-align: center;
            }
            #search-input {
                min-width: 200px;
            }
            .header-container {
                flex-wrap: wrap;
                gap: 1rem;
            }
            .article-meta {
                flex-direction: column;
                align-items: flex-start;
            }
        }
        @media (max-width: 480px) {
            .site-header, .breadcrumb, .container, .site-footer {
                padding-left: 3%;
                padding-right: 3%;
            }
            article {
                padding: 1.5rem;
            }
            h1 {
                font-size: 1.9rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            .schedule-table {
                font-size: 0.9rem;
            }
            .schedule-table th,
            .schedule-table td {
                padding: 0.7rem;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        article, .widget {
            animation: fadeIn 0.5s ease-out;
        }
