*,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        :root {
            --primary: #0f5132;
            --primary-dark: #0a3d24;
            --accent: #ffc107;
            --bg: #f8f9fa;
            --card-bg: #ffffff;
            --text: #212529;
            --text-light: #6c757d;
            --radius: 12px;
            --shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
            background: var(--bg);
            color: var(--text);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: var(--primary);
            text-decoration: none;
            transition: 0.3s;
        }
        a:hover {
            color: var(--accent);
        }
        .site-header {
            background: linear-gradient(135deg, var(--primary-dark), var(--primary));
            padding: 1rem 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-inner {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 2rem;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: #fff;
            text-decoration: none;
            letter-spacing: -0.5px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .my-logo i {
            color: var(--accent);
            font-size: 2rem;
        }
        .my-logo span {
            font-weight: 300;
            font-size: 0.7em;
            display: block;
            margin-top: -4px;
        }
        .main-nav {
            display: flex;
            gap: 1.5rem;
            list-style: none;
        }
        .main-nav a {
            color: #e9ecef;
            font-weight: 500;
            padding: 0.5rem 0.8rem;
            border-radius: 6px;
            transition: 0.3s;
        }
        .main-nav a:hover {
            color: var(--accent);
            background: rgba(255, 255, 255, 0.1);
        }
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 8px;
        }
        .hamburger .bar {
            width: 26px;
            height: 3px;
            background: #fff;
            border-radius: 3px;
            transition: 0.3s;
        }
        .hamburger.active .bar:nth-child(1) {
            transform: translateY(8px) rotate(45deg);
        }
        .hamburger.active .bar:nth-child(2) {
            opacity: 0;
        }
        .hamburger.active .bar:nth-child(3) {
            transform: translateY(-8px) rotate(-45deg);
        }
        .mobile-nav {
            display: none;
            width: 100%;
            background: var(--primary-dark);
            flex-direction: column;
            padding: 1rem;
        }
        .mobile-nav a {
            color: #fff;
            padding: 0.8rem 1rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        .mobile-nav a:last-child {
            border-bottom: none;
        }
        .mobile-nav.open {
            display: flex;
        }
        .breadcrumb-wrap {
            background: #e9ecef;
            padding: 0.6rem 2rem;
            font-size: 0.9rem;
        }
        .breadcrumb-wrap .breadcrumb {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            gap: 0.5rem;
            list-style: none;
            flex-wrap: wrap;
        }
        .breadcrumb-wrap .breadcrumb li+li::before {
            content: "›";
            margin: 0 0.5rem;
            color: var(--text-light);
        }
        .breadcrumb-wrap a {
            color: var(--primary);
        }
        .breadcrumb-wrap .active {
            color: var(--text-light);
            font-weight: 500;
        }
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 2rem;
            display: grid;
            grid-template-columns: 1fr 340px;
            gap: 2.5rem;
        }
        .article-body {
            background: var(--card-bg);
            border-radius: var(--radius);
            padding: 2.5rem;
            box-shadow: var(--shadow);
        }
        .article-body h1 {
            font-size: 2.4rem;
            color: var(--primary-dark);
            margin-bottom: 0.5rem;
            line-height: 1.2;
        }
        .article-body h2 {
            font-size: 1.8rem;
            color: var(--primary);
            margin-top: 2.8rem;
            margin-bottom: 1rem;
            border-left: 4px solid var(--accent);
            padding-left: 1rem;
        }
        .article-body h3 {
            font-size: 1.3rem;
            color: var(--primary-dark);
            margin-top: 2rem;
            margin-bottom: 0.7rem;
        }
        .article-body h4 {
            font-size: 1.1rem;
            color: var(--text);
            margin-top: 1.5rem;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }
        .article-body p {
            margin-bottom: 1rem;
            text-align: justify;
        }
        .article-body ul,
        .article-body ol {
            margin: 1rem 0 1rem 1.5rem;
        }
        .article-body li {
            margin-bottom: 0.4rem;
        }
        .highlight-box {
            background: #fff8e1;
            border-left: 4px solid var(--accent);
            padding: 1.2rem;
            border-radius: 8px;
            margin: 1.5rem 0;
        }
        .table-responsive {
            overflow-x: auto;
            margin: 1.5rem 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.95rem;
        }
        th,
        td {
            padding: 0.8rem;
            text-align: left;
            border-bottom: 1px solid #dee2e6;
        }
        th {
            background: var(--primary);
            color: #fff;
            font-weight: 600;
        }
        tr:hover {
            background: #f8f9fa;
        }
        .score-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 1rem;
            margin: 1.5rem 0;
        }
        .score-card {
            background: #fff;
            border: 1px solid #e9ecef;
            border-radius: 10px;
            padding: 1.2rem;
            transition: 0.3s;
        }
        .score-card:hover {
            box-shadow: var(--shadow);
            transform: translateY(-2px);
        }
        .score-card .teams {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
        }
        .score-card .score {
            font-size: 1.8rem;
            color: var(--primary);
            font-weight: 800;
            margin: 0.5rem 0;
            text-align: center;
        }
        .score-card .meta {
            font-size: 0.8rem;
            color: var(--text-light);
            display: flex;
            justify-content: space-between;
        }
        .score-card .live-tag {
            background: #dc3545;
            color: #fff;
            font-size: 0.7rem;
            padding: 2px 8px;
            border-radius: 12px;
            text-transform: uppercase;
            font-weight: 700;
            animation: blink 1s infinite;
        }
        @keyframes blink {
            0%,
            100% {
                opacity: 1;
            }
            50% {
                opacity: 0.5;
            }
        }
        .featured-image {
            width: 100%;
            border-radius: var(--radius);
            margin: 1.5rem 0;
            box-shadow: var(--shadow);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background: var(--card-bg);
            border-radius: var(--radius);
            padding: 1.5rem;
            box-shadow: var(--shadow);
        }
        .sidebar-widget h3 {
            font-size: 1.2rem;
            color: var(--primary-dark);
            margin-bottom: 1rem;
            border-bottom: 2px solid var(--accent);
            padding-bottom: 0.5rem;
        }
        .sidebar-widget ul {
            list-style: none;
        }
        .sidebar-widget ul li {
            margin-bottom: 0.6rem;
            padding-left: 1.2rem;
            position: relative;
        }
        .sidebar-widget ul li::before {
            content: "⚽";
            position: absolute;
            left: 0;
            font-size: 0.8rem;
        }
        .search-box {
            display: flex;
            gap: 0.5rem;
            margin-top: 0.5rem;
        }
        .search-box input {
            flex: 1;
            padding: 0.7rem;
            border: 2px solid #e9ecef;
            border-radius: 8px;
            font-size: 1rem;
        }
        .search-box input:focus {
            outline: none;
            border-color: var(--primary);
        }
        .btn {
            padding: 0.7rem 1.2rem;
            background: var(--primary);
            color: #fff;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 600;
            transition: 0.3s;
        }
        .btn:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
        }
        .review-section {
            background: var(--card-bg);
            border-radius: var(--radius);
            padding: 2.5rem;
            margin-top: 2rem;
            box-shadow: var(--shadow);
        }
        .review-form textarea {
            width: 100%;
            padding: 1rem;
            border: 2px solid #e9ecef;
            border-radius: 8px;
            min-height: 100px;
            resize: vertical;
            font-family: inherit;
            font-size: 1rem;
        }
        .review-form textarea:focus {
            outline: none;
            border-color: var(--primary);
        }
        .rating-stars {
            display: flex;
            gap: 0.3rem;
            margin: 1rem 0;
            font-size: 1.5rem;
        }
        .rating-stars i {
            cursor: pointer;
            color: #e9ecef;
            transition: 0.2s;
        }
        .rating-stars i.active {
            color: var(--accent);
        }
        .rating-stars i:hover {
            color: var(--accent);
            transform: scale(1.1);
        }
        .site-footer {
            background: var(--primary-dark);
            color: #e9ecef;
            padding: 2rem;
            margin-top: 3rem;
        }
        .footer-inner {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }
        .footer-inner a {
            color: #e9ecef;
        }
        .footer-inner a:hover {
            color: var(--accent);
        }
        friend-link {
            display: block;
            margin: 1rem 0;
            padding: 1rem;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 6px;
        }
        friend-link a {
            margin-right: 1.5rem;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 1.5rem;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.7);
        }
        @media (max-width: 992px) {
            .container {
                grid-template-columns: 1fr;
                padding: 1rem;
            }
            .header-inner {
                padding: 0 1rem;
            }
            .main-nav {
                display: none;
            }
            .hamburger {
                display: flex;
            }
        }
        @media (max-width: 576px) {
            .article-body {
                padding: 1.2rem;
            }
            .article-body h1 {
                font-size: 1.8rem;
            }
            .article-body h2 {
                font-size: 1.4rem;
            }
            .article-body h3 {
                font-size: 1.2rem;
            }
            .score-grid {
                grid-template-columns: 1fr;
            }
        }
