        *,
        *::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, sans-serif;
            background: #f5f7fb;
            color: #1e293b;
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: #2563eb;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #1e40af;
            text-decoration: underline;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
            color: #fff;
            padding: 18px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #fbbf24, #f59e0b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 2px 12px rgba(251, 191, 36, 0.25);
        }
        .my-logo:hover {
            text-decoration: none;
            opacity: 0.9;
        }
        .my-logo i {
            -webkit-text-fill-color: initial;
            color: #fbbf24;
            margin-right: 6px;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.6rem;
            cursor: pointer;
            padding: 4px 10px;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        .nav-menu {
            display: flex;
            gap: 28px;
            list-style: none;
            align-items: center;
        }
        .nav-menu a {
            color: #e2e8f0;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 6px 0;
            border-bottom: 2px solid transparent;
            transition: 0.2s;
        }
        .nav-menu a:hover {
            color: #fbbf24;
            border-bottom-color: #fbbf24;
            text-decoration: none;
        }
        .nav-menu a i {
            margin-right: 6px;
        }
        .breadcrumb {
            background: #e9edf4;
            padding: 10px 0;
            font-size: 0.88rem;
            border-bottom: 1px solid #d1d9e8;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 12px;
            color: #64748b;
        }
        .breadcrumb a {
            color: #3b82f6;
        }
        .breadcrumb .current {
            color: #1e293b;
            font-weight: 600;
        }
        .hero {
            background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
            color: #fff;
            padding: 48px 0 56px;
            text-align: center;
            border-bottom: 4px solid #fbbf24;
        }
        .hero h1 {
            font-size: 2.8rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 16px;
        }
        .hero h1 span {
            background: linear-gradient(135deg, #fbbf24, #f59e0b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 780px;
            margin: 0 auto 28px;
            color: #cbd5e1;
        }
        .hero .meta-badge {
            display: inline-flex;
            gap: 18px;
            flex-wrap: wrap;
            justify-content: center;
            font-size: 0.9rem;
            color: #94a3b8;
        }
        .hero .meta-badge i {
            color: #fbbf24;
            margin-right: 6px;
        }
        .search-section {
            background: #fff;
            padding: 28px 0;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
        }
        .search-form {
            display: flex;
            gap: 12px;
            max-width: 600px;
            margin: 0 auto;
        }
        .search-form input {
            flex: 1;
            padding: 14px 20px;
            border: 2px solid #e2e8f0;
            border-radius: 50px;
            font-size: 1rem;
            outline: none;
            transition: border 0.3s;
        }
        .search-form input:focus {
            border-color: #2563eb;
        }
        .search-form button {
            padding: 14px 32px;
            background: #2563eb;
            color: #fff;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
            font-size: 1rem;
        }
        .search-form button:hover {
            background: #1e40af;
        }
        .content-wrap {
            padding: 48px 0 60px;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 48px;
        }
        .main-article h2 {
            font-size: 2rem;
            font-weight: 700;
            margin-top: 48px;
            margin-bottom: 16px;
            color: #0f172a;
            border-left: 5px solid #fbbf24;
            padding-left: 18px;
        }
        .main-article h2:first-of-type {
            margin-top: 0;
        }
        .main-article h3 {
            font-size: 1.4rem;
            font-weight: 600;
            margin-top: 32px;
            margin-bottom: 10px;
            color: #1e293b;
        }
        .main-article h4 {
            font-size: 1.15rem;
            font-weight: 600;
            margin-top: 22px;
            margin-bottom: 6px;
            color: #334155;
        }
        .main-article p {
            margin-bottom: 18px;
            color: #334155;
        }
        .main-article ul,
        .main-article ol {
            margin-bottom: 20px;
            padding-left: 26px;
        }
        .main-article li {
            margin-bottom: 6px;
        }
        .main-article .highlight-box {
            background: #f1f5f9;
            border-left: 4px solid #2563eb;
            padding: 20px 24px;
            border-radius: 0 12px 12px 0;
            margin: 24px 0;
        }
        .main-article .highlight-box strong {
            color: #1e40af;
        }
        .main-article .feature-img {
            border-radius: 16px;
            margin: 28px 0;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
        }
        .inline-link-list {
            background: #f8fafc;
            border-radius: 16px;
            padding: 24px 28px;
            margin: 28px 0;
            border: 1px solid #e2e8f0;
        }
        .inline-link-list h4 {
            margin-top: 0;
            font-size: 1.1rem;
        }
        .inline-link-list ul {
            columns: 2 220px;
            list-style: none;
            padding-left: 0;
        }
        .inline-link-list li {
            padding: 4px 0;
        }
        .inline-link-list li::before {
            content: "⚽ ";
            font-size: 0.85rem;
        }
        .sidebar {
            position: sticky;
            top: 110px;
            align-self: start;
        }
        .sidebar-box {
            background: #fff;
            border-radius: 16px;
            padding: 24px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            margin-bottom: 28px;
            border: 1px solid #eef2f6;
        }
        .sidebar-box h3 {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 14px;
            color: #0f172a;
            border-bottom: 2px solid #fbbf24;
            padding-bottom: 10px;
        }
        .sidebar-box ul {
            list-style: none;
            padding-left: 0;
        }
        .sidebar-box li {
            padding: 6px 0;
            border-bottom: 1px solid #f1f5f9;
        }
        .sidebar-box li a {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .sidebar-box li a i {
            color: #fbbf24;
            width: 20px;
        }
        .comment-section {
            background: #fff;
            border-radius: 16px;
            padding: 32px;
            margin-top: 48px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
            border: 1px solid #eef2f6;
        }
        .comment-section h2 {
            border-left-color: #10b981;
        }
        .comment-form textarea {
            width: 100%;
            padding: 16px;
            border: 2px solid #e2e8f0;
            border-radius: 12px;
            font-size: 1rem;
            font-family: inherit;
            resize: vertical;
            min-height: 110px;
            transition: border 0.3s;
        }
        .comment-form textarea:focus {
            border-color: #2563eb;
            outline: none;
        }
        .comment-form .form-row {
            display: flex;
            gap: 16px;
            margin: 14px 0;
        }
        .comment-form .form-row input {
            flex: 1;
            padding: 12px 16px;
            border: 2px solid #e2e8f0;
            border-radius: 10px;
            font-size: 1rem;
            transition: border 0.3s;
        }
        .comment-form .form-row input:focus {
            border-color: #2563eb;
            outline: none;
        }
        .comment-form button {
            padding: 14px 36px;
            background: #10b981;
            color: #fff;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
            font-size: 1rem;
        }
        .comment-form button:hover {
            background: #059669;
        }
        .rating-wrap {
            display: flex;
            align-items: center;
            gap: 16px;
            margin: 18px 0 24px;
            flex-wrap: wrap;
        }
        .rating-stars {
            display: flex;
            gap: 4px;
            font-size: 1.6rem;
            color: #d1d5db;
            cursor: pointer;
        }
        .rating-stars .star.active {
            color: #f59e0b;
        }
        .rating-stars .star:hover {
            color: #fbbf24;
        }
        .rating-stars .star {
            transition: color 0.2s;
        }
        .rating-value {
            font-weight: 700;
            font-size: 1.2rem;
            color: #0f172a;
        }
        .rating-count {
            color: #64748b;
            font-size: 0.9rem;
        }
        footer {
            background: #0f172a;
            color: #cbd5e1;
            padding: 40px 0 28px;
            border-top: 4px solid #fbbf24;
        }
        footer .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 32px;
            margin-bottom: 28px;
        }
        footer h4 {
            color: #f1f5f9;
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 12px;
        }
        footer a {
            color: #94a3b8;
        }
        footer a:hover {
            color: #fbbf24;
        }
        friend-link {
            display: block;
            background: #1e293b;
            padding: 20px 24px;
            border-radius: 12px;
            margin: 20px 0 24px;
            border: 1px solid #334155;
        }
        friend-link h4 {
            color: #fbbf24;
            margin-bottom: 10px;
            font-size: 1rem;
        }
        friend-link ul {
            list-style: none;
            padding-left: 0;
            display: flex;
            flex-wrap: wrap;
            gap: 8px 20px;
        }
        friend-link li a {
            color: #e2e8f0;
            font-weight: 500;
        }
        friend-link li a:hover {
            color: #fbbf24;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #1e293b;
            font-size: 0.9rem;
            color: #64748b;
        }
        .copyright strong {
            color: #94a3b8;
        }
        @media (max-width: 868px) {
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                padding: 18px 0 8px;
                gap: 12px;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu a {
                padding: 8px 0;
            }
            .content-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                width: 100%;
            }
            .comment-form .form-row {
                flex-direction: column;
            }
            .inline-link-list ul {
                columns: 1;
            }
            .my-logo {
                font-size: 1.4rem;
            }
        }
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.6rem;
            }
            .container {
                padding: 0 14px;
            }
            .main-article h2 {
                font-size: 1.5rem;
            }
            .main-article h3 {
                font-size: 1.2rem;
            }
            .comment-section {
                padding: 20px;
            }
        }
        .text-small {
            font-size: 0.9rem;
            color: #64748b;
        }
        .mt-0 {
            margin-top: 0 !important;
        }
        .flex-center {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .last-updated {
            display: inline-block;
            background: #eef2f6;
            padding: 4px 14px;
            border-radius: 50px;
            font-size: 0.85rem;
            color: #475569;
        }
        .last-updated i {
            margin-right: 6px;
            color: #2563eb;
        }
