* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', 'Helvetica', sans-serif;
        }
        body {
            background-color: #f0f8fb;
            color: #2d3748;
            line-height: 1.9;
            padding-bottom: 60px;
            font-size: 1rem;
        }
        .container {
            max-width: 1250px;
            margin: 0 auto;
            padding: 0 25px;
        }
        header {
            background-color: #2563eb;
            padding: 18px 0;
            position: sticky;
            top: 0;
            z-index: 9999;
            box-shadow: 0 3px 12px rgba(0,0,0,0.15);
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.1rem;
            font-weight: 900;
            color: #ffffff;
            text-decoration: none;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.25);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .logo span {
            color: #f97316;
        }
        .nav-links {
            display: flex;
            gap: 30px;
            align-items: center;
        }
        .nav-links a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.05rem;
            transition: all 0.3s ease;
            padding: 6px 0;
            border-bottom: 2px solid transparent;
        }
        .nav-links a:hover {
            color: #f97316;
            border-bottom: 2px solid #f97316;
        }
        .daman-link, .download-nav {
            background-color: #f97316;
            padding: 10px 20px;
            border-radius: 8px;
            border-bottom: none !important;
        }
        .daman-link:hover, .download-nav:hover {
            background-color: #ea580c;
            color: #ffffff !important;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            color: #ffffff;
            cursor: pointer;
            background: none;
            border: none;
        }
        @media (max-width: 768px) {
            .nav-links {
                position: absolute;
                top: 80px;
                left: 0;
                right: 0;
                background-color: #2563eb;
                flex-direction: column;
                padding: 30px 25px;
                gap: 20px;
                display: none;
                box-shadow: 0 8px 16px rgba(0,0,0,0.15);
                border-top: 1px solid rgba(255,255,255,0.1);
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .logo {
                font-size: 1.7rem;
            }
            .nav-links a {
                font-size: 1.1rem;
                width: 100%;
                text-align: center;
                padding: 10px;
                border-radius: 6px;
            }
            .nav-links a:hover {
                background-color: rgba(255,255,255,0.1);
                border-bottom: none;
            }
            .daman-link, .download-nav {
                width: 100%;
                text-align: center;
            }
        }
        .btn-container {
            margin: 40px 0;
            display: flex;
            gap: 25px;
            flex-wrap: wrap;
            justify-content: center;
        }
        .download-btn, .login-btn {
            padding: 16px 35px;
            border: none;
            border-radius: 10px;
            font-size: 1.2rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        .download-btn {
            background-color: #10b981;
            color: white;
        }
        .download-btn a {
            color: white;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .login-btn {
            background-color: #2563eb;
            color: white;
        }
        .login-btn a {
            color: white;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .download-btn:hover, .login-btn:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.2);
        }
        .download-btn:hover {
            background-color: #059669;
        }
        .login-btn:hover {
            background-color: #1d4ed8;
        }
        @media (max-width: 768px) {
            .btn-container {
                flex-direction: column;
                gap: 18px;
            }
            .download-btn, .login-btn {
                width: 100%;
                justify-content: center;
                padding: 18px;
                font-size: 1.15rem;
            }
        }
        h1 {
            font-size: 2.8rem;
            color: #1e40af;
            margin: 50px 0 35px;
            text-align: center;
            font-weight: 900;
            border-bottom: 4px solid #f97316;
            padding-bottom: 20px;
            line-height: 1.3;
        }
        h2 {
            font-size: 2.2rem;
            color: #1e40af;
            margin: 60px 0 30px;
            font-weight: 800;
            display: flex;
            align-items: center;
            gap: 12px;
            position: relative;
            padding-left: 15px;
        }
        h2::before {
            content: "🏔️";
            font-size: 1.8rem;
        }
        h2::after {
            content: "";
            position: absolute;
            left: 0;
            top: 10px;
            bottom: 10px;
            width: 4px;
            background-color: #f97316;
            border-radius: 2px;
        }
        h3 {
            font-size: 1.6rem;
            color: #f97316;
            margin: 40px 0 22px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        h3::before {
            content: "📍";
            font-size: 1.3rem;
        }
        h4 {
            font-size: 1.3rem;
            color: #1e40af;
            margin: 30px 0 18px;
            font-weight: 700;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.2rem;
                margin: 40px 0 25px;
                padding-bottom: 15px;
            }
            h2 {
                font-size: 1.8rem;
                margin: 50px 0 25px;
                gap: 10px;
            }
            h3 {
                font-size: 1.4rem;
                margin: 35px 0 20px;
            }
            h4 {
                font-size: 1.2rem;
                margin: 25px 0 15px;
            }
        }
        .game-img {
            width: 100%;
            border-radius: 12px;
            margin: 30px 0;
            box-shadow: 0 6px 18px rgba(0,0,0,0.18);
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        .game-img:hover {
            transform: scale(1.01);
        }
        .img-caption {
            text-align: center;
            font-size: 0.95rem;
            color: #64748b;
            margin-top: -20px;
            margin-bottom: 30px;
            font-style: italic;
        }
        p {
            margin-bottom: 25px;
            font-size: 1.05rem;
            text-align: justify;
            line-height: 1.9;
        }
        .highlight {
            background-color: #fef3c7;
            padding: 4px 10px;
            border-radius: 6px;
            font-weight: 700;
            color: #1e40af;
            display: inline-block;
            margin: 0 2px;
        }
        .key-term {
            font-weight: 800;
            color: #f97316;
            text-decoration: underline;
            text-underline-offset: 5px;
            text-decoration-thickness: 2px;
        }
        .indian-note {
            background-color: #e0f2fe;
            padding: 20px;
            border-radius: 10px;
            margin: 30px 0;
            border-left: 5px solid #2563eb;
        }
        .indian-note p {
            margin-bottom: 0;
            font-weight: 600;
            color: #1e40af;
        }
        ul, ol {
            margin: 30px 0 35px 45px;
            font-size: 1.05rem;
            line-height: 2.1;
        }
        ul {
            list-style-type: disc;
        }
        ol {
            list-style-type: decimal;
        }
        li {
            margin-bottom: 18px;
            padding-left: 10px;
        }
        li::marker {
            color: #f97316;
            font-weight: 700;
        }
        @media (max-width: 768px) {
            p {
                font-size: 1rem;
                line-height: 1.8;
                margin-bottom: 22px;
            }
            ul, ol {
                margin: 25px 0 30px 35px;
                font-size: 1rem;
                line-height: 2;
            }
            li {
                margin-bottom: 15px;
            }
        }
        .stats-table {
            width: 100%;
            border-collapse: collapse;
            margin: 35px 0;
            background-color: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 6px 18px rgba(0,0,0,0.1);
        }
        .stats-table th, .stats-table td {
            padding: 18px;
            text-align: left;
            border-bottom: 1px solid #e2e8f0;
        }
        .stats-table th {
            background-color: #1e40af;
            color: white;
            font-weight: 700;
            font-size: 1.05rem;
        }
        .stats-table tr:hover {
            background-color: #f8fafc;
        }
        .stats-table tr:last-child td {
            border-bottom: none;
        }
        @media (max-width: 768px) {
            .stats-table {
                font-size: 0.9rem;
            }
            .stats-table th, .stats-table td {
                padding: 12px 10px;
            }
            .stats-table th {
                font-size: 0.95rem;
            }
        }
        .review-card {
            background-color: white;
            padding: 30px;
            border-radius: 12px;
            margin: 35px 0;
            box-shadow: 0 6px 18px rgba(0,0,0,0.1);
            border-top: 5px solid #f97316;
            position: relative;
        }
        .reviewer {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 20px;
        }
        .reviewer-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background-color: #2563eb;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.4rem;
            box-shadow: 0 3px 8px rgba(0,0,0,0.15);
        }
        .reviewer-info {
            display: flex;
            flex-direction: column;
        }
        .reviewer-name {
            font-weight: 700;
            color: #1e40af;
            font-size: 1.1rem;
        }
        .reviewer-location {
            color: #64748b;
            font-size: 0.95rem;
        }
        .review-rating {
            color: #f59e0b;
            margin-bottom: 15px;
            font-size: 1.2rem;
        }
        .review-text {
            line-height: 1.9;
            font-size: 1.05rem;
        }
        @media (max-width: 768px) {
            .review-card {
                padding: 25px;
            }
            .reviewer {
                gap: 15px;
            }
            .reviewer-avatar {
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
            }
            .review-text {
                font-size: 1rem;
                line-height: 1.8;
            }
        }
        .tabs {
            display: flex;
            gap: 12px;
            margin: 35px 0;
            flex-wrap: wrap;
            overflow-x: auto;
            padding-bottom: 10px;
        }
        .tab-btn {
            padding: 12px 22px;
            background-color: #e2e8f0;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 600;
            color: #1e40af;
            transition: all 0.3s ease;
            white-space: nowrap;
        }
        .tab-btn.active {
            background-color: #2563eb;
            color: white;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        .tab-btn:hover:not(.active) {
            background-color: #cbd5e1;
        }
        .tab-content {
            background-color: white;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 6px 18px rgba(0,0,0,0.1);
            margin-bottom: 35px;
        }
        @media (max-width: 768px) {
            .tabs {
                gap: 8px;
            }
            .tab-btn {
                padding: 10px 18px;
                font-size: 0.95rem;
            }
            .tab-content {
                padding: 25px;
            }
        }
        footer {
            background-color: #1e40af;
            color: white;
            padding: 60px 0 30px;
            margin-top: 100px;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 50px;
            margin-bottom: 50px;
        }
        .footer-section h4 {
            font-size: 1.4rem;
            margin-bottom: 25px;
            color: #f97316;
            border-bottom: 2px solid #f97316;
            padding-bottom: 12px;
            margin-top: 0;
        }
        .footer-section a {
            color: #e0e7ff;
            text-decoration: none;
            display: block;
            margin-bottom: 15px;
            transition: all 0.3s ease;
            font-size: 1.05rem;
        }
        .footer-section a:hover {
            color: #f97316;
            padding-left: 8px;
        }
        .tag-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 20px;
        }
        .tag {
            background-color: #3b82f6;
            padding: 10px 20px;
            border-radius: 25px;
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }
        .tag:hover {
            background-color: #f97316;
            color: white !important;
            padding-left: 20px !important;
        }
        .recommendation {
            background-color: #fef3c7;
            padding: 30px;
            border-radius: 12px;
            margin: 40px 0;
            text-align: center;
            font-size: 1.2rem;
            font-weight: 700;
            color: #1e40af;
            box-shadow: 0 6px 18px rgba(0,0,0,0.1);
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.95rem;
            color: #bfdbfe;
        }
        .game-type-nav {
            margin: 20px 0 30px;
        }
        .game-type-nav h4 {
            margin-bottom: 15px;
        }
        .type-links {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        @media (max-width: 768px) {
            .footer-container {
                gap: 30px;
                margin-bottom: 40px;
            }
            .footer-section h4 {
                font-size: 1.2rem;
                margin-bottom: 20px;
                padding-bottom: 10px;
            }
            .footer-section a {
                font-size: 1rem;
                margin-bottom: 12px;
            }
            .recommendation {
                padding: 25px;
                font-size: 1.1rem;
            }
            .copyright {
                font-size: 0.9rem;
                padding-top: 25px;
            }
        }
        ::-webkit-scrollbar {
            width: 10px;
        }
        ::-webkit-scrollbar-track {
            background: #f1f5f9;
        }
        ::-webkit-scrollbar-thumb {
            background: #2563eb;
            border-radius: 5px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #1e40af;
        }
