        *,
        *::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;
            background: #0b0f1a;
            color: #e8edf5;
            line-height: 1.8;
            -webkit-font-smoothing: antialiased;
        }
        a {
            color: #f5c842;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover {
            color: #ffdf7e;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        li {
            margin-bottom: 0.35rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #121828 0%, #1a2340 100%);
            padding: 16px 0;
            border-bottom: 3px solid #f5c842;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #f5c842, #f9e07a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 2px 20px rgba(245, 200, 66, 0.25);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .my-logo i {
            -webkit-text-fill-color: #f5c842;
            font-size: 2rem;
        }
        .my-logo small {
            font-size: 0.7rem;
            -webkit-text-fill-color: #8899bb;
            font-weight: 400;
            letter-spacing: 0.3px;
        }
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 6px;
            flex-wrap: wrap;
        }
        .nav-menu a {
            color: #c8d4e8;
            padding: 8px 16px;
            border-radius: 30px;
            font-size: 0.88rem;
            font-weight: 500;
            transition: all 0.25s ease;
            white-space: nowrap;
        }
        .nav-menu a:hover,
        .nav-menu a.active {
            background: #f5c842;
            color: #0b0f1a;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #f5c842;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 4px 10px;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: rgba(245, 200, 66, 0.15);
        }
        .breadcrumb {
            background: #151e30;
            padding: 12px 0;
            border-bottom: 1px solid #223;
            font-size: 0.85rem;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding: 0;
            gap: 6px 10px;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 10px;
            color: #667;
        }
        .breadcrumb a {
            color: #99aabb;
        }
        .breadcrumb .current {
            color: #f5c842;
            font-weight: 600;
        }
        .hero {
            background: linear-gradient(145deg, #0f1729 0%, #1a2a44 100%);
            padding: 48px 0 40px;
            border-bottom: 1px solid #2a3a5a;
            position: relative;
            overflow: hidden;
        }
        .hero::after {
            content: "⚽";
            position: absolute;
            right: -40px;
            bottom: -40px;
            font-size: 18rem;
            opacity: 0.04;
            transform: rotate(15deg);
            pointer-events: none;
        }
        .hero h1 {
            font-size: 2.8rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 16px;
            background: linear-gradient(to right, #fff, #f5c842);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero p {
            font-size: 1.15rem;
            color: #b0c4de;
            max-width: 760px;
            margin-bottom: 20px;
        }
        .hero-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 20px 36px;
            font-size: 0.92rem;
            color: #8899bb;
        }
        .hero-meta i {
            color: #f5c842;
            margin-right: 6px;
        }
        .last-updated {
            background: #1e2a44;
            padding: 4px 16px;
            border-radius: 30px;
            border-left: 3px solid #f5c842;
        }
        .search-section {
            background: #151e30;
            padding: 24px 0;
            border-bottom: 1px solid #223;
        }
        .search-form {
            display: flex;
            gap: 10px;
            max-width: 640px;
            margin: 0 auto;
            flex-wrap: wrap;
        }
        .search-form input {
            flex: 1;
            min-width: 180px;
            padding: 14px 20px;
            border: none;
            border-radius: 40px;
            background: #1f2a42;
            color: #fff;
            font-size: 1rem;
            outline: 2px solid transparent;
            transition: outline 0.3s;
        }
        .search-form input::placeholder {
            color: #667;
        }
        .search-form input:focus {
            outline-color: #f5c842;
        }
        .search-form button {
            padding: 14px 32px;
            border: none;
            border-radius: 40px;
            background: #f5c842;
            color: #0b0f1a;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.25s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-form button:hover {
            background: #ffdf7e;
            transform: scale(1.02);
        }
        .main-content {
            padding: 40px 0 60px;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 40px;
        }
        @media(max-width:992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
        }
        .article-body h2 {
            font-size: 2rem;
            margin: 48px 0 16px;
            color: #f5c842;
            border-left: 5px solid #f5c842;
            padding-left: 18px;
        }
        .article-body h2:first-of-type {
            margin-top: 0;
        }
        .article-body h3 {
            font-size: 1.45rem;
            margin: 32px 0 12px;
            color: #e0e8f5;
            border-bottom: 1px solid #2a3a5a;
            padding-bottom: 6px;
        }
        .article-body h4 {
            font-size: 1.15rem;
            margin: 24px 0 8px;
            color: #c8d4e8;
            font-weight: 600;
        }
        .article-body p {
            margin-bottom: 18px;
            text-align: justify;
        }
        .article-body strong {
            color: #f5c842;
        }
        .article-body .highlight-box {
            background: #151e30;
            border-left: 5px solid #f5c842;
            padding: 20px 24px;
            border-radius: 8px;
            margin: 24px 0;
        }
        .article-body .highlight-box p:last-child {
            margin-bottom: 0;
        }
        .stats-table {
            width: 100%;
            border-collapse: collapse;
            margin: 24px 0;
            font-size: 0.92rem;
        }
        .stats-table th {
            background: #1e2a44;
            color: #f5c842;
            padding: 12px 16px;
            text-align: left;
            font-weight: 700;
        }
        .stats-table td {
            padding: 10px 16px;
            border-bottom: 1px solid #223;
        }
        .stats-table tr:hover td {
            background: #1a2338;
        }
        .sidebar {
            background: #121828;
            border-radius: 16px;
            padding: 24px 20px;
            border: 1px solid #1e2a44;
            position: sticky;
            top: 100px;
            align-self: start;
        }
        .sidebar h3 {
            font-size: 1.3rem;
            color: #f5c842;
            border-bottom: 2px solid #f5c842;
            padding-bottom: 8px;
            margin-bottom: 18px;
        }
        .sidebar ul {
            list-style: none;
            padding: 0;
        }
        .sidebar li {
            margin-bottom: 4px;
        }
        .sidebar a {
            display: block;
            padding: 8px 12px;
            border-radius: 8px;
            font-size: 0.92rem;
            color: #b0c4de;
            transition: all 0.2s;
            border-left: 3px solid transparent;
        }
        .sidebar a:hover {
            background: #1a2338;
            border-left-color: #f5c842;
            color: #f5c842;
        }
        .content-img {
            margin: 32px 0;
            border-radius: 12px;
            overflow: hidden;
            background: #151e30;
            padding: 6px;
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
        }
        .content-img figcaption {
            padding: 10px 14px;
            font-size: 0.85rem;
            color: #8899bb;
            text-align: center;
            font-style: italic;
        }
        .feedback-section {
            background: #151e30;
            border-radius: 16px;
            padding: 32px 28px;
            margin-top: 48px;
            border: 1px solid #1e2a44;
        }
        .feedback-section h3 {
            color: #f5c842;
            font-size: 1.6rem;
            margin-bottom: 20px;
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
        }
        @media(max-width:700px) {
            .feedback-grid {
                grid-template-columns: 1fr;
            }
        }
        .feedback-form label {
            display: block;
            font-weight: 600;
            margin-bottom: 4px;
            color: #c8d4e8;
        }
        .feedback-form input,
        .feedback-form textarea,
        .feedback-form select {
            width: 100%;
            padding: 10px 14px;
            border: none;
            border-radius: 8px;
            background: #1f2a42;
            color: #fff;
            font-size: 0.95rem;
            margin-bottom: 14px;
            outline: 2px solid transparent;
            transition: outline 0.3s;
        }
        .feedback-form input:focus,
        .feedback-form textarea:focus,
        .feedback-form select:focus {
            outline-color: #f5c842;
        }
        .feedback-form textarea {
            min-height: 80px;
            resize: vertical;
        }
        .feedback-form .star-rating {
            display: flex;
            flex-direction: row-reverse;
            gap: 4px;
            margin-bottom: 14px;
        }
        .feedback-form .star-rating input {
            display: none;
        }
        .feedback-form .star-rating label {
            font-size: 1.8rem;
            color: #445;
            cursor: pointer;
            transition: color 0.2s;
        }
        .feedback-form .star-rating input:checked~label,
        .feedback-form .star-rating label:hover,
        .feedback-form .star-rating label:hover~label {
            color: #f5c842;
        }
        .btn-submit {
            padding: 12px 32px;
            border: none;
            border-radius: 40px;
            background: #f5c842;
            color: #0b0f1a;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.25s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .btn-submit:hover {
            background: #ffdf7e;
            transform: scale(1.02);
        }
        friend-link {
            display: block;
            background: #121828;
            border-top: 2px solid #1e2a44;
            padding: 24px 0 18px;
            margin-top: 20px;
        }
        friend-link .container {
            display: flex;
            flex-wrap: wrap;
            gap: 12px 24px;
            justify-content: center;
        }
        friend-link a {
            color: #99aabb;
            font-size: 0.9rem;
            padding: 4px 12px;
            border-radius: 20px;
            border: 1px solid #2a3a5a;
            transition: all 0.25s;
        }
        friend-link a:hover {
            border-color: #f5c842;
            color: #f5c842;
            background: rgba(245, 200, 66, 0.06);
        }
        .site-footer {
            background: #0a0e18;
            border-top: 2px solid #1a2340;
            padding: 24px 0 18px;
            text-align: center;
            font-size: 0.85rem;
            color: #667;
        }
        .site-footer .copyright {
            margin-top: 6px;
            letter-spacing: 0.3px;
        }
        @media(max-width:768px) {
            html {
                font-size: 15px;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .header-inner {
                flex-direction: row;
            }
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                background: #151e30;
                padding: 12px 16px;
                border-radius: 12px;
                margin-top: 8px;
                border: 1px solid #2a3a5a;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu a {
                padding: 10px 16px;
                border-bottom: 1px solid #1e2a44;
            }
            .nav-menu a:last-child {
                border-bottom: none;
            }
            .hamburger {
                display: block;
            }
            .article-body h2 {
                font-size: 1.6rem;
            }
            .article-body h3 {
                font-size: 1.25rem;
            }
            .feedback-grid {
                grid-template-columns: 1fr;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                justify-content: center;
            }
            .stats-table {
                font-size: 0.8rem;
            }
            .stats-table th,
            .stats-table td {
                padding: 8px 10px;
            }
        }
        @media(max-width:480px) {
            .hero h1 {
                font-size: 1.6rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .container {
                padding: 0 12px;
            }
            .sidebar {
                position: static;
            }
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #0b0f1a;
        }
        ::-webkit-scrollbar-thumb {
            background: #2a3a5a;
            border-radius: 10px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #3a4a6a;
        }
