* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', 'Segoe UI', sans-serif;
        }
        body {
            background-color: #f9f5f0;
            color: #3a2e21;
            line-height: 1.8;
            padding-bottom: 50px;
        }
        header {
            background: linear-gradient(135deg, #b83b5e 0%, #6a2c70 100%);
            color: white;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }
        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: #f9ed69;
            text-decoration: none;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
            font-family: 'Georgia', serif;
        }
        nav ul {
            display: flex;
            list-style: none;
        }
        nav ul li {
            margin-left: 30px;
        }
        nav ul li a {
            color: white;
            text-decoration: none;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            padding: 5px 10px;
            border-radius: 4px;
        }
        nav ul li a:hover {
            color: #f9ed69;
            background-color: rgba(255,255,255,0.1);
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 5px 10px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        h1 {
            color: #6a2c70;
            margin: 30px 0;
            font-size: 2.5rem;
            text-align: center;
            padding-bottom: 15px;
            border-bottom: 3px solid #f9ed69;
            display: inline-block;
            width: 100%;
            font-family: 'Georgia', serif;
        }
        h2 {
            color: #b83b5e;
            margin: 40px 0 20px;
            font-size: 2rem;
            position: relative;
            padding-left: 15px;
            font-family: 'Georgia', serif;
        }
        h2:before {
            content: '';
            position: absolute;
            left: 0;
            top: 10px;
            height: 70%;
            width: 5px;
            background-color: #f9ed69;
        }
        h3 {
            color: #6a2c70;
            margin: 30px 0 15px;
            font-size: 1.5rem;
            font-family: 'Georgia', serif;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            font-weight: bold;
            color: #b83b5e;
            text-decoration: underline dotted #f9ed69;
            text-underline-offset: 4px;
        }
        .btn {
            display: inline-block;
            padding: 12px 24px;
            background-color: #f9ed69;
            color: #6a2c70;
            text-decoration: none;
            font-weight: bold;
            border-radius: 5px;
            margin: 10px 5px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            border: none;
            cursor: pointer;
            font-size: 1.05rem;
        }
        .btn:hover {
            background-color: #f0d85c;
            transform: translateY(-2px);
            box-shadow: 0 6px 8px rgba(0,0,0,0.15);
        }
        .btn-download {
            background-color: #48bb78;
            color: white;
        }
        .btn-download:hover {
            background-color: #38a169;
        }
        .btn-login {
            background-color: #4299e1;
            color: white;
        }
        .btn-login:hover {
            background-color: #3182ce;
        }
        .image-container {
            margin: 30px 0;
            text-align: center;
        }
        .image-container img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 6px 12px rgba(0,0,0,0.15);
            transition: transform 0.3s ease;
        }
        .image-container img:hover {
            transform: scale(1.02);
        }
        .stats-box {
            background-color: white;
            border-radius: 8px;
            padding: 25px;
            margin: 30px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            border-top: 5px solid #6a2c70;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }
        .stat-item {
            text-align: center;
            padding: 20px 15px;
            background-color: #fff5f5;
            border-radius: 8px;
            transition: all 0.3s ease;
        }
        .stat-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(184, 59, 94, 0.2);
        }
        .stat-number {
            font-size: 2.2rem;
            font-weight: bold;
            color: #b83b5e;
            margin-bottom: 10px;
        }
        .stat-label {
            color: #6a2c70;
            font-weight: 500;
        }
        .review-container {
            background-color: white;
            border-radius: 8px;
            padding: 25px;
            margin: 20px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            border-left: 5px solid #f9ed69;
            transition: all 0.3s ease;
        }
        .review-container:hover {
            box-shadow: 0 6px 15px rgba(0,0,0,0.15);
        }
        .review-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 1px solid #f0f0f0;
        }
        .reviewer {
            font-weight: bold;
            color: #6a2c70;
            font-size: 1.1rem;
        }
        .rating {
            color: #f9ed69;
            font-size: 1.2rem;
        }
        .tag-container {
            margin: 30px 0;
            background-color: white;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .tag {
            display: inline-block;
            background-color: #ffe6ea;
            color: #b83b5e;
            padding: 8px 18px;
            border-radius: 20px;
            margin: 8px;
            text-decoration: none;
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }
        .tag:hover {
            background-color: #b83b5e;
            color: white;
            transform: translateY(-2px);
        }
        .game-type-nav {
            margin: 20px 0;
        }
        .game-type {
            display: inline-block;
            margin: 0 12px 12px 0;
            text-decoration: none;
            color: #6a2c70;
            font-weight: 500;
            font-size: 1.05rem;
            transition: all 0.3s ease;
            position: relative;
        }
        .game-type:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -2px;
            left: 0;
            background-color: #f9ed69;
            transition: width 0.3s ease;
        }
        .game-type:hover {
            color: #b83b5e;
        }
        .game-type:hover:after {
            width: 100%;
        }
        footer {
            background-color: #6a2c70;
            color: white;
            padding: 50px 0 20px;
            margin-top: 60px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }
        .footer-section {
            margin-bottom: 30px;
        }
        .footer-section h3 {
            color: #f9ed69;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid rgba(255,255,255,0.1);
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        .footer-links a {
            color: #e2e8f0;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .footer-links a:hover {
            color: #f9ed69;
            padding-left: 5px;
        }
        .recommendation {
            background-color: rgba(255,255,255,0.05);
            padding: 20px;
            border-radius: 8px;
            margin-bottom: 30px;
            border-left: 4px solid #f9ed69;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            margin-top: 20px;
            font-size: 0.95rem;
            color: #cbd5e0;
        }
        .features-table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .features-table th, .features-table td {
            padding: 15px;
            text-align: left;
            border-bottom: 1px solid #f0f0f0;
        }
        .features-table th {
            background-color: #6a2c70;
            color: white;
        }
        .features-table tr:hover {
            background-color: #fff5f5;
        }
        .features-table .check {
            color: #48bb78;
            font-weight: bold;
        }
        .features-table .cross {
            color: #e53e3e;
            font-weight: bold;
        }
        .punjab-highlight {
            background-color: #fff8e6;
            border-left: 5px solid #ed8936;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .punjab-highlight h4 {
            color: #c05621;
            margin-bottom: 10px;
            font-size: 1.2rem;
            font-family: 'Georgia', serif;
        }
        .festival-highlight {
            background-color: #f0fff4;
            border-left: 5px solid #38b2ac;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .festival-highlight h4 {
            color: #234e52;
            margin-bottom: 10px;
            font-size: 1.2rem;
            font-family: 'Georgia', serif;
        }
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background-color: #6a2c70;
                padding: 20px;
                box-shadow: 0 10px 10px rgba(0,0,0,0.2);
            }
            nav ul.show {
                display: flex;
            }
            nav ul li {
                margin: 12px 0;
                border-bottom: 1px solid rgba(255,255,255,0.1);
                padding-bottom: 8px;
            }
            h1 {
                font-size: 2rem;
                margin: 20px 0;
            }
            h2 {
                font-size: 1.7rem;
                margin: 30px 0 15px;
            }
            h3 {
                font-size: 1.3rem;
            }
            p {
                font-size: 1.05rem;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .btn {
                display: block;
                text-align: center;
                margin: 10px auto;
                width: 80%;
            }
            .features-table th, .features-table td {
                padding: 10px 8px;
                font-size: 0.9rem;
            }
        }
