        *,
        *::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, sans-serif;
            background: #f5f7fa;
            color: #1a1a2e;
            line-height: 1.7;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }
        a {
            color: #0057a3;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #e63946;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .header {
            background: linear-gradient(145deg, #0b1a2e, #1a3a4a);
            color: #fff;
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }
        .header .container {
            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;
            background: linear-gradient(135deg, #f9d423, #ff4e50);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .my-logo i {
            -webkit-text-fill-color: #f9d423;
            font-size: 2rem;
        }
        .my-logo span {
            font-weight: 300;
            font-size: 0.9rem;
            -webkit-text-fill-color: rgba(255, 255, 255, 0.7);
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 4px 8px;
        }
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 24px;
            list-style: none;
            transition: all 0.3s ease;
        }
        .nav-menu a {
            color: #e0e8f0;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 6px 0;
            border-bottom: 2px solid transparent;
            transition: 0.2s;
        }
        .nav-menu a:hover {
            color: #f9d423;
            border-bottom-color: #f9d423;
        }
        .nav-menu .search-form {
            display: flex;
            align-items: center;
            background: rgba(255, 255, 255, 0.12);
            border-radius: 40px;
            padding: 2px 2px 2px 16px;
            transition: 0.3s;
        }
        .nav-menu .search-form:focus-within {
            background: rgba(255, 255, 255, 0.22);
        }
        .nav-menu .search-form input {
            background: transparent;
            border: none;
            color: #fff;
            padding: 8px 4px;
            font-size: 0.9rem;
            outline: none;
            min-width: 120px;
        }
        .nav-menu .search-form input::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }
        .nav-menu .search-form button {
            background: #f9d423;
            border: none;
            border-radius: 40px;
            padding: 8px 16px;
            color: #0b1a2e;
            font-weight: 600;
            cursor: pointer;
            transition: 0.2s;
            font-size: 0.85rem;
        }
        .nav-menu .search-form button:hover {
            background: #ffc107;
            transform: scale(1.02);
        }
        .breadcrumb {
            background: #eaeef3;
            padding: 12px 0;
            font-size: 0.85rem;
            border-bottom: 1px solid #dce3ec;
        }
        .breadcrumb .container {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }
        .breadcrumb a {
            color: #2c3e50;
        }
        .breadcrumb a:hover {
            color: #e63946;
        }
        .breadcrumb .sep {
            color: #7f8c8d;
            margin: 0 4px;
        }
        .hero {
            background: linear-gradient(135deg, #0d2137, #1b4a5e);
            color: #fff;
            padding: 50px 0 48px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .hero::after {
            content: "⚽";
            position: absolute;
            right: -30px;
            bottom: -40px;
            font-size: 18rem;
            opacity: 0.06;
            transform: rotate(12deg);
        }
        .hero h1 {
            font-size: 2.8rem;
            font-weight: 800;
            margin-bottom: 12px;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #f9d423, #f5a623);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 720px;
            margin: 0 auto 20px;
            opacity: 0.88;
            font-weight: 300;
        }
        .hero .meta-info {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
            font-size: 0.95rem;
            opacity: 0.7;
        }
        .hero .meta-info i {
            margin-right: 6px;
        }
        .main-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 48px 0;
        }
        @media (max-width: 992px) {
            .main-grid {
                grid-template-columns: 1fr;
            }
        }
        .content-article h2 {
            font-size: 2rem;
            margin: 48px 0 16px;
            color: #0d2137;
            border-left: 6px solid #f9d423;
            padding-left: 20px;
        }
        .content-article h3 {
            font-size: 1.5rem;
            margin: 36px 0 12px;
            color: #1a3a4a;
        }
        .content-article h4 {
            font-size: 1.2rem;
            margin: 24px 0 8px;
            color: #2c3e50;
            font-weight: 600;
        }
        .content-article p {
            margin-bottom: 18px;
            font-size: 1.05rem;
            color: #2d2d3f;
        }
        .content-article .highlight-box {
            background: #edf2f9;
            border-radius: 16px;
            padding: 24px 28px;
            margin: 28px 0;
            border-left: 6px solid #f9d423;
        }
        .content-article .highlight-box strong {
            color: #0d2137;
        }
        .content-article ul,
        .content-article ol {
            margin: 16px 0 24px 28px;
            font-size: 1.05rem;
        }
        .content-article li {
            margin-bottom: 8px;
        }
        .content-article .inline-img {
            border-radius: 16px;
            margin: 32px 0;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 32px;
        }
        .sidebar .card {
            background: #fff;
            border-radius: 16px;
            padding: 24px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
        }
        .sidebar .card h3 {
            font-size: 1.3rem;
            margin-bottom: 16px;
            color: #0d2137;
            border-bottom: 2px solid #f0f2f5;
            padding-bottom: 12px;
        }
        .sidebar .card ul {
            list-style: none;
        }
        .sidebar .card ul li {
            padding: 8px 0;
            border-bottom: 1px solid #f0f2f5;
        }
        .sidebar .card ul li:last-child {
            border-bottom: none;
        }
        .sidebar .card ul li a {
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .sidebar .card ul li a::before {
            content: "›";
            font-size: 1.3rem;
            color: #f9d423;
            font-weight: 700;
        }
        .rating-area,
        .comment-area {
            background: #fff;
            border-radius: 16px;
            padding: 28px 32px;
            margin: 40px 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
        }
        .rating-area h3,
        .comment-area h3 {
            font-size: 1.6rem;
            margin-bottom: 16px;
            color: #0d2137;
        }
        .star-rating {
            display: flex;
            gap: 8px;
            font-size: 2rem;
            cursor: pointer;
            color: #ddd;
            transition: 0.2s;
            margin: 12px 0 20px;
        }
        .star-rating i:hover,
        .star-rating i.active {
            color: #f9d423;
            transform: scale(1.08);
        }
        .rating-area form,
        .comment-area form {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        .rating-area form input,
        .rating-area form button,
        .comment-area form input,
        .comment-area form textarea,
        .comment-area form button {
            padding: 14px 18px;
            border-radius: 12px;
            border: 1px solid #dce3ec;
            font-size: 1rem;
            font-family: inherit;
            transition: 0.2s;
        }
        .rating-area form input:focus,
        .comment-area form input:focus,
        .comment-area form textarea:focus {
            border-color: #f9d423;
            outline: none;
            box-shadow: 0 0 0 3px rgba(249, 212, 35, 0.15);
        }
        .rating-area form button,
        .comment-area form button {
            background: #0d2137;
            color: #fff;
            border: none;
            font-weight: 600;
            cursor: pointer;
            align-self: flex-start;
            padding: 14px 36px;
        }
        .rating-area form button:hover,
        .comment-area form button:hover {
            background: #1a3a4a;
            transform: translateY(-2px);
        }
        .comment-area textarea {
            min-height: 120px;
            resize: vertical;
        }
        .footer {
            background: #0b1a2e;
            color: #c8d6e5;
            padding: 48px 0 32px;
            margin-top: auto;
        }
        .footer .container {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 40px;
        }
        @media (max-width: 768px) {
            .footer .container {
                grid-template-columns: 1fr;
                gap: 24px;
            }
        }
        .footer h4 {
            color: #f9d423;
            margin-bottom: 16px;
            font-size: 1.1rem;
        }
        .footer a {
            color: #a0b8cc;
        }
        .footer a:hover {
            color: #f9d423;
        }
        .footer .friend-link {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            list-style: none;
        }
        .footer .friend-link li a {
            background: rgba(255, 255, 255, 0.06);
            padding: 6px 16px;
            border-radius: 40px;
            font-size: 0.9rem;
            transition: 0.2s;
        }
        .footer .friend-link li a:hover {
            background: rgba(249, 212, 35, 0.15);
            color: #f9d423;
        }
        .footer .copyright {
            grid-column: 1 / -1;
            text-align: center;
            padding-top: 28px;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            margin-top: 16px;
            font-size: 0.9rem;
            opacity: 0.7;
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                padding: 20px 0 10px;
                gap: 12px;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu .search-form {
                width: 100%;
            }
            .nav-menu .search-form input {
                flex: 1;
                min-width: 0;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .content-article h2 {
                font-size: 1.6rem;
            }
            .content-article h3 {
                font-size: 1.3rem;
            }
            .main-grid {
                padding: 24px 0;
            }
            .rating-area,
            .comment-area {
                padding: 20px;
            }
        }
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.6rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .container {
                padding: 0 14px;
            }
        }
        :target {
            scroll-margin-top: 90px;
        }
        .author-badge {
            display: flex;
            align-items: center;
            gap: 14px;
            background: #f0f4fa;
            border-radius: 60px;
            padding: 10px 22px;
            margin: 24px 0;
            width: fit-content;
        }
        .author-badge img {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            object-fit: cover;
        }
        .author-badge .info strong {
            display: block;
            font-size: 1rem;
        }
        .author-badge .info span {
            font-size: 0.85rem;
            opacity: 0.7;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 28px 0;
        }
        .table-wrap table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.95rem;
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
        }
        .table-wrap th {
            background: #0d2137;
            color: #fff;
            padding: 14px 16px;
            text-align: left;
        }
        .table-wrap td {
            padding: 12px 16px;
            border-bottom: 1px solid #edf2f9;
        }
        .table-wrap tr:last-child td {
            border-bottom: none;
        }
        .table-wrap tr:hover td {
            background: #f8fafd;
        }
        .tag {
            display: inline-block;
            background: #eaeef3;
            padding: 2px 14px;
            border-radius: 40px;
            font-size: 0.8rem;
            font-weight: 600;
            color: #0d2137;
            margin: 2px 4px 2px 0;
        }
