*,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        body {
            font-family: 'Segoe UI', Roboto, Arial, sans-serif;
            background: #f4f7fc;
            color: #222;
            line-height: 1.75;
            overflow-x: hidden;
        }
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #0b1a2e, #0d2137);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 999;
            box-shadow: 0 4px 20px rgba(0, 0, 0, .3);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 10px;
        }
        .my-logo {
            font-size: 1.6rem;
            font-weight: 800;
            color: #ffb800;
            text-decoration: none;
            letter-spacing: 1px;
            text-shadow: 0 0 20px rgba(255, 184, 0, .4);
        }
        .my-logo span {
            color: #fff;
            font-weight: 300;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 22px;
            align-items: center;
        }
        .nav-links li a {
            color: rgba(255, 255, 255, .9);
            text-decoration: none;
            font-size: .9rem;
            font-weight: 500;
            padding: 6px 10px;
            border-radius: 6px;
            transition: background .3s, color .3s;
        }
        .nav-links li a:hover {
            background: rgba(255, 184, 0, .2);
            color: #ffb800;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
        }
        .hamburger .bar {
            width: 26px;
            height: 3px;
            background: #fff;
            border-radius: 3px;
            transition: .3s;
        }
        .nav-open .nav-links {
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 100%;
            background: #0d2137;
            padding: 14px 0;
            border-radius: 0 0 12px 12px;
        }
        .breadcrumb {
            background: #eef2f7;
            padding: 12px 0;
            font-size: .85rem;
            color: #666;
        }
        .breadcrumb .container {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }
        .breadcrumb a {
            color: #0077cc;
            text-decoration: none;
        }
        .hero {
            background: linear-gradient(rgba(0, 0, 0, .55), rgba(0, 0, 0, .65)), url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="800" height="400" viewBox="0 0 800 400"%3E%3Crect fill="%230d2137" width="800" height="400"/%3E%3Ccircle cx="200" cy="160" r="30" fill="%23ffb800" opacity="0.6"/%3E%3Cpath d="M400 80L520 220L300 260Z" fill="%23fff" opacity="0.2"/%3E%3Ctext x="60" y="340" font-family="Arial" font-size="28" fill="%23fff" opacity="0.4"%3E%23FantasyCricket%3C/text%3E%3C/svg%3E') center/cover no-repeat;
            padding: 90px 0 70px;
            text-align: center;
            color: #fff;
        }
        .hero h1 {
            font-size: 2.6rem;
            font-weight: 800;
            max-width: 850px;
            margin: 0 auto 20px;
            text-shadow: 0 4px 16px rgba(0, 0, 0, .5);
        }
        .hero p {
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto 28px;
            opacity: .92;
        }
        .hero-cta {
            background: #ffb800;
            color: #0b1a2e;
            padding: 14px 34px;
            border-radius: 30px;
            font-weight: 700;
            text-decoration: none;
            display: inline-block;
            font-size: 1rem;
            box-shadow: 0 8px 24px rgba(255, 184, 0, .35);
            transition: transform .2s, box-shadow .2s;
        }
        .hero-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 14px 32px rgba(255, 184, 0, .5);
        }
        .search-section {
            background: #fff;
            padding: 30px 0;
            border-bottom: 1px solid #e8ecf1;
        }
        .search-box {
            display: flex;
            gap: 10px;
            max-width: 640px;
            margin: 0 auto;
        }
        .search-box input {
            flex: 1;
            padding: 14px 18px;
            border: 2px solid #dce3ec;
            border-radius: 30px;
            font-size: 1rem;
            outline: none;
            transition: border-color .3s;
        }
        .search-box input:focus {
            border-color: #ffb800;
        }
        .search-box button {
            background: #0d2137;
            color: #fff;
            border: none;
            border-radius: 30px;
            padding: 0 24px;
            font-size: 1rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: background .3s;
        }
        .search-box button:hover {
            background: #ffb800;
            color: #0b1a2e;
        }
        .article-wrap {
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 40px;
            margin: 40px auto;
        }
        @media(max-width:900px) {
            .article-wrap {
                grid-template-columns: 1fr;
            }
        }
        .article-main {
            background: #fff;
            border-radius: 16px;
            padding: 36px 42px;
            box-shadow: 0 6px 24px rgba(0, 0, 0, .05);
        }
        .article-main h2 {
            font-size: 1.8rem;
            margin: 48px 0 18px;
            padding-bottom: 10px;
            border-bottom: 3px solid #ffb800;
            color: #0b1a2e;
        }
        .article-main h3 {
            font-size: 1.35rem;
            margin: 30px 0 12px;
            color: #0b1a2e;
        }
        .article-main h4 {
            font-size: 1.1rem;
            margin: 22px 0 8px;
            color: #333;
            font-weight: 600;
        }
        .article-main p {
            margin-bottom: 16px;
            text-align: justify;
        }
        .article-main ul,
        .article-main ol {
            margin: 12px 0 20px 24px;
        }
        .article-main li {
            margin-bottom: 6px;
        }
        .highlight-box {
            background: #f0f7ff;
            border-left: 5px solid #ffb800;
            padding: 18px 22px;
            border-radius: 0 10px 10px 0;
            margin: 20px 0;
            font-style: normal;
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 16px;
            margin: 24px 0;
        }
        .stat-card {
            background: #f8fafc;
            border-radius: 12px;
            padding: 20px 12px;
            text-align: center;
            border: 1px solid #edf2f7;
            transition: transform .2s;
        }
        .stat-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, .06);
        }
        .stat-card .num {
            font-size: 1.6rem;
            font-weight: 800;
            color: #ffb800;
        }
        .stat-card .label {
            font-size: .82rem;
            color: #666;
            margin-top: 4px;
        }
        .article-image {
            width: 100%;
            border-radius: 14px;
            margin: 24px 0 14px;
            box-shadow: 0 6px 18px rgba(0, 0, 0, .08);
        }
        .article-image img {
            width: 100%;
            border-radius: 14px;
            display: block;
        }
        .img-caption {
            font-size: .82rem;
            color: #888;
            text-align: center;
            margin-bottom: 24px;
        }
        .table-responsive {
            overflow-x: auto;
            margin: 24px 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: .92rem;
        }
        table th,
        table td {
            border: 1px solid #e2e8f0;
            padding: 10px 14px;
            text-align: left;
        }
        table th {
            background: #0d2137;
            color: #fff;
            font-weight: 600;
        }
        table tr:nth-child(even) {
            background: #f8fafc;
        }
        table tr:hover {
            background: #f0f7ff;
        }
        .article-side {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .side-card {
            background: #fff;
            border-radius: 14px;
            padding: 24px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, .05);
        }
        .side-card h3 {
            font-size: 1.1rem;
            margin-bottom: 14px;
            border-bottom: 2px solid #ffb800;
            padding-bottom: 8px;
            color: #0b1a2e;
        }
        .side-card ul {
            list-style: none;
        }
        .side-card ul li {
            margin-bottom: 10px;
        }
        .side-card ul li a {
            color: #0077cc;
            text-decoration: none;
            font-size: .92rem;
            line-height: 1.4;
            display: block;
            transition: color .2s;
        }
        .side-card ul li a:hover {
            color: #ffb800;
        }
        .interaction-area {
            margin-top: 40px;
            border-top: 1px solid #e8ecf1;
            padding-top: 30px;
        }
        .rating-box {
            background: #f8fafc;
            border-radius: 12px;
            padding: 22px;
            text-align: center;
            margin-bottom: 24px;
        }
        .stars {
            font-size: 2rem;
            color: #d1d5db;
            cursor: pointer;
            user-select: none;
            display: inline-flex;
            gap: 6px;
        }
        .stars .star.active {
            color: #ffb800;
        }
        .rating-value {
            font-size: 1.2rem;
            font-weight: 700;
            color: #0b1a2e;
            margin-top: 8px;
        }
        .rating-box form {
            margin-top: 12px;
        }
        .rating-box select {
            padding: 8px 14px;
            border-radius: 8px;
            border: 1px solid #dce3ec;
            font-size: .95rem;
        }
        .rating-box button {
            background: #0d2137;
            color: #fff;
            border: none;
            padding: 10px 24px;
            border-radius: 20px;
            font-size: .9rem;
            cursor: pointer;
            margin-left: 8px;
            transition: background .3s;
        }
        .rating-box button:hover {
            background: #ffb800;
            color: #0b1a2e;
        }
        .comment-form textarea {
            width: 100%;
            padding: 14px;
            border: 2px solid #dce3ec;
            border-radius: 10px;
            font-size: 1rem;
            font-family: inherit;
            resize: vertical;
            min-height: 120px;
            outline: none;
            transition: border-color .3s;
        }
        .comment-form textarea:focus {
            border-color: #ffb800;
        }
        .comment-form input[type="text"] {
            width: 100%;
            padding: 12px 14px;
            border: 2px solid #dce3ec;
            border-radius: 10px;
            font-size: .95rem;
            margin: 10px 0;
            outline: none;
        }
        .comment-form button {
            background: #ffb800;
            color: #0b1a2e;
            border: none;
            padding: 12px 32px;
            border-radius: 24px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: transform .2s, box-shadow .2s;
        }
        .comment-form button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(255, 184, 0, .4);
        }
        .site-footer {
            background: #0b1a2e;
            color: rgba(255, 255, 255, .8);
            padding: 40px 0 20px;
            margin-top: 60px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        .footer-grid h4 {
            color: #ffb800;
            margin-bottom: 14px;
            font-size: 1rem;
        }
        .footer-grid a {
            color: rgba(255, 255, 255, .7);
            text-decoration: none;
            display: block;
            margin-bottom: 8px;
            font-size: .9rem;
            transition: color .2s;
        }
        .footer-grid a:hover {
            color: #ffb800;
        }
        friend-link {
            display: block;
            background: rgba(255, 255, 255, .06);
            border-radius: 10px;
            padding: 18px;
            margin: 20px 0;
            font-size: .9rem;
            line-height: 1.8;
        }
        friend-link a {
            color: #ffb800;
            text-decoration: none;
        }
        .copyright {
            text-align: center;
            font-size: .85rem;
            padding-top: 22px;
            border-top: 1px solid rgba(255, 255, 255, .1);
            color: rgba(255, 255, 255, .6);
        }
        @media(max-width:768px) {
            .nav-links {
                display: none;
                position: absolute;
                top: 60px;
                left: 0;
                right: 0;
                background: #0d2137;
                flex-direction: column;
                padding: 20px;
                box-shadow: 0 10px 30px rgba(0, 0, 0, .3);
            }
            .hamburger {
                display: flex;
            }
            .nav-open .nav-links {
                display: flex;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .hero {
                padding: 50px 0 40px;
            }
            .article-main {
                padding: 20px;
            }
            .search-box {
                flex-direction: column;
                padding: 0 20px;
            }
            .search-box button {
                justify-content: center;
                padding: 12px;
            }
        }
