        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #1a1a2e;
            background: #faf9f6;
            padding: 0;
            margin: 0;
        }
        a {
            color: #0056b3;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #ff6f00;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.3;
            color: #0a0a1a;
        }
        h1 {
            font-size: 2.4rem;
            margin-bottom: 1.2rem;
        }
        h2 {
            font-size: 1.8rem;
            margin-top: 2.2rem;
            margin-bottom: 1rem;
            border-bottom: 3px solid #ff6f00;
            padding-bottom: 0.4rem;
        }
        h3 {
            font-size: 1.4rem;
            margin-top: 1.8rem;
            margin-bottom: 0.8rem;
        }
        h4 {
            font-size: 1.15rem;
            margin-top: 1.4rem;
            margin-bottom: 0.6rem;
        }
        p {
            margin-bottom: 1rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #0a0a2e 0%, #1a1a4e 100%);
            color: #fff;
            padding: 0.6rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }
        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.6rem;
            font-weight: 800;
            color: #fff;
            text-decoration: none;
            letter-spacing: -0.5px;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .my-logo .logo-icon {
            color: #ff6f00;
            font-size: 1.8rem;
        }
        .my-logo:hover {
            color: #ff6f00;
            text-decoration: none;
        }
        .my-logo small {
            font-size: 0.7rem;
            font-weight: 400;
            color: #aaa;
            letter-spacing: 0;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 4px 10px;
        }
        .main-nav {
            display: flex;
            gap: 0.8rem;
            align-items: center;
            flex-wrap: wrap;
        }
        .main-nav a {
            color: #ddd;
            padding: 0.4rem 0.8rem;
            border-radius: 6px;
            font-size: 0.9rem;
            font-weight: 500;
            transition: all 0.2s;
        }
        .main-nav a:hover {
            color: #fff;
            background: rgba(255, 111, 0, 0.3);
            text-decoration: none;
        }
        .main-nav a.active {
            color: #ff6f00;
            background: rgba(255, 111, 0, 0.15);
        }
        .breadcrumb {
            background: #f0ece4;
            padding: 0.6rem 0;
            font-size: 0.85rem;
            border-bottom: 1px solid #e0d8cc;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.6rem;
            padding: 0;
            margin: 0;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.5rem;
            color: #888;
        }
        .breadcrumb a {
            color: #0056b3;
        }
        .breadcrumb .current {
            color: #555;
            font-weight: 600;
        }
        .hero {
            background: linear-gradient(135deg, #0f0f3a 0%, #2a1a0a 100%);
            color: #fff;
            padding: 3rem 0 2.5rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .hero::after {
            content: "⚽";
            font-size: 12rem;
            position: absolute;
            right: -2rem;
            bottom: -2rem;
            opacity: 0.06;
            pointer-events: none;
        }
        .hero h1 {
            color: #fff;
            font-size: 2.8rem;
            margin-bottom: 0.6rem;
            text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
        }
        .hero h1 span {
            color: #ff6f00;
        }
        .hero p {
            font-size: 1.15rem;
            max-width: 750px;
            margin: 0 auto 1.2rem;
            color: #ccc;
        }
        .hero .tagline {
            display: inline-block;
            background: rgba(255, 111, 0, 0.2);
            padding: 0.3rem 1.2rem;
            border-radius: 30px;
            font-size: 0.95rem;
            color: #ffaa55;
            border: 1px solid rgba(255, 111, 0, 0.3);
        }
        .hero .last-update {
            display: block;
            margin-top: 1.2rem;
            font-size: 0.8rem;
            color: #999;
        }
        .search-section {
            background: #fff;
            padding: 1.8rem 0;
            border-bottom: 1px solid #e0d8cc;
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
            gap: 10px;
            flex-wrap: wrap;
            justify-content: center;
        }
        .search-form input {
            flex: 1;
            min-width: 200px;
            padding: 0.8rem 1.2rem;
            border: 2px solid #ddd;
            border-radius: 30px;
            font-size: 1rem;
            outline: none;
            transition: border 0.3s;
        }
        .search-form input:focus {
            border-color: #ff6f00;
        }
        .search-form button {
            padding: 0.8rem 2rem;
            background: #ff6f00;
            color: #fff;
            border: none;
            border-radius: 30px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s, transform 0.1s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-form button:hover {
            background: #e65c00;
            transform: scale(1.02);
        }
        .content-area {
            padding: 2.5rem 0 3rem;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
        }
        .content-main {
            background: #fff;
            padding: 2rem 2.2rem;
            border-radius: 16px;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
        }
        .content-main .featured-image {
            margin: 1.2rem 0 2rem;
            border-radius: 14px;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
        }
        .content-main .featured-image figcaption {
            font-size: 0.85rem;
            color: #777;
            margin-top: 0.5rem;
            text-align: center;
        }
        .sidebar {
            background: #fff;
            padding: 1.6rem 1.8rem;
            border-radius: 16px;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
            height: fit-content;
            position: sticky;
            top: 80px;
        }
        .sidebar h3 {
            font-size: 1.2rem;
            border-bottom: 2px solid #ff6f00;
            padding-bottom: 0.4rem;
            margin-top: 0;
        }
        .sidebar ul {
            list-style: none;
            padding: 0;
        }
        .sidebar ul li {
            padding: 0.5rem 0;
            border-bottom: 1px solid #f0ece4;
        }
        .sidebar ul li a {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .sidebar ul li a i {
            color: #ff6f00;
            width: 18px;
        }
        .interaction-section {
            background: #fff;
            padding: 2rem 2.2rem;
            border-radius: 16px;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
            margin-top: 2.5rem;
        }
        .interaction-section h2 {
            margin-top: 0;
        }
        .comment-form,
        .rating-form {
            display: flex;
            flex-direction: column;
            gap: 14px;
            max-width: 600px;
        }
        .comment-form input,
        .comment-form textarea,
        .rating-form select,
        .rating-form input {
            padding: 0.7rem 1rem;
            border: 2px solid #e0d8cc;
            border-radius: 10px;
            font-size: 0.95rem;
            font-family: inherit;
            outline: none;
            transition: border 0.3s;
        }
        .comment-form input:focus,
        .comment-form textarea:focus,
        .rating-form select:focus,
        .rating-form input:focus {
            border-color: #ff6f00;
        }
        .comment-form textarea {
            min-height: 100px;
            resize: vertical;
        }
        .comment-form button,
        .rating-form button {
            align-self: flex-start;
            padding: 0.7rem 2.2rem;
            background: #0a0a2e;
            color: #fff;
            border: none;
            border-radius: 30px;
            font-size: 0.95rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
        }
        .comment-form button:hover,
        .rating-form button:hover {
            background: #ff6f00;
        }
        .rating-stars {
            display: flex;
            gap: 4px;
            font-size: 1.6rem;
            color: #ffb829;
            cursor: pointer;
        }
        .rating-stars i {
            transition: transform 0.15s;
        }
        .rating-stars i:hover {
            transform: scale(1.2);
        }
        .site-footer {
            background: #0a0a2e;
            color: #bbb;
            padding: 2.5rem 0 1.2rem;
            margin-top: 3rem;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2rem;
        }
        .site-footer h3 {
            color: #fff;
            font-size: 1.1rem;
            margin-top: 0;
            border-bottom: 2px solid #ff6f00;
            padding-bottom: 0.4rem;
        }
        .site-footer a {
            color: #aaa;
        }
        .site-footer a:hover {
            color: #ff6f00;
        }
        .site-footer .copyright {
            grid-column: 1 / -1;
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #1a1a4e;
            font-size: 0.85rem;
            color: #777;
        }
        friend-link {
            display: block;
            margin-top: 1rem;
        }
        friend-link a {
            display: inline-block;
            margin-right: 1.2rem;
            margin-bottom: 0.4rem;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
            }
            .footer-inner {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                gap: 0.3rem;
                padding: 1rem 0 0.4rem;
            }
            .main-nav.open {
                display: flex;
            }
            .header-inner {
                position: relative;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .content-main {
                padding: 1.2rem;
            }
            .interaction-section {
                padding: 1.2rem;
            }
            .sidebar {
                padding: 1.2rem;
            }
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            .search-form input {
                min-width: 150px;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 12px;
            }
            .hero h1 {
                font-size: 1.5rem;
            }
            .my-logo {
                font-size: 1.2rem;
            }
            .search-form button {
                padding: 0.6rem 1.2rem;
                font-size: 0.85rem;
            }
        }
        .highlight {
            background: linear-gradient(to right, #fff3e0, #ffe0b2);
            padding: 0.1rem 0.4rem;
            border-radius: 4px;
            font-weight: 600;
        }
        .data-box {
            background: #f8f4ee;
            border-left: 4px solid #ff6f00;
            padding: 1rem 1.4rem;
            border-radius: 0 10px 10px 0;
            margin: 1.2rem 0;
        }
        .data-box strong {
            color: #0a0a2e;
        }
        .emoji-big {
            font-size: 1.8rem;
            vertical-align: middle;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.2rem 0;
        }
        .table-wrap table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.92rem;
        }
        .table-wrap th,
        .table-wrap td {
            padding: 0.7rem 1rem;
            border: 1px solid #e0d8cc;
            text-align: left;
        }
        .table-wrap th {
            background: #0a0a2e;
            color: #fff;
            font-weight: 600;
        }
        .table-wrap tr:nth-child(even) {
            background: #f8f4ee;
        }
        .btn-back-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: #ff6f00;
            color: #fff;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            box-shadow: 0 4px 16px rgba(255, 111, 0, 0.3);
            transition: transform 0.2s, background 0.2s;
            z-index: 999;
            border: none;
            cursor: pointer;
        }
        .btn-back-top:hover {
            transform: translateY(-4px);
            background: #e65c00;
        }
        @media (max-width: 600px) {
            .btn-back-top {
                bottom: 16px;
                right: 16px;
                width: 38px;
                height: 38px;
                font-size: 1rem;
            }
        }
