* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', 'Tahoma', sans-serif;
        }
        body {
            background-color: #f5f5f0;
            color: #333;
            line-height: 1.8;
            padding-bottom: 60px;
        }
        .header-wrapper {
            background-color: #0f4c81;
            color: white;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .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: #ffd700;
            text-decoration: none;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }
        .nav-links {
            display: flex;
            list-style: none;
        }
        .nav-links li {
            margin-left: 30px;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }
        .nav-links a:hover {
            color: #ffd700;
            text-decoration: underline;
        }
        .daman-link {
            background-color: #ff8c00;
            padding: 5px 15px;
            border-radius: 20px;
        }
        .daman-link:hover {
            background-color: #ff6347;
            text-decoration: none;
        }
        .main-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        h1 {
            color: #0f4c81;
            font-size: 2.5rem;
            text-align: center;
            margin: 30px 0;
            padding-bottom: 15px;
            border-bottom: 3px solid #ffd700;
        }
        h2 {
            color: #0f4c81;
            font-size: 2rem;
            margin: 40px 0 20px;
            padding-left: 15px;
            border-left: 4px solid #ff8c00;
        }
        h3 {
            color: #0f4c81;
            font-size: 1.6rem;
            margin: 30px 0 15px;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            font-weight: bold;
            color: #0f4c81;
        }
        .indian-note {
            background-color: #fff8e1;
            border-left: 4px solid #ffd700;
            padding: 15px;
            margin: 25px 0;
            border-radius: 0 5px 5px 0;
        }
        .img-container {
            margin: 35px 0;
            text-align: center;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            border: 2px solid #e0e0e0;
        }
        .btn-section {
            text-align: center;
            margin: 50px 0;
        }
        .game-btn {
            display: inline-block;
            padding: 15px 35px;
            margin: 0 15px;
            font-size: 1.2rem;
            font-weight: bold;
            text-decoration: none;
            border-radius: 8px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }
        .download-btn {
            background-color: #228b22;
            color: white;
        }
        .download-btn:hover {
            background-color: #006400;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.3);
        }
        .login-btn {
            background-color: #1e90ff;
            color: white;
        }
        .login-btn:hover {
            background-color: #0000cd;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.3);
        }
        .stats-card {
            background-color: white;
            border-radius: 10px;
            padding: 25px;
            margin: 40px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 25px;
            margin-top: 20px;
        }
        .stat-item {
            text-align: center;
            padding: 20px;
            background-color: #f0f8ff;
            border-radius: 8px;
            border: 1px solid #e0f2f1;
        }
        .stat-number {
            font-size: 2.8rem;
            font-weight: bold;
            color: #0f4c81;
            margin-bottom: 10px;
        }
        .stat-label {
            font-size: 1.1rem;
            color: #333;
        }
        .localization-tabs {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin: 30px 0;
        }
        .local-tab {
            background-color: #e6f2ff;
            padding: 10px 20px;
            border-radius: 20px;
            font-weight: bold;
            color: #0f4c81;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .local-tab:hover {
            background-color: #b3d9ff;
        }
        .review-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }
        .review-card {
            background-color: white;
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
            border-top: 4px solid #ff8c00;
        }
        .reviewer-name {
            font-weight: bold;
            color: #0f4c81;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
        }
        .reviewer-name::before {
            content: "👤";
            margin-right: 10px;
            font-size: 1.2rem;
        }
        .review-rating {
            color: #ffd700;
            margin-bottom: 15px;
        }
        footer {
            background-color: #0f4c81;
            color: white;
            padding: 50px 0 20px;
            margin-top: 80px;
        }
        .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: 40px;
            margin-bottom: 40px;
        }
        .footer-section h4 {
            font-size: 1.4rem;
            margin-bottom: 20px;
            color: #ffd700;
            padding-bottom: 10px;
            border-bottom: 2px solid #ff8c00;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        .footer-links a {
            color: #f0f8ff;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .footer-links a:hover {
            color: #ffd700;
            padding-left: 5px;
        }
        .game-types {
            margin-top: 20px;
        }
        .game-type-link {
            display: inline-block;
            color: #f0f8ff;
            margin-right: 15px;
            margin-bottom: 10px;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .game-type-link:hover {
            color: #ffd700;
            text-decoration: underline;
        }
        .tags-container {
            margin-top: 20px;
        }
        .tag-link {
            display: inline-block;
            background-color: #1a5f99;
            color: white;
            padding: 8px 15px;
            border-radius: 20px;
            margin-right: 10px;
            margin-bottom: 10px;
            text-decoration: none;
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }
        .tag-link:hover {
            background-color: #ff8c00;
            transform: translateY(-2px);
        }
        .daman-recommendation {
            background-color: #1a5f99;
            padding: 20px;
            border-radius: 8px;
            margin-top: 30px;
            text-align: center;
            font-size: 1.1rem;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            margin-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.2);
            font-size: 0.95rem;
        }
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                align-items: flex-start;
            }
            .mobile-menu-toggle {
                display: block;
                position: absolute;
                top: 20px;
                right: 20px;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                margin-top: 20px;
            }
            .nav-links.active {
                display: flex;
            }
            .nav-links li {
                margin: 12px 0;
                margin-left: 0;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            h3 {
                font-size: 1.4rem;
            }
            .game-btn {
                display: block;
                width: 80%;
                margin: 15px auto;
                text-align: center;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .review-container {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr;
            }
        }
