        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        :root {
            --primary: #1a3a6b;
            --primary-light: #2a5a9e;
            --secondary: #e85d2c;
            --accent: #f4a261;
            --bg-light: #f9f7f2;
            --bg-dark: #0f1a2e;
            --text-dark: #1a1a2e;
            --text-light: #f0f0f0;
            --text-muted: #5a5a7a;
            --border: #d4d0c8;
            --card-bg: #ffffff;
            --shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
            --radius: 16px;
            --radius-sm: 8px;
            --font: 'Segoe UI', system-ui, -apple-system, sans-serif;
            --max-width: 1200px;
            --header-height: 72px;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: var(--font);
            background: var(--bg-light);
            color: var(--text-dark);
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
        }
        a {
            color: var(--primary-light);
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover {
            color: var(--secondary);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: var(--radius-sm);
        }
        .container {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: var(--bg-dark);
            color: var(--text-light);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 16px rgba(0, 0, 0, 0.25);
            height: var(--header-height);
            display: flex;
            align-items: center;
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 20px;
        }
        .my-logo {
            font-size: 1.6rem;
            font-weight: 800;
            color: #fff;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, var(--secondary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: none;
            transition: opacity 0.3s;
        }
        .my-logo:hover {
            opacity: 0.85;
            color: #fff;
        }
        .my-logo span {
            font-weight: 300;
            -webkit-text-fill-color: #fff;
            color: #fff;
            background: none;
        }
        .nav-toggle {
            display: none;
            font-size: 1.5rem;
            background: none;
            border: none;
            color: #fff;
            cursor: pointer;
            padding: 8px 12px;
            border-radius: var(--radius-sm);
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 12px;
            list-style: none;
        }
        .nav-menu li a {
            color: rgba(255, 255, 255, 0.85);
            padding: 8px 16px;
            border-radius: var(--radius-sm);
            font-weight: 500;
            font-size: 0.92rem;
            transition: background 0.25s, color 0.25s;
            white-space: nowrap;
        }
        .nav-menu li a:hover,
        .nav-menu li a.active {
            background: rgba(232, 93, 44, 0.25);
            color: #fff;
        }
        .breadcrumb {
            background: var(--bg-dark);
            padding: 10px 0 12px;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
        }
        .breadcrumb ul {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            gap: 6px 12px;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 20px;
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.6);
        }
        .breadcrumb ul li+li::before {
            content: "›";
            margin-right: 10px;
            color: rgba(255, 255, 255, 0.3);
        }
        .breadcrumb ul li a {
            color: var(--accent);
        }
        .breadcrumb ul li a:hover {
            color: #fff;
        }
        .hero {
            background: linear-gradient(135deg, var(--bg-dark) 0%, #1a2a4a 100%);
            color: #fff;
            padding: 48px 0 56px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .hero::after {
            content: "🏏";
            position: absolute;
            right: -30px;
            bottom: -30px;
            font-size: 180px;
            opacity: 0.06;
            transform: rotate(-10deg);
            pointer-events: none;
        }
        .hero h1 {
            font-size: 2.8rem;
            font-weight: 800;
            letter-spacing: -1px;
            margin-bottom: 12px;
            line-height: 1.2;
        }
        .hero h1 span {
            color: var(--secondary);
        }
        .hero .subtitle {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.75);
            max-width: 680px;
            margin: 0 auto 20px;
        }
        .hero .meta-badge {
            display: inline-flex;
            gap: 20px;
            background: rgba(255, 255, 255, 0.08);
            padding: 8px 24px;
            border-radius: 40px;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(4px);
            border: 1px solid rgba(255, 255, 255, 0.06);
        }
        .live-score-widget {
            background: var(--card-bg);
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            padding: 28px 32px;
            margin-top: -32px;
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            gap: 20px;
            align-items: center;
            border: 1px solid var(--border);
        }
        .live-score-widget .team {
            text-align: center;
        }
        .live-score-widget .team .flag {
            font-size: 2.4rem;
            display: block;
            margin-bottom: 4px;
        }
        .live-score-widget .team .name {
            font-weight: 700;
            font-size: 1.1rem;
        }
        .live-score-widget .team .score {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--primary);
            letter-spacing: -1px;
        }
        .live-score-widget .team .overs {
            font-size: 0.85rem;
            color: var(--text-muted);
        }
        .live-score-widget .vs {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--text-muted);
            text-align: center;
        }
        .live-score-widget .live-tag {
            background: #e63946;
            color: #fff;
            font-size: 0.7rem;
            font-weight: 700;
            padding: 2px 12px;
            border-radius: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
            animation: pulse 1.8s infinite;
            display: inline-block;
        }
        @keyframes pulse {
            0%,
            100% {
                opacity: 1;
            }
            50% {
                opacity: 0.5;
            }
        }
        .search-section {
            padding: 32px 0 16px;
        }
        .search-form {
            display: flex;
            gap: 8px;
            max-width: 600px;
            margin: 0 auto;
        }
        .search-form input {
            flex: 1;
            padding: 14px 20px;
            border: 2px solid var(--border);
            border-radius: 60px;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.3s;
            background: var(--card-bg);
        }
        .search-form input:focus {
            border-color: var(--primary-light);
        }
        .search-form button {
            padding: 14px 28px;
            background: var(--primary);
            color: #fff;
            border: none;
            border-radius: 60px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
        }
        .search-form button:hover {
            background: var(--primary-light);
            transform: scale(1.02);
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 40px 0 60px;
        }
        .content-main {
            min-width: 0;
        }
        .content-sidebar {
            position: sticky;
            top: calc(var(--header-height) + 24px);
            align-self: start;
        }
        .article-body h2 {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary);
            margin-top: 48px;
            margin-bottom: 16px;
            padding-bottom: 8px;
            border-bottom: 3px solid var(--secondary);
            display: inline-block;
        }
        .article-body h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--primary-light);
            margin-top: 32px;
            margin-bottom: 12px;
        }
        .article-body h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--text-dark);
            margin-top: 24px;
            margin-bottom: 8px;
        }
        .article-body p {
            margin-bottom: 18px;
            color: var(--text-dark);
            font-size: 1.05rem;
        }
        .article-body .lead {
            font-size: 1.2rem;
            font-weight: 400;
            color: var(--text-muted);
            border-left: 4px solid var(--accent);
            padding-left: 20px;
            margin-bottom: 28px;
        }
        .article-body ul,
        .article-body ol {
            margin: 16px 0 24px 24px;
        }
        .article-body li {
            margin-bottom: 8px;
            font-size: 1.02rem;
        }
        .highlight-box {
            background: #edf2f9;
            border-radius: var(--radius-sm);
            padding: 20px 24px;
            margin: 20px 0;
            border-left: 4px solid var(--secondary);
        }
        .highlight-box strong {
            color: var(--primary);
        }
        .featured-image {
            margin: 28px 0;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .featured-image img {
            width: 100%;
            object-fit: cover;
            max-height: 480px;
        }
        .featured-image figcaption {
            padding: 10px 16px;
            background: var(--card-bg);
            font-size: 0.85rem;
            color: var(--text-muted);
            border-top: 1px solid var(--border);
        }
        .sidebar-card {
            background: var(--card-bg);
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            padding: 20px;
            margin-bottom: 24px;
            border: 1px solid var(--border);
        }
        .sidebar-card h3 {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 12px;
            border-bottom: 2px solid var(--accent);
            padding-bottom: 6px;
        }
        .sidebar-card ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .sidebar-card ul li {
            padding: 6px 0;
            border-bottom: 1px solid #f0ede8;
        }
        .sidebar-card ul li:last-child {
            border-bottom: none;
        }
        .sidebar-card ul li a {
            color: var(--text-dark);
            font-weight: 500;
            font-size: 0.92rem;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .sidebar-card ul li a:hover {
            color: var(--secondary);
        }
        .sidebar-card ul li a i {
            color: var(--accent);
            width: 18px;
            text-align: center;
        }
        .interaction-section {
            background: var(--card-bg);
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            padding: 32px;
            margin: 40px 0;
            border: 1px solid var(--border);
        }
        .interaction-section h2 {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 20px;
            border-bottom: 3px solid var(--secondary);
            display: inline-block;
            padding-bottom: 6px;
        }
        .comment-form textarea {
            width: 100%;
            padding: 16px;
            border: 2px solid var(--border);
            border-radius: var(--radius-sm);
            font-family: var(--font);
            font-size: 1rem;
            resize: vertical;
            min-height: 100px;
            transition: border-color 0.3s;
        }
        .comment-form textarea:focus {
            border-color: var(--primary-light);
            outline: none;
        }
        .comment-form .form-row {
            display: flex;
            gap: 16px;
            margin-top: 12px;
            flex-wrap: wrap;
        }
        .comment-form .form-row input {
            flex: 1;
            padding: 12px 16px;
            border: 2px solid var(--border);
            border-radius: var(--radius-sm);
            font-size: 1rem;
            min-width: 180px;
            transition: border-color 0.3s;
        }
        .comment-form .form-row input:focus {
            border-color: var(--primary-light);
            outline: none;
        }
        .comment-form button {
            padding: 12px 32px;
            background: var(--primary);
            color: #fff;
            border: none;
            border-radius: 60px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
            margin-top: 12px;
        }
        .comment-form button:hover {
            background: var(--primary-light);
            transform: scale(1.02);
        }
        .rating-stars {
            display: flex;
            gap: 8px;
            font-size: 2rem;
            margin: 12px 0 16px;
            cursor: pointer;
            color: #d4d0c8;
            transition: color 0.2s;
        }
        .rating-stars .star:hover,
        .rating-stars .star.active {
            color: #f4a261;
        }
        .site-footer {
            background: var(--bg-dark);
            color: rgba(255, 255, 255, 0.7);
            padding: 40px 0 24px;
            margin-top: 40px;
        }
        .footer-inner {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 40px;
        }
        .footer-inner h4 {
            color: #fff;
            font-weight: 700;
            margin-bottom: 12px;
            font-size: 1.1rem;
        }
        .footer-inner p {
            font-size: 0.92rem;
            line-height: 1.6;
        }
        .footer-inner ul {
            list-style: none;
            padding: 0;
        }
        .footer-inner ul li {
            padding: 4px 0;
        }
        .footer-inner ul li a {
            color: rgba(255, 255, 255, 0.65);
            font-size: 0.9rem;
        }
        .footer-inner ul li a:hover {
            color: var(--accent);
        }
        friend-link {
            display: block;
            background: rgba(255, 255, 255, 0.04);
            border-radius: var(--radius-sm);
            padding: 16px 20px;
            margin-top: 12px;
            border: 1px solid rgba(255, 255, 255, 0.06);
        }
        friend-link a {
            color: var(--accent);
            font-weight: 500;
        }
        friend-link a:hover {
            color: #fff;
        }
        .copyright {
            text-align: center;
            padding-top: 28px;
            margin-top: 28px;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.45);
        }
        .copyright a {
            color: var(--accent);
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .content-sidebar {
                position: static;
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 16px;
            }
            .footer-inner {
                grid-template-columns: 1fr 1fr;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                flex-direction: column;
                background: var(--bg-dark);
                position: absolute;
                top: var(--header-height);
                left: 0;
                right: 0;
                padding: 16px 24px 24px;
                border-bottom: 2px solid var(--secondary);
                box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
                gap: 4px;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu li a {
                padding: 12px 16px;
                width: 100%;
            }
            .live-score-widget {
                grid-template-columns: 1fr;
                gap: 12px;
                padding: 20px;
                text-align: center;
            }
            .live-score-widget .vs {
                order: -1;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .hero .subtitle {
                font-size: 1rem;
            }
            .content-sidebar {
                grid-template-columns: 1fr;
            }
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .interaction-section {
                padding: 20px;
            }
            .comment-form .form-row {
                flex-direction: column;
            }
            .comment-form .form-row input {
                min-width: unset;
            }
        }
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.5rem;
            }
            .hero .meta-badge {
                flex-wrap: wrap;
                justify-content: center;
                font-size: 0.8rem;
                padding: 6px 16px;
            }
            .article-body h2 {
                font-size: 1.5rem;
            }
            .article-body h3 {
                font-size: 1.25rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                width: 100%;
            }
            .live-score-widget .team .score {
                font-size: 1.8rem;
            }
        }
        .text-sm {
            font-size: 0.9rem;
        }
        .text-muted {
            color: var(--text-muted);
        }
        .mt-20 {
            margin-top: 20px;
        }
        .mb-20 {
            margin-bottom: 20px;
        }
        .flex {
            display: flex;
        }
        .flex-center {
            align-items: center;
            justify-content: center;
        }
        .gap-8 {
            gap: 8px;
        }
        .gap-16 {
            gap: 16px;
        }
