        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
            line-height: 1.7; 
        }
        body {
            background-color: #f5f7fa;
            color: #2d3436;
            padding-bottom: 60px;
        }
        .container {
            width: 92%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 12px;
        }
        header {
            background-color: #1e3a8a;
            color: #ffffff;
            padding: 22px 0;
            box-shadow: 0 3px 8px rgba(0,0,0,0.12);
            position: sticky;
            top: 0;
            z-index: 999;
        }
        .logo {
            font-size: 30px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1.2px;
            color: #fbbf24;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .main-nav {
            display: flex;
            gap: 28px;
        }
        .main-nav a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 600;
            font-size: 15px;
            transition: all 0.3s ease;
            position: relative;
        }
        .main-nav a:hover {
            color: #fbbf24;
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -4px;
            left: 0;
            background-color: #fbbf24;
            transition: width 0.3s ease;
        }
        .main-nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 26px;
            cursor: pointer;
            color: #fbbf24;
        }
        .btn {
            padding: 12px 24px;
            border: none;
            border-radius: 6px;
            font-weight: 700;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            transition: all 0.35s ease;
            font-size: 16px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }
        .btn-download {
            background-color: #10b981;
            color: white;
        }
        .btn-download:hover {
            background-color: #059669;
            transform: translateY(-2px);
            box-shadow: 0 6px 8px rgba(0,0,0,0.15);
        }
        .btn-login {
            background-color: #3b82f6;
            color: white;
        }
        .btn-login:hover {
            background-color: #2563eb;
            transform: translateY(-2px);
            box-shadow: 0 6px 8px rgba(0,0,0,0.15);
        }
        .hero {
            background: linear-gradient(rgba(30, 58, 138, 0.85), rgba(30, 58, 138, 0.85)), url('https://host.com/images/psv-hero.jpg');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 90px 0;
            text-align: center;
            margin-bottom: 45px;
            border-radius: 8px;
            margin-top: 15px;
        }
        .hero img {
            max-width: 100%;
            height: auto;
            alt: "Pull Shot Virtuoso Hero Banner - Indian Cricket Gaming Experience";
            title: "Pull Shot Virtuoso - India's Elite Cricket Game";
        }
        .hero h1 {
            font-size: 52px;
            margin-bottom: 25px;
            color: #fbbf24;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            line-height: 1.3;
        }
        .hero p {
            font-size: 21px;
            max-width: 850px;
            margin: 0 auto 35px;
            text-align: center;
        }
        .content-section {
            margin-bottom: 45px;
            background-color: white;
            padding: 35px;
            border-radius: 10px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        }
        h2 {
            font-size: 34px;
            margin-bottom: 22px;
            color: #1e3a8a;
            border-bottom: 3px solid #fbbf24;
            padding-bottom: 12px;
            font-weight: 700;
        }
        h3 {
            font-size: 26px;
            margin: 28px 0 18px;
            color: #1e40af;
            font-weight: 600;
        }
        h4 {
            font-size: 20px;
            margin: 22px 0 14px;
            color: #3b82f6;
        }
        p {
            margin-bottom: 18px;
            font-size: 17px;
            text-align: justify;
            color: #374151;
        }
        strong {
            color: #1e3a8a;
            font-weight: 700;
        }
        ul {
            margin: 18px 0 18px 35px;
        }
        li {
            margin-bottom: 12px;
            font-size: 16px;
            color: #374151;
        }
        .highlight-box {
            background-color: #fffbeb;
            border-left: 5px solid #fbbf24;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
            box-shadow: 0 2px 8px rgba(0,0,0,0.06);
        }
        .highlight-box strong {
            color: #92400e;
        }
        @media (max-width: 768px) {
            .main-nav {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 85px;
                left: 0;
                right: 0;
                background-color: #1e3a8a;
                padding: 25px;
                gap: 20px;
                z-index: 100;
                box-shadow: 0 8px 12px rgba(0,0,0,0.15);
            }
            .main-nav.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .hero h1 {
                font-size: 36px;
            }
            .hero p {
                font-size: 19px;
                padding: 0 15px;
            }
            h2 {
                font-size: 28px;
            }
            h3 {
                font-size: 24px;
            }
            .content-section {
                padding: 25px;
            }
            .btn {
                padding: 10px 20px;
                font-size: 15px;
            }
        }
        footer {
            background-color: #1e3a8a;
            color: white;
            padding: 45px 0 25px;
            margin-top: 60px;
            border-top: 5px solid #fbbf24;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 35px;
            margin-bottom: 35px;
        }
        .footer-section h4 {
            font-size: 19px;
            margin-bottom: 18px;
            color: #fbbf24;
            font-weight: 700;
        }
        .footer-section a {
            color: #dbeafe;
            text-decoration: none;
            display: block;
            margin-bottom: 12px;
            transition: color 0.3s ease;
            font-size: 15px;
        }
        .footer-section a:hover {
            color: #fbbf24;
            padding-left: 5px;
        }
        .copyright {
            text-align: center;
            padding-top: 25px;
            border-top: 1px solid #3b82f6;
            font-size: 15px;
            color: #dbeafe;
            line-height: 1.8;
        }
        .tag-container {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin: 25px 0;
        }
        .tag {
            background-color: #3b82f6;
            color: white;
            padding: 8px 18px;
            border-radius: 25px;
            font-size: 15px;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .tag:hover {
            background-color: #1e40af;
            transform: translateY(-2px);
        }
        .recommendation {
            background-color: #eff6ff;
            padding: 25px;
            border-radius: 10px;
            margin: 35px 0;
            border: 1px solid #bfdbfe;
        }
        .recommendation h4 {
            font-size: 21px;
            color: #1e40af;
            margin-bottom: 18px;
            font-weight: 700;
        }
        img {
            loading: lazy;
            border-radius: 6px;
        }
        html {
            scroll-behavior: smooth;
        }
        .content-dense {
            line-height: 1.8;
        }
        .regional-callout {
            background-color: #f0f9ff;
            padding: 15px;
            border-radius: 8px;
            margin: 20px 0;
            border-left: 4px solid #3b82f6;
        }
