* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            line-height: 1.9;
            color: #2d2d2d;
            background-color: #f5f2eb;
            padding-bottom: 60px;
            font-size: 16px;
        }
        .container {
            max-width: 1250px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .header-nav {
            background: linear-gradient(135deg, #e63946, #ff9f1c);
            padding: 18px 0;
            position: sticky;
            top: 0;
            z-index: 9999;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        }
        .nav-wrapper {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2rem;
            font-weight: 900;
            color: white;
            text-decoration: none;
            text-shadow: 3px 3px 6px rgba(0,0,0,0.25);
            letter-spacing: 0.5px;
        }
        .logo span {
            color: #ffd166;
            text-transform: uppercase;
        }
        .nav-links {
            display: flex;
            gap: 30px;
            align-items: center;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.05rem;
            transition: all 0.3s ease;
            padding: 8px 12px;
            border-radius: 8px;
        }
        .nav-links a:hover {
            background-color: rgba(255,255,255,0.2);
            color: #ffd166;
        }
        .daman-link {
            background-color: #ffd166;
            color: #e63946 !important;
            font-weight: 700;
            padding: 10px 20px;
            border-radius: 30px;
            box-shadow: 0 3px 8px rgba(0,0,0,0.1);
        }
        .daman-link:hover {
            background-color: white;
            transform: translateY(-2px);
            box-shadow: 0 5px 12px rgba(0,0,0,0.15);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            color: white;
            cursor: pointer;
            background: none;
            border: none;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 80px;
                left: 0;
                right: 0;
                background: linear-gradient(135deg, #e63946, #ff9f1c);
                padding: 30px 20px;
                gap: 20px;
                border-top: 1px solid rgba(255,255,255,0.2);
            }
            .nav-links.active {
                display: flex;
                animation: fadeIn 0.3s ease;
            }
            .hamburger {
                display: block;
            }
            .logo {
                font-size: 1.7rem;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(-10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        h1 {
            font-size: 2.8rem;
            color: #e63946;
            text-align: center;
            margin: 50px 0 40px;
            text-shadow: 1px 1px 4px rgba(0,0,0,0.1);
            line-height: 1.3;
            padding: 0 10px;
        }
        h2 {
            font-size: 2.2rem;
            color: #1d3557;
            margin: 60px 0 30px;
            padding-bottom: 12px;
            border-bottom: 4px solid #ff9f1c;
            position: relative;
        }
        h2::after {
            content: "";
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 80px;
            height: 4px;
            background-color: #e63946;
        }
        h3 {
            font-size: 1.6rem;
            color: #e63946;
            margin: 40px 0 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        h3::before {
            content: "🎮";
            font-size: 1.8rem;
        }
        p {
            margin-bottom: 25px;
            font-size: 1.05rem;
            text-align: justify;
            line-height: 1.9;
            padding: 0 5px;
        }
        .highlight {
            font-weight: 700;
            color: #e63946;
            text-decoration: underline;
            text-underline-offset: 3px;
        }
        .key-term {
            font-weight: 800;
            color: #1d3557;
            background-color: #fff3cd;
            padding: 2px 6px;
            border-radius: 4px;
        }
        .india-note {
            background-color: #f8f9fa;
            border-left: 5px solid #ff9f1c;
            padding: 15px 20px;
            margin: 30px 0;
            border-radius: 0 8px 8px 0;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        }
        .game-img {
            width: 100%;
            max-width: 900px;
            height: auto;
            border-radius: 12px;
            margin: 40px auto;
            display: block;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
            transition: transform 0.3s ease;
        }
        .game-img:hover {
            transform: translateY(-5px);
        }
        .btn-container {
            display: flex;
            gap: 25px;
            justify-content: center;
            margin: 50px 0;
            flex-wrap: wrap;
        }
        .btn {
            padding: 18px 35px;
            font-size: 1.2rem;
            font-weight: 700;
            border: none;
            border-radius: 35px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            text-align: center;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .download-btn {
            background: linear-gradient(135deg, #28a745, #20c997);
            color: white;
        }
        .download-btn:hover {
            background: linear-gradient(135deg, #218838, #17a2b8);
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(40, 167, 69, 0.3);
        }
        .login-btn {
            background: linear-gradient(135deg, #007bff, #6610f2);
            color: white;
        }
        .login-btn:hover {
            background: linear-gradient(135deg, #0069d9, #5a0bd8);
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(0, 123, 255, 0.3);
        }
        ul, ol {
            margin: 25px 0 35px 45px;
            font-size: 1.05rem;
            line-height: 2;
        }
        li {
            margin-bottom: 18px;
            position: relative;
            padding-left: 15px;
        }
        ul li::before {
            content: "✅";
            position: absolute;
            left: -25px;
            top: 2px;
            font-size: 0.9rem;
        }
        ol li::before {
            content: counter(li);
            counter-increment: li;
            position: absolute;
            left: -30px;
            top: 2px;
            background-color: #e63946;
            color: white;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            font-weight: bold;
        }
        .stats-table {
            width: 100%;
            border-collapse: collapse;
            margin: 40px 0;
            background-color: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }
        .stats-table th, .stats-table td {
            padding: 18px;
            text-align: left;
            border-bottom: 2px solid #f1f1f1;
        }
        .stats-table th {
            background: linear-gradient(135deg, #1d3557, #2b4a78);
            color: white;
            font-weight: 700;
            font-size: 1.05rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .stats-table tr:hover {
            background-color: #f8f9fa;
            transform: scale(1.005);
            transition: transform 0.2s ease;
        }
        .stats-table tr:last-child td {
            border-bottom: none;
        }
        .section {
            background-color: white;
            border-radius: 18px;
            padding: 40px;
            margin-bottom: 40px;
            box-shadow: 0 6px 18px rgba(0,0,0,0.07);
            transition: transform 0.3s ease;
        }
        .section:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 22px rgba(0,0,0,0.1);
        }
        .tab-container {
            margin: 50px 0;
        }
        .tab-buttons {
            display: flex;
            gap: 15px;
            margin-bottom: 25px;
            flex-wrap: wrap;
        }
        .tab-btn {
            padding: 12px 25px;
            background-color: #f1f1f1;
            border: none;
            border-radius: 30px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
            font-size: 1rem;
        }
        .tab-btn.active {
            background: linear-gradient(135deg, #e63946, #ff9f1c);
            color: white;
            box-shadow: 0 4px 10px rgba(230, 57, 70, 0.2);
        }
        .tab-content {
            display: none;
            background-color: white;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
        }
        .tab-content.active {
            display: block;
            animation: fadeIn 0.5s ease;
        }
        .footer {
            background: linear-gradient(135deg, #1d3557, #2b4a78);
            color: white;
            padding: 60px 0 30px;
            margin-top: 80px;
            border-top-left-radius: 30px;
            border-top-right-radius: 30px;
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 50px;
            margin-bottom: 50px;
        }
        .footer-section {
            flex: 1;
            min-width: 280px;
        }
        .footer-section h3 {
            color: #ffd166;
            margin-bottom: 25px;
            font-size: 1.4rem;
            border-bottom: 2px solid #ffd166;
            padding-bottom: 10px;
        }
        .footer-links {
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .footer-links li {
            margin-bottom: 15px;
        }
        .footer-links a {
            color: #e0e0e0;
            text-decoration: none;
            transition: color 0.3s ease;
            font-size: 1rem;
        }
        .footer-links a:hover {
            color: #ffd166;
            padding-left: 8px;
        }
        .tags {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 25px;
        }
        .tag {
            padding: 10px 18px;
            background-color: rgba(255,255,255,0.1);
            border-radius: 30px;
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }
        .tag a {
            color: white;
            text-decoration: none;
        }
        .tag:hover {
            background-color: #ffd166;
            transform: translateY(-2px);
        }
        .tag:hover a {
            color: #1d3557;
        }
        .recommendation {
            background-color: rgba(255,255,255,0.08);
            padding: 25px;
            border-radius: 12px;
            margin: 30px 0;
            text-align: center;
            font-size: 1.1rem;
            line-height: 1.8;
        }
        .recommendation strong {
            color: #ffd166;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.95rem;
            color: #b0b0b0;
        }
        @media (max-width: 992px) {
            h1 {
                font-size: 2.4rem;
                margin: 40px 0 30px;
            }
            h2 {
                font-size: 2rem;
                margin: 50px 0 25px;
            }
            h3 {
                font-size: 1.5rem;
                margin: 35px 0 18px;
            }
            p, ul, ol {
                font-size: 1rem;
            }
            .section {
                padding: 30px;
            }
            .stats-table th, .stats-table td {
                padding: 15px;
                font-size: 0.95rem;
            }
            .btn {
                padding: 15px 30px;
                font-size: 1.1rem;
            }
        }
        @media (max-width: 576px) {
            h1 {
                font-size: 2rem;
                margin: 30px 0 25px;
            }
            h2 {
                font-size: 1.7rem;
                margin: 40px 0 20px;
            }
            h3 {
                font-size: 1.3rem;
                margin: 30px 0 15px;
            }
            .btn {
                padding: 14px 25px;
                font-size: 1rem;
                width: 100%;
            }
            .btn-container {
                gap: 15px;
            }
            .stats-table th, .stats-table td {
                padding: 12px;
                font-size: 0.9rem;
            }
            .footer-content {
                gap: 30px;
            }
            .section {
                padding: 25px;
            }
            ul, ol {
                margin-left: 30px;
            }
            .game-img {
                border-radius: 8px;
                margin: 30px auto;
            }
        }
        ::-webkit-scrollbar {
            width: 10px;
        }
        ::-webkit-scrollbar-track {
            background: #f1f1f1;
        }
        ::-webkit-scrollbar-thumb {
            background: #ff9f1c;
            border-radius: 5px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #e63946;
        }
