        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, Roboto, 'Helvetica Neue', sans-serif;
            background: #f4f7fb;
            color: #1e2a36;
            line-height: 1.7;
            padding: 0;
            margin: 0;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: #c0392b;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover {
            color: #a93226;
            text-decoration: underline;
        }
        ul,
        ol {
            padding-left: 1.4rem;
            margin-bottom: 1.2rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.2rem;
        }
        .site-header {
            background: linear-gradient(135deg, #1a2a3a 0%, #0f1a26 100%);
            color: #fff;
            padding: 0.8rem 0;
            position: sticky;
            top: 0;
            z-index: 999;
            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.9rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            color: #fff;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            transition: opacity 0.2s;
        }
        .my-logo:hover {
            opacity: 0.85;
            text-decoration: none;
            color: #fff;
        }
        .my-logo i {
            color: #f1c40f;
            font-size: 2rem;
        }
        .my-logo span {
            background: linear-gradient(135deg, #f1c40f, #e67e22);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.3rem 0.6rem;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        .main-nav {
            display: flex;
            align-items: center;
            gap: 0.2rem;
            flex-wrap: wrap;
        }
        .main-nav a {
            color: #dfe6ed;
            padding: 0.5rem 1rem;
            border-radius: 30px;
            font-size: 0.95rem;
            font-weight: 500;
            transition: background 0.2s, color 0.2s;
            white-space: nowrap;
        }
        .main-nav a:hover {
            background: rgba(255, 255, 255, 0.12);
            color: #f1c40f;
            text-decoration: none;
        }
        .main-nav a.active {
            background: #c0392b;
            color: #fff;
        }
        .breadcrumb-wrap {
            background: #eef2f7;
            padding: 0.6rem 0;
            border-bottom: 1px solid #dce3ec;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.3rem 0.6rem;
            font-size: 0.9rem;
            color: #4a5a6a;
        }
        .breadcrumb a {
            color: #c0392b;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb .sep {
            color: #8a9aaa;
            font-weight: 300;
        }
        .hero {
            background: linear-gradient(135deg, #1a2a3a 0%, #2c3e50 100%);
            color: #fff;
            padding: 3rem 0 2.5rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .hero::after {
            content: "⚽";
            position: absolute;
            right: -30px;
            bottom: -40px;
            font-size: 18rem;
            opacity: 0.06;
            pointer-events: none;
        }
        .hero h1 {
            font-size: 2.8rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            margin-bottom: 0.6rem;
            line-height: 1.2;
        }
        .hero h1 i {
            color: #f1c40f;
            margin-right: 0.4rem;
        }
        .hero p {
            font-size: 1.15rem;
            max-width: 750px;
            margin: 0 auto 1.2rem;
            opacity: 0.9;
        }
        .hero .meta-info {
            font-size: 0.95rem;
            opacity: 0.75;
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            flex-wrap: wrap;
        }
        .hero .meta-info i {
            margin-right: 0.3rem;
        }
        .content-wrap {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            padding: 2.5rem 0;
        }
        .main-article {
            background: #fff;
            border-radius: 18px;
            padding: 2.2rem 2.5rem;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
        }
        .main-article h2 {
            font-size: 2rem;
            font-weight: 700;
            color: #1a2a3a;
            margin: 2.5rem 0 1rem 0;
            padding-bottom: 0.5rem;
            border-bottom: 4px solid #f1c40f;
            display: inline-block;
        }
        .main-article h2:first-of-type {
            margin-top: 0;
        }
        .main-article h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #2c3e50;
            margin: 1.8rem 0 0.8rem 0;
        }
        .main-article h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #34495e;
            margin: 1.4rem 0 0.5rem 0;
        }
        .main-article p {
            margin-bottom: 1.2rem;
            font-size: 1.05rem;
            color: #2d3a4a;
        }
        .main-article .feature-img {
            border-radius: 14px;
            margin: 1.8rem 0;
            box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
            width: 100%;
            max-height: 480px;
            object-fit: cover;
        }
        .main-article .highlight-box {
            background: #fef9e7;
            border-left: 5px solid #f1c40f;
            padding: 1.2rem 1.8rem;
            border-radius: 0 12px 12px 0;
            margin: 1.8rem 0;
        }
        .main-article .highlight-box p {
            margin-bottom: 0.3rem;
        }
        .main-article ul,
        .main-article ol {
            margin-bottom: 1.4rem;
        }
        .main-article li {
            margin-bottom: 0.5rem;
        }
        .main-article strong {
            color: #1a2a3a;
        }
        .main-article .emoji-big {
            font-size: 1.8rem;
            line-height: 1;
            margin-right: 0.3rem;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 1.8rem;
        }
        .sidebar-card {
            background: #fff;
            border-radius: 16px;
            padding: 1.5rem 1.5rem;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
        }
        .sidebar-card h3 {
            font-size: 1.3rem;
            font-weight: 600;
            color: #1a2a3a;
            margin-bottom: 1rem;
            border-bottom: 3px solid #f1c40f;
            padding-bottom: 0.4rem;
        }
        .sidebar-card ul {
            list-style: none;
            padding-left: 0;
        }
        .sidebar-card ul li {
            padding: 0.4rem 0;
            border-bottom: 1px solid #f0f2f5;
        }
        .sidebar-card ul li:last-child {
            border-bottom: none;
        }
        .sidebar-card ul li a {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            font-weight: 500;
        }
        .sidebar-card ul li a i {
            color: #c0392b;
            width: 1.2rem;
            text-align: center;
        }
        .search-form {
            display: flex;
            gap: 0.5rem;
            margin-top: 0.3rem;
        }
        .search-form input[type="text"] {
            flex: 1;
            padding: 0.7rem 1rem;
            border: 2px solid #dce3ec;
            border-radius: 30px;
            font-size: 0.95rem;
            outline: none;
            transition: border 0.2s;
        }
        .search-form input[type="text"]:focus {
            border-color: #c0392b;
        }
        .search-form button {
            background: #c0392b;
            color: #fff;
            border: none;
            border-radius: 30px;
            padding: 0.7rem 1.3rem;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s;
        }
        .search-form button:hover {
            background: #a93226;
        }
        .comment-section,
        .rating-section {
            margin-top: 2.5rem;
            padding-top: 1.8rem;
            border-top: 2px solid #eef2f7;
        }
        .comment-section h3,
        .rating-section h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: #1a2a3a;
        }
        .comment-form textarea,
        .comment-form input[type="text"] {
            width: 100%;
            padding: 0.8rem 1.2rem;
            border: 2px solid #dce3ec;
            border-radius: 12px;
            font-size: 1rem;
            font-family: inherit;
            outline: none;
            transition: border 0.2s;
            margin-bottom: 0.8rem;
            resize: vertical;
        }
        .comment-form textarea:focus,
        .comment-form input:focus {
            border-color: #c0392b;
        }
        .comment-form .form-row {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }
        .comment-form .form-row input {
            flex: 1;
        }
        .comment-form button {
            background: #c0392b;
            color: #fff;
            border: none;
            border-radius: 30px;
            padding: 0.7rem 2rem;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
        }
        .comment-form button:hover {
            background: #a93226;
        }
        .comment-form button:active {
            transform: scale(0.97);
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 0.3rem;
            margin-bottom: 1rem;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 2.2rem;
            color: #dce3ec;
            cursor: pointer;
            transition: color 0.15s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f1c40f;
        }
        .rating-form button {
            background: #c0392b;
            color: #fff;
            border: none;
            border-radius: 30px;
            padding: 0.6rem 1.8rem;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s;
        }
        .rating-form button:hover {
            background: #a93226;
        }
        friend-link {
            display: block;
            background: #1a2a3a;
            color: #dfe6ed;
            padding: 1.8rem 0;
            margin-top: 2rem;
        }
        friend-link .container {
            display: flex;
            flex-wrap: wrap;
            gap: 1.2rem 2.5rem;
            justify-content: center;
        }
        friend-link a {
            color: #f1c40f;
            font-weight: 500;
            font-size: 0.95rem;
        }
        friend-link a:hover {
            color: #fff;
            text-decoration: underline;
        }
        friend-link .fl-label {
            font-weight: 600;
            color: #8a9aaa;
            font-size: 0.9rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            width: 100%;
            text-align: center;
            margin-bottom: 0.3rem;
        }
        .site-footer {
            background: #0f1a26;
            color: #b0c4d8;
            padding: 1.5rem 0;
            text-align: center;
            font-size: 0.9rem;
        }
        .site-footer a {
            color: #f1c40f;
        }
        .site-footer a:hover {
            color: #fff;
        }
        .site-footer .copyright {
            margin-top: 0.3rem;
            opacity: 0.7;
            font-size: 0.85rem;
        }
        @media (max-width: 1024px) {
            .content-wrap {
                grid-template-columns: 1fr;
            }
            .sidebar {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 1.5rem;
            }
        }
        @media (max-width: 768px) {
            .header-inner {
                flex-wrap: wrap;
            }
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                padding-top: 1rem;
                gap: 0.2rem;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 0.7rem 1.2rem;
                border-radius: 8px;
                white-space: normal;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .main-article {
                padding: 1.5rem 1.2rem;
            }
            .main-article h2 {
                font-size: 1.6rem;
            }
            .main-article h3 {
                font-size: 1.3rem;
            }
            .sidebar {
                grid-template-columns: 1fr;
            }
            .breadcrumb {
                font-size: 0.8rem;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            .hero .meta-info {
                flex-direction: column;
                gap: 0.3rem;
            }
            .comment-form .form-row {
                flex-direction: column;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 0.9rem;
            }
            .hero h1 {
                font-size: 1.6rem;
            }
            .main-article {
                padding: 1rem 0.9rem;
            }
            .main-article p {
                font-size: 0.98rem;
            }
            .search-form {
                flex-wrap: wrap;
            }
            .search-form input[type="text"] {
                min-width: 120px;
            }
        }
        .scroll-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            background: #c0392b;
            color: #fff;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            box-shadow: 0 6px 20px rgba(192, 57, 43, 0.35);
            cursor: pointer;
            transition: transform 0.2s, opacity 0.2s;
            opacity: 0;
            pointer-events: none;
            border: none;
            z-index: 50;
        }
        .scroll-top.visible {
            opacity: 1;
            pointer-events: all;
        }
        .scroll-top:hover {
            transform: scale(1.08);
        }
