        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
            line-height: 1.7;
            color: #333;
            background-color: #f8f9fa;
            max-width: 100vw;
            overflow-x: hidden;
        }
        img { max-width: 100%; height: auto; display: block; }
        h1, h2, h3, h4 { color: #1a365d; margin-bottom: 1rem; font-weight: 700; line-height: 1.2; }
        h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); margin-top: 1.5rem; }
        h2 { font-size: clamp(2rem, 4vw, 2.5rem); margin-top: 3rem; padding-bottom: 0.5rem; border-bottom: 3px solid #e31837; }
        h3 { font-size: clamp(1.5rem, 3vw, 2rem); margin-top: 2rem; color: #2d3748; }
        h4 { font-size: 1.25rem; margin-top: 1.5rem; color: #4a5568; }
        p { margin-bottom: 1.5rem; font-size: 1.1rem; }
        a { color: #e31837; text-decoration: none; transition: color 0.3s ease; }
        a:hover { color: #1a365d; text-decoration: underline; }
        strong { font-weight: 700; color: #1a365d; }
        em { font-style: italic; }
        .lead { font-size: 1.25rem; color: #4a5568; font-weight: 300; }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .main-content { display: grid; grid-template-columns: 1fr; gap: 3rem; padding: 2rem 0; }
        @media (min-width: 992px) {
            .main-content { grid-template-columns: 3fr 1fr; }
            .sidebar { order: 2; }
            .article-body { order: 1; }
        }
        .site-header {
            background: linear-gradient(135deg, #1a365d 0%, #2d3748 100%);
            color: white;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: white;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .my-logo:hover { text-decoration: none; color: #e31837; }
        .my-logo::before { content: "⚽"; font-size: 2rem; }
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 4px;
            background: none;
            border: none;
            padding: 5px;
        }
        .hamburger span {
            width: 25px;
            height: 3px;
            background-color: white;
            border-radius: 2px;
            transition: 0.3s;
        }
        .nav-menu {
            display: flex;
            gap: 2rem;
            list-style: none;
        }
        .nav-menu a {
            color: white;
            font-weight: 500;
            padding: 0.5rem 0;
            position: relative;
        }
        .nav-menu a:hover {
            color: #e31837;
            text-decoration: none;
        }
        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #e31837;
            transition: width 0.3s;
        }
        .nav-menu a:hover::after { width: 100%; }
        @media (max-width: 768px) {
            .hamburger { display: flex; }
            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                position: absolute;
                top: 100%;
                left: 0;
                background: #1a365d;
                padding: 1rem;
                gap: 1rem;
                box-shadow: 0 5px 10px rgba(0,0,0,0.2);
            }
            .nav-menu.active { display: flex; }
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: #edf2f7;
            font-size: 0.9rem;
        }
        .breadcrumb a { color: #4a5568; }
        .breadcrumb a:hover { color: #e31837; }
        .breadcrumb span { color: #718096; }
        .hero-image {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: 10px;
            margin: 2rem 0;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        .update-time {
            background-color: #e6fffa;
            padding: 1rem;
            border-left: 5px solid #38b2ac;
            margin: 2rem 0;
            font-size: 0.95rem;
            color: #234e52;
        }
        .content-card {
            background: white;
            border-radius: 10px;
            padding: 2rem;
            margin-bottom: 2rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .content-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        .highlight-box {
            background: linear-gradient(120deg, #fff5f5 0%, #fed7d7 100%);
            border-left: 5px solid #e31837;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .form-group { margin-bottom: 1.5rem; }
        .form-label { display: block; margin-bottom: 0.5rem; font-weight: 600; color: #2d3748; }
        .form-input, .form-textarea, .form-select {
            width: 100%;
            padding: 0.75rem 1rem;
            border: 2px solid #cbd5e0;
            border-radius: 8px;
            font-size: 1rem;
            transition: border-color 0.3s;
        }
        .form-input:focus, .form-textarea:focus, .form-select:focus {
            outline: none;
            border-color: #e31837;
            box-shadow: 0 0 0 3px rgba(227, 24, 55, 0.1);
        }
        .form-textarea { min-height: 150px; resize: vertical; }
        .btn {
            display: inline-block;
            padding: 0.75rem 2rem;
            background: #e31837;
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s, transform 0.2s;
        }
        .btn:hover {
            background: #1a365d;
            transform: translateY(-2px);
            text-decoration: none;
        }
        .btn:active { transform: translateY(0); }
        .rating-stars { display: flex; gap: 5px; margin: 1rem 0; }
        .star { font-size: 1.5rem; color: #cbd5e0; cursor: pointer; transition: color 0.2s; }
        .star:hover, .star.active { color: #f6ad55; }
        .sidebar-widget {
            background: white;
            padding: 1.5rem;
            border-radius: 10px;
            margin-bottom: 2rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .widget-title {
            font-size: 1.25rem;
            color: #1a365d;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #e2e8f0;
        }
        .link-list { list-style: none; }
        .link-list li { margin-bottom: 0.75rem; padding-left: 1rem; position: relative; }
        .link-list li::before {
            content: "→";
            position: absolute;
            left: 0;
            color: #e31837;
        }
        .site-footer {
            background: #1a365d;
            color: #cbd5e0;
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        .footer-title {
            color: white;
            font-size: 1.25rem;
            margin-bottom: 1.5rem;
        }
        friend-link {
            display: block;
            padding: 0.5rem 0;
            color: #90cdf4;
            border-bottom: 1px solid #2d3748;
        }
        friend-link:hover { color: white; text-decoration: underline; }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid #2d3748;
            font-size: 0.9rem;
            color: #a0aec0;
        }
        .text-center { text-align: center; }
        .mt-1 { margin-top: 1rem; }
        .mt-2 { margin-top: 2rem; }
        .mb-1 { margin-bottom: 1rem; }
        .mb-2 { margin-bottom: 2rem; }
        .py-2 { padding-top: 2rem; padding-bottom: 2rem; }
        .hidden { display: none; }
@font-face{font-family:'Font Awesome 5 Free';font-style:normal;font-weight:900;font-display:block;src:url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/webfonts/fa-solid-900.woff2) format('woff2')}
        .fa{font-family:'Font Awesome 5 Free';font-weight:900;display:inline-block;font-style:normal;font-variant:normal;text-rendering:auto;-webkit-font-smoothing:antialiased}
        .fa-search:before{content:"\f002"}
        .fa-user:before{content:"\f007"}
        .fa-star:before{content:"\f005"}
        .fa-calendar-alt:before{content:"\f073"}
        .fa-ticket-alt:before{content:"\f145"}
        .fa-share-alt:before{content:"\f1e0"}
        .fa-globe-americas:before{content:"\f57d"}
