* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
            background: #f4f7fa;
            color: #1a2a3a;
            line-height: 1.7;
            font-size: 16px;
        }
        a {
            color: #c0392b;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover {
            color: #e74c3c;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(145deg, #0b1a2e, #1a3a4a);
            padding: 18px 0;
            border-bottom: 4px solid #c0392b;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            color: #fff;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #f39c12, #e74c3c);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .my-logo i {
            -webkit-text-fill-color: #fff;
            background: none;
            font-size: 2rem;
            color: #f39c12;
        }
        .my-logo:hover {
            opacity: 0.9;
            text-decoration: none;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 4px 10px;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        .main-nav {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            align-items: center;
        }
        .main-nav a {
            color: #e0e8f0;
            padding: 8px 16px;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 500;
            transition: all 0.25s ease;
            white-space: nowrap;
        }
        .main-nav a:hover {
            background: #c0392b;
            color: #fff;
            text-decoration: none;
            transform: translateY(-2px);
        }
        .main-nav a.active {
            background: #c0392b;
            color: #fff;
        }
        .breadcrumb-bar {
            background: #fff;
            padding: 10px 0;
            border-bottom: 1px solid #e0e8f0;
            font-size: 0.85rem;
        }
        .breadcrumb-bar a {
            color: #2c3e50;
        }
        .breadcrumb-bar a:hover {
            color: #c0392b;
        }
        .breadcrumb-bar span {
            color: #7f8c8d;
        }
        .breadcrumb-bar i {
            margin: 0 6px;
            font-size: 0.7rem;
            color: #bdc3c7;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 40px;
            padding: 40px 0;
        }
        .main-content {
            background: #fff;
            border-radius: 20px;
            padding: 40px 45px;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 28px;
        }
        .sidebar-card {
            background: #fff;
            border-radius: 16px;
            padding: 24px 22px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            border-left: 4px solid #c0392b;
        }
        .sidebar-card h3 {
            font-size: 1.15rem;
            margin-bottom: 14px;
            color: #0b1a2e;
            border-bottom: 2px solid #f0f2f5;
            padding-bottom: 10px;
        }
        .sidebar-card ul {
            list-style: none;
            padding: 0;
        }
        .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: block;
            padding: 4px 0;
        }
        .sidebar-card ul li a:hover {
            padding-left: 6px;
        }
        h1 {
            font-size: 2.6rem;
            font-weight: 800;
            color: #0b1a2e;
            line-height: 1.2;
            margin: 0 0 12px 0;
            letter-spacing: -0.5px;
        }
        h1 i {
            color: #c0392b;
            margin-right: 10px;
        }
        h2 {
            font-size: 1.9rem;
            font-weight: 700;
            color: #0b1a2e;
            margin: 42px 0 16px 0;
            padding-bottom: 8px;
            border-bottom: 3px solid #f39c12;
            line-height: 1.25;
        }
        h2 i {
            color: #c0392b;
            margin-right: 10px;
        }
        h3 {
            font-size: 1.4rem;
            font-weight: 600;
            color: #1a3a4a;
            margin: 30px 0 12px 0;
            line-height: 1.3;
        }
        h3 i {
            color: #f39c12;
            margin-right: 8px;
        }
        h4 {
            font-size: 1.15rem;
            font-weight: 600;
            color: #2c3e50;
            margin: 22px 0 10px 0;
            line-height: 1.35;
        }
        h4 i {
            color: #e67e22;
            margin-right: 6px;
        }
        p {
            margin: 0 0 18px 0;
            color: #2c3e50;
        }
        .lead {
            font-size: 1.2rem;
            color: #34495e;
            font-weight: 400;
            background: #f8f9fa;
            padding: 20px 24px;
            border-radius: 12px;
            border-left: 4px solid #c0392b;
            margin-bottom: 30px;
        }
        .highlight {
            background: #fff9e6;
            padding: 2px 8px;
            border-radius: 4px;
            font-weight: 600;
        }
        strong {
            color: #0b1a2e;
        }
        .emoji-big {
            font-size: 1.4rem;
        }
        .featured-image {
            margin: 30px 0 32px 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
            background: #eef1f4;
            padding: 8px;
        }
        .featured-image img {
            width: 100%;
            border-radius: 10px;
        }
        .featured-image figcaption {
            padding: 12px 16px 6px 16px;
            font-size: 0.85rem;
            color: #5d6d7e;
            font-style: italic;
            text-align: center;
        }
        .match-table {
            width: 100%;
            border-collapse: collapse;
            margin: 24px 0 30px 0;
            font-size: 0.95rem;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
        }
        .match-table thead {
            background: #0b1a2e;
            color: #fff;
        }
        .match-table th {
            padding: 14px 18px;
            text-align: left;
            font-weight: 600;
        }
        .match-table td {
            padding: 12px 18px;
            border-bottom: 1px solid #e8ecf0;
        }
        .match-table tbody tr:hover {
            background: #f4f7fb;
        }
        .match-table .team-india {
            font-weight: 600;
            color: #c0392b;
        }
        .form-card {
            background: #f8fafc;
            border-radius: 16px;
            padding: 28px 30px;
            margin: 32px 0;
            border: 1px solid #e8ecf0;
        }
        .form-card h3 {
            margin-top: 0;
        }
        .form-group {
            margin-bottom: 18px;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            font-size: 0.9rem;
            margin-bottom: 6px;
            color: #1a2a3a;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #dce2e8;
            border-radius: 10px;
            font-size: 1rem;
            transition: border 0.25s ease;
            background: #fff;
            font-family: inherit;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: #c0392b;
            outline: none;
            box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.15);
        }
        .form-group textarea {
            resize: vertical;
            min-height: 100px;
        }
        .btn {
            display: inline-block;
            padding: 12px 32px;
            background: #c0392b;
            color: #fff;
            border: none;
            border-radius: 30px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.25s ease;
        }
        .btn:hover {
            background: #a93226;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(192, 57, 43, 0.3);
        }
        .btn i {
            margin-right: 8px;
        }
        .rating-stars {
            display: flex;
            gap: 6px;
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
            margin: 8px 0;
        }
        .rating-stars .star {
            transition: color 0.2s ease;
        }
        .rating-stars .star.active,
        .rating-stars .star:hover {
            color: #f39c12;
        }
        .site-footer {
            background: #0b1a2e;
            color: #ccd5df;
            padding: 40px 0 20px 0;
            margin-top: 40px;
            border-top: 4px solid #c0392b;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 30px;
        }
        .footer-brand h3 {
            color: #fff;
            font-size: 1.5rem;
            margin-bottom: 12px;
        }
        .footer-brand p {
            color: #b0bec5;
            font-size: 0.9rem;
        }
        .footer-links h4 {
            color: #fff;
            font-size: 1rem;
            margin-bottom: 14px;
            border-bottom: 2px solid #c0392b;
            padding-bottom: 8px;
            display: inline-block;
        }
        .footer-links a {
            display: block;
            color: #b0bec5;
            padding: 4px 0;
            font-size: 0.9rem;
        }
        .footer-links a:hover {
            color: #f39c12;
        }
        .footer-bottom {
            border-top: 1px solid #1a3a4a;
            padding-top: 20px;
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
            font-size: 0.85rem;
            color: #7f8c8d;
        }
        .footer-bottom a {
            color: #b0bec5;
        }
        .footer-bottom a:hover {
            color: #f39c12;
        }
        friend-link {
            display: block;
            padding: 12px 0;
        }
        friend-link a {
            color: #f39c12;
            padding: 0 8px;
        }
        friend-link a:hover {
            color: #fff;
        }
        @media (max-width: 860px) {
            .content-wrapper {
                grid-template-columns: 1fr;
                gap: 24px;
                padding: 20px 0;
            }
            .main-content {
                padding: 24px 18px;
            }
            .sidebar {
                order: 2;
            }
            .header-inner {
                flex-wrap: wrap;
            }
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                background: #0f1f2f;
                padding: 16px 12px;
                border-radius: 16px;
                margin-top: 12px;
                gap: 4px;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 10px 16px;
                border-radius: 10px;
                width: 100%;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .match-table {
                font-size: 0.8rem;
            }
            .match-table th,
            .match-table td {
                padding: 8px 10px;
            }
            .form-card {
                padding: 18px 16px;
            }
            .lead {
                font-size: 1rem;
                padding: 14px 16px;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 12px;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            h1 {
                font-size: 1.5rem;
            }
            .main-content {
                padding: 16px 12px;
                border-radius: 12px;
            }
            .sidebar-card {
                padding: 16px 14px;
            }
        }
        .mt-0 {
            margin-top: 0;
        }
        .mb-0 {
            margin-bottom: 0;
        }
        .text-small {
            font-size: 0.85rem;
            color: #5d6d7e;
        }
        .tag {
            display: inline-block;
            background: #f0f2f5;
            padding: 2px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 500;
            color: #2c3e50;
        }
        .tag:hover {
            background: #c0392b;
            color: #fff;
            text-decoration: none;
        }
        .last-updated {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.85rem;
            color: #7f8c8d;
            margin-bottom: 20px;
            padding: 8px 16px;
            background: #f8f9fa;
            border-radius: 30px;
            width: fit-content;
        }
        .last-updated i {
            color: #c0392b;
        }
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .main-content {
            animation: fadeIn 0.5s ease;
        }
