        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
            background: #f4f7fa;
            color: #1e2a3a;
            line-height: 1.75;
            padding: 0;
            margin: 0;
        }
        :root {
            --primary: #0c4a6e;
            --primary-light: #1e6f9f;
            --secondary: #f59e0b;
            --secondary-light: #fbbf24;
            --accent: #10b981;
            --dark: #0f172a;
            --gray-50: #f8fafc;
            --gray-100: #f1f5f9;
            --gray-200: #e2e8f0;
            --gray-300: #cbd5e1;
            --gray-600: #64748b;
            --gray-800: #334155;
            --white: #ffffff;
            --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
            --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.07);
            --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
            --radius: 12px;
            --radius-sm: 8px;
            --transition: 0.25s ease;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.25;
            color: var(--dark);
            margin-top: 1.8em;
            margin-bottom: 0.6em;
            letter-spacing: -0.01em;
        }
        h1 {
            font-size: 2.4rem;
            margin-top: 0.4em;
            border-left: 6px solid var(--secondary);
            padding-left: 1rem;
        }
        h2 {
            font-size: 1.9rem;
            border-bottom: 2px solid var(--gray-200);
            padding-bottom: 0.35rem;
        }
        h3 {
            font-size: 1.45rem;
            color: var(--primary-light);
        }
        h4 {
            font-size: 1.15rem;
            color: var(--gray-800);
        }
        p {
            margin-bottom: 1.2em;
            color: #2d3a4a;
        }
        a {
            color: var(--primary-light);
            text-decoration: none;
            transition: color var(--transition);
        }
        a:hover {
            color: var(--secondary);
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: var(--radius);
            box-shadow: var(--shadow-sm);
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }
        .site-header {
            background: linear-gradient(135deg, var(--dark) 0%, #1a2a4a 100%);
            color: var(--white);
            padding: 0 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: var(--shadow-md);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0.8rem 1.5rem;
            max-width: 1200px;
            margin: 0 auto;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.7rem;
            font-weight: 800;
            color: var(--white);
            background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-decoration: none;
            letter-spacing: -0.5px;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .my-logo i {
            -webkit-text-fill-color: var(--secondary);
            font-size: 1.8rem;
        }
        .my-logo:hover {
            opacity: 0.9;
            text-decoration: none;
        }
        .my-logo span {
            font-size: 0.75rem;
            display: block;
            -webkit-text-fill-color: var(--gray-300);
            font-weight: 400;
            letter-spacing: 0.3px;
        }
        .nav-toggle {
            display: none;
            background: transparent;
            border: none;
            color: var(--white);
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.25rem 0.5rem;
            border-radius: var(--radius-sm);
            transition: background var(--transition);
        }
        .nav-toggle:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        .nav-menu {
            display: flex;
            gap: 0.2rem;
            align-items: center;
            flex-wrap: wrap;
        }
        .nav-menu a {
            color: var(--gray-200);
            padding: 0.55rem 1.1rem;
            border-radius: var(--radius-sm);
            font-weight: 500;
            font-size: 0.95rem;
            transition: all var(--transition);
            white-space: nowrap;
        }
        .nav-menu a:hover {
            background: rgba(255, 255, 255, 0.12);
            color: var(--white);
            text-decoration: none;
        }
        .nav-menu a.active {
            background: var(--secondary);
            color: var(--dark);
        }
        .breadcrumb {
            background: var(--gray-100);
            padding: 0.7rem 1.5rem;
            font-size: 0.85rem;
            color: var(--gray-600);
            border-bottom: 1px solid var(--gray-200);
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem 0.2rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin: 0 0.5rem;
            color: var(--gray-300);
            font-weight: 700;
        }
        .breadcrumb a {
            color: var(--primary-light);
        }
        .breadcrumb .current {
            color: var(--gray-800);
            font-weight: 600;
        }
        .hero {
            background: linear-gradient(135deg, #0b1a2e 0%, #1a3a5c 100%);
            color: var(--white);
            padding: 3.5rem 1.5rem 4rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .hero::after {
            content: "⚽";
            position: absolute;
            font-size: 20rem;
            opacity: 0.04;
            right: -4rem;
            bottom: -5rem;
            transform: rotate(15deg);
            pointer-events: none;
        }
        .hero h1 {
            color: var(--white);
            border-left: none;
            padding-left: 0;
            font-size: 2.8rem;
            margin-top: 0;
        }
        .hero p {
            color: var(--gray-300);
            font-size: 1.2rem;
            max-width: 720px;
            margin: 1rem auto 0;
        }
        .hero .badge {
            display: inline-block;
            background: var(--secondary);
            color: var(--dark);
            font-weight: 700;
            padding: 0.3rem 1.2rem;
            border-radius: 40px;
            font-size: 0.85rem;
            letter-spacing: 1px;
            margin-bottom: 1rem;
        }
        .main-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            padding: 2.5rem 1.5rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        .content-area article {
            background: var(--white);
            padding: 2.2rem 2.5rem;
            border-radius: var(--radius);
            box-shadow: var(--shadow-sm);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-card {
            background: var(--white);
            padding: 1.5rem 1.8rem;
            border-radius: var(--radius);
            box-shadow: var(--shadow-sm);
        }
        .sidebar-card h3 {
            margin-top: 0;
            font-size: 1.2rem;
            border-bottom: 2px solid var(--gray-200);
            padding-bottom: 0.5rem;
        }
        .sidebar-card ul {
            list-style: none;
            padding: 0;
            margin: 0.8rem 0 0;
        }
        .sidebar-card li {
            margin-bottom: 0.5rem;
            border-bottom: 1px solid var(--gray-100);
            padding-bottom: 0.5rem;
        }
        .sidebar-card li a {
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .sidebar-card li a i {
            color: var(--secondary);
            font-size: 0.8rem;
        }
        .featured-image {
            margin: 2rem 0;
            border-radius: var(--radius);
            overflow: hidden;
            position: relative;
        }
        .featured-image img {
            width: 100%;
            object-fit: cover;
            max-height: 420px;
        }
        .featured-image figcaption {
            background: rgba(0, 0, 0, 0.65);
            color: var(--white);
            padding: 0.6rem 1.2rem;
            font-size: 0.85rem;
            text-align: center;
        }
        .search-form {
            display: flex;
            gap: 0.5rem;
            margin: 1.8rem 0;
            flex-wrap: wrap;
        }
        .search-form input {
            flex: 1;
            min-width: 160px;
            padding: 0.75rem 1.2rem;
            border: 2px solid var(--gray-200);
            border-radius: 40px;
            font-size: 1rem;
            outline: none;
            transition: border var(--transition);
        }
        .search-form input:focus {
            border-color: var(--primary-light);
        }
        .search-form button {
            padding: 0.75rem 1.8rem;
            background: var(--primary);
            color: var(--white);
            border: none;
            border-radius: 40px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background var(--transition);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-form button:hover {
            background: var(--primary-light);
        }
        .feedback-section {
            background: var(--white);
            padding: 2rem 2.5rem;
            border-radius: var(--radius);
            box-shadow: var(--shadow-sm);
            margin-top: 2rem;
        }
        .feedback-section h3 {
            margin-top: 0;
        }
        .comment-form textarea {
            width: 100%;
            min-height: 110px;
            padding: 1rem;
            border: 2px solid var(--gray-200);
            border-radius: var(--radius-sm);
            font-size: 1rem;
            font-family: inherit;
            resize: vertical;
            transition: border var(--transition);
        }
        .comment-form textarea:focus {
            border-color: var(--primary-light);
            outline: none;
        }
        .comment-form .form-row {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            margin: 1rem 0;
        }
        .comment-form .form-row input {
            flex: 1;
            min-width: 160px;
            padding: 0.7rem 1rem;
            border: 2px solid var(--gray-200);
            border-radius: var(--radius-sm);
            font-size: 1rem;
            transition: border var(--transition);
        }
        .comment-form .form-row input:focus {
            border-color: var(--primary-light);
            outline: none;
        }
        .comment-form button {
            background: var(--primary);
            color: var(--white);
            padding: 0.75rem 2.5rem;
            border: none;
            border-radius: 40px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background var(--transition);
        }
        .comment-form button:hover {
            background: var(--primary-light);
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 0.2rem;
            margin: 0.6rem 0 1rem;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 1.8rem;
            color: var(--gray-300);
            cursor: pointer;
            transition: color var(--transition);
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: var(--secondary);
        }
        .site-footer {
            background: var(--dark);
            color: var(--gray-300);
            padding: 2.5rem 1.5rem 1.5rem;
            margin-top: 3rem;
        }
        .footer-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2rem;
        }
        .footer-inner h4 {
            color: var(--white);
            margin-top: 0;
            font-size: 1.1rem;
        }
        .footer-inner a {
            color: var(--gray-300);
        }
        .footer-inner a:hover {
            color: var(--secondary);
        }
        friend-link {
            display: block;
            margin-top: 0.8rem;
        }
        friend-link a {
            display: inline-block;
            margin-right: 0.8rem;
            padding: 0.2rem 0.6rem;
            background: rgba(255, 255, 255, 0.06);
            border-radius: 20px;
            font-size: 0.9rem;
        }
        friend-link a:hover {
            background: rgba(255, 255, 255, 0.12);
            text-decoration: none;
        }
        .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding-top: 1.2rem;
            margin-top: 2rem;
            text-align: center;
            font-size: 0.85rem;
            color: var(--gray-600);
        }
        .copyright strong {
            color: var(--gray-300);
        }
        @media (max-width: 992px) {
            .main-grid {
                grid-template-columns: 1fr;
            }
            .footer-inner {
                grid-template-columns: 1fr 1fr;
            }
            h1 {
                font-size: 2rem;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                background: rgba(0, 0, 0, 0.2);
                padding: 1rem 0;
                border-radius: var(--radius-sm);
                margin-top: 0.5rem;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu a {
                padding: 0.7rem 1.5rem;
                width: 100%;
                text-align: left;
            }
            .header-inner {
                padding: 0.6rem 1rem;
            }
            .content-area article {
                padding: 1.5rem 1.2rem;
            }
            .feedback-section {
                padding: 1.5rem 1.2rem;
            }
            .hero {
                padding: 2.5rem 1rem 3rem;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            h1 {
                font-size: 1.7rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            .search-form button span {
                display: none;
            }
        }
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.5rem;
            }
            .my-logo {
                font-size: 1.3rem;
            }
            .my-logo span {
                font-size: 0.6rem;
            }
            .breadcrumb {
                font-size: 0.75rem;
                padding: 0.5rem 1rem;
            }
            .star-rating label {
                font-size: 1.5rem;
            }
        }
        .last-updated {
            display: inline-block;
            background: var(--gray-100);
            padding: 0.3rem 1rem;
            border-radius: 40px;
            font-size: 0.8rem;
            color: var(--gray-600);
            margin-bottom: 1.2rem;
        }
        .last-updated i {
            margin-right: 0.4rem;
        }
        .highlight-box {
            background: var(--gray-50);
            border-left: 4px solid var(--secondary);
            padding: 1.2rem 1.8rem;
            border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
            margin: 1.5rem 0;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.5rem 0;
        }
        .table-wrap table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.95rem;
        }
        .table-wrap th,
        .table-wrap td {
            padding: 0.7rem 1rem;
            text-align: left;
            border-bottom: 1px solid var(--gray-200);
        }
        .table-wrap th {
            background: var(--gray-100);
            font-weight: 700;
            color: var(--dark);
        }
        .table-wrap tr:hover td {
            background: var(--gray-50);
        }
        .btn-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            background: var(--primary);
            color: var(--white);
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            box-shadow: var(--shadow-md);
            transition: all var(--transition);
            z-index: 50;
            border: none;
            cursor: pointer;
        }
        .btn-top:hover {
            background: var(--primary-light);
            transform: translateY(-3px);
        }
        @media (max-width: 600px) {
            .btn-top {
                bottom: 1.2rem;
                right: 1.2rem;
                width: 40px;
                height: 40px;
                font-size: 1.1rem;
            }
        }
