* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, Arial, sans-serif;
            background: #f4f7fb;
            color: #222;
            line-height: 1.65;
        }
        a {
            color: #0a66c2;
            text-decoration: none;
        }
        a:hover {
            color: #a71e2f;
        }
        .wrapper {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 18px;
        }
        .site-header {
            background: linear-gradient(135deg, #0b1a2e 0%, #142a4a 50%, #1d3b66 100%);
            padding: 0;
            box-shadow: 0 2px 12px rgba(0, 0, 0, .12);
            position: sticky;
            top: 0;
            z-index: 999;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 16px 20px;
            border-bottom: 1px solid rgba(255, 255, 255, .1);
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: #f0c135;
            letter-spacing: 1px;
            text-transform: uppercase;
            background: rgba(255, 255, 255, .1);
            padding: 5px 15px;
            border-radius: 30px;
            transition: .3s;
        }
        .my-logo:hover {
            background: rgba(255, 255, 255, .2);
            transform: scale(1.04);
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
        }
        .nav-menu {
            display: flex;
            gap: 6px;
            list-style: none;
            flex-wrap: wrap;
        }
        .nav-menu a {
            color: #dfeaf9;
            font-weight: 500;
            padding: 8px 14px;
            border-radius: 24px;
            transition: .25s;
            font-size: .88rem;
        }
        .nav-menu a:hover,
        .nav-menu a.active {
            background: #f0c135;
            color: #0b1a2e;
        }
        .search-icon {
            margin-left: 10px;
            color: #fff;
            font-size: 1.1rem;
            background: rgba(255, 255, 255, .15);
            padding: 8px 12px;
            border-radius: 50%;
        }
        .hamburger {
            display: none;
            background: transparent;
            border: 1px solid rgba(255, 255, 255, .3);
            border-radius: 8px;
            color: #fff;
            font-size: 1.4rem;
            padding: 5px 12px;
            cursor: pointer;
        }
        .breadcrumb {
            padding: 8px 20px;
            background: rgba(0, 0, 0, .2);
            font-size: .8rem;
            color: #aac4de;
        }
        .breadcrumb a {
            color: #f0c135;
        }
        @media(max-width:768px) {
            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                position: absolute;
                top: 68px;
                left: 0;
                background: #0b1a2e;
                padding: 15px 20px;
                border-radius: 0 0 12px 12px;
            }
            .nav-menu.open {
                display: flex;
            }
            .hamburger {
                display: inline-block;
            }
        }
        .hero {
            margin: 25px 0;
            padding: 35px;
            background: linear-gradient(120deg, #0b1a2e, #1d3b66);
            border-radius: 18px;
            color: #fff;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .hero h1 {
            font-size: 2.4rem;
            color: #f0c135;
            margin-bottom: 12px;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, .5);
        }
        .hero p {
            max-width: 700px;
            margin: 0 auto;
            color: #c8d9f0;
        }
        .hero .badge {
            display: inline-block;
            background: #a71e2f;
            padding: 6px 18px;
            border-radius: 24px;
            font-size: .8rem;
            margin-bottom: 12px;
            font-weight: 500;
        }
        .last-updated {
            margin-top: 10px;
            font-size: .8rem;
            color: #8ca8c9;
        }
        .main-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 30px;
            margin: 30px 0;
        }
        @media(min-width:992px) {
            .main-grid {
                grid-template-columns: 1fr 340px;
            }
        }
        .article-card {
            background: #fff;
            border-radius: 16px;
            padding: 28px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, .04);
            margin-bottom: 28px;
            border: 1px solid #eef1f5;
        }
        .sidebar .widget {
            background: #fff;
            border-radius: 16px;
            padding: 22px;
            margin-bottom: 25px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, .04);
            border: 1px solid #eef1f5;
        }
        .widget h3 {
            border-left: 4px solid #f0c135;
            padding-left: 14px;
            margin-bottom: 14px;
            font-size: 1.1rem;
        }
        .widget ul {
            list-style: none;
        }
        .widget ul li {
            margin-bottom: 10px;
            padding-left: 4px;
            border-bottom: 1px dashed #eee;
            padding-bottom: 8px;
        }
        .widget ul li i {
            color: #f0c135;
            margin-right: 8px;
        }
        .article-card h2 {
            font-size: 1.7rem;
            color: #0b1a2e;
            margin: 28px 0 16px;
            padding-bottom: 10px;
            border-bottom: 2px solid #f0c135;
            position: relative;
        }
        .article-card h3 {
            font-size: 1.3rem;
            color: #142a4a;
            margin: 22px 0 12px;
        }
        .article-card h4 {
            font-size: 1.05rem;
            margin: 16px 0 8px;
            color: #333;
        }
        .highlight-box {
            background: #fff8e7;
            border-left: 6px solid #f0c135;
            padding: 18px;
            border-radius: 8px;
            margin: 20px 0;
        }
        .tip-box {
            background: #e8f4ef;
            border-left: 6px solid #2e8b57;
            padding: 16px;
            border-radius: 8px;
            margin: 18px 0;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 14px;
            margin: 20px 0;
        }
        .stat-item {
            background: #f7f9fc;
            border: 1px solid #e4e8ee;
            border-radius: 12px;
            padding: 15px;
            text-align: center;
        }
        .stat-item .num {
            font-size: 1.8rem;
            font-weight: 700;
            color: #0b1a2e;
        }
        .stat-item .label {
            font-size: .82rem;
            color: #62748a;
        }
        .table-responsive {
            overflow-x: auto;
            margin: 18px 0;
        }
        .table-responsive table {
            width: 100%;
            border-collapse: collapse;
            background: #fff;
            border-radius: 8px;
            font-size: .9rem;
        }
        .table-responsive th {
            background: #142a4a;
            color: #fff;
            padding: 10px 14px;
            text-align: left;
        }
        .table-responsive td {
            padding: 10px 14px;
            border-bottom: 1px solid #eceff3;
        }
        .table-responsive tr:nth-child(even) {
            background: #f8f9fc;
        }
        .btn-cta {
            display: inline-block;
            background: #f0c135;
            color: #0b1a2e;
            font-weight: 700;
            padding: 10px 24px;
            border-radius: 28px;
            transition: .3s;
            border: none;
            cursor: pointer;
        }
        .btn-cta:hover {
            background: #d8a92c;
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(240, 193, 53, .4);
        }
        .comment-section {
            background: #fff;
            border-radius: 16px;
            padding: 28px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, .04);
            border: 1px solid #eef1f5;
        }
        .comment-form,
        .rating-form,
        .search-form {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin: 18px 0;
        }
        .comment-form input,
        .comment-form textarea,
        .rating-form input,
        .rating-form select,
        .search-form input {
            padding: 12px 16px;
            border: 1px solid #dde0e6;
            border-radius: 10px;
            font-size: 1rem;
            font-family: inherit;
        }
        .comment-form textarea {
            min-height: 120px;
            resize: vertical;
        }
        .search-box {
            background: #fff;
            border-radius: 16px;
            padding: 20px;
            margin-bottom: 28px;
            border: 1px solid #eef1f5;
            box-shadow: 0 4px 14px rgba(0, 0, 0, .03);
        }
        .site-footer {
            background: #0b1a2e;
            color: #b8c9dd;
            padding: 40px 20px 20px;
            margin-top: 40px;
            border-radius: 18px 18px 0 0;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 30px;
        }
        .site-footer h4 {
            color: #f0c135;
            margin-bottom: 12px;
        }
        .site-footer a {
            color: #b8c9dd;
        }
        .site-footer a:hover {
            color: #f0c135;
        }
        .friend-link {
            display: block;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid #2a3e58;
            font-size: .9rem;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            margin-top: 20px;
            border-top: 1px solid #2a3e58;
            font-size: .82rem;
        }
        .featured-img {
            border-radius: 14px;
            max-width: 100%;
            height: auto;
            margin: 18px 0;
            box-shadow: 0 5px 20px rgba(0, 0, 0, .1);
            border: 1px solid #eee;
        }
        .emoji {
            font-style: normal;
        }
        .toc {
            background: #f7f9fc;
            border: 1px solid #e6e9ee;
            border-radius: 12px;
            padding: 18px 22px;
            margin-bottom: 24px;
        }
        .toc h3 {
            margin-bottom: 10px;
            font-size: 1rem;
            color: #0b1a2e;
        }
        .toc ul {
            list-style: none;
            padding-left: 0;
        }
        .toc ul li {
            padding: 5px 0;
            border-bottom: 1px dotted #ddd;
        }
        .toc ul li::before {
            content: "⚽ ";
            color: #f0c135;
        }
        @media(max-width:600px) {
            .hero h1 {
                font-size: 1.6rem;
            }
            .hero {
                padding: 20px 15px;
            }
        }
