* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', 'Tahoma', sans-serif;
        }
        body {
            background-color: #f0f4f8;
            color: #2d3436;
            line-height: 1.8;
            padding-bottom: 50px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: #0984e3;
            color: white;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: white;
            text-decoration: none;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .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: 0.3s;
            padding: 5px 0;
            position: relative;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: #fdcb6e;
            transition: 0.3s;
        }
        .nav-links a:hover::after {
            width: 100%;
        }
        .mobile-menu-btn {
            display: none;
            cursor: pointer;
            font-size: 1.5rem;
            z-index: 101;
        }
        .hero {
            background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('nagpur-metro-hero.jpg');
            background-size: cover;
            background-position: center;
            height: 550px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            margin-bottom: 50px;
            border-radius: 0 0 15px 15px;
        }
        .hero-content h1 {
            font-size: 3.2rem;
            margin-bottom: 20px;
            color: #fdcb6e;
            text-shadow: 3px 3px 6px rgba(0,0,0,0.5);
        }
        .hero-content p {
            font-size: 1.4rem;
            max-width: 750px;
            margin-bottom: 30px;
            line-height: 1.9;
        }
        .btn {
            display: inline-block;
            padding: 14px 32px;
            background-color: #0984e3;
            color: white;
            text-decoration: none;
            border-radius: 6px;
            font-weight: bold;
            transition: 0.3s;
            margin: 0 10px;
            font-size: 1.05rem;
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }
        .btn:hover {
            background-color: #74b9ff;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.3);
        }
        .btn-login {
            background-color: #2d3436;
        }
        .btn-login:hover {
            background-color: #636e72;
        }
        h1, h2, h3 {
            color: #0984e3;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #dfe6e9;
        }
        h1 {
            font-size: 2.4rem;
            color: #0984e3;
        }
        h2 {
            font-size: 1.9rem;
            margin-top: 40px;
            color: #2d3436;
        }
        h3 {
            font-size: 1.5rem;
            margin-top: 30px;
            border-bottom: none;
            color: #0984e3;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.08rem;
            color: #2d3436;
        }
        .section {
            background-color: white;
            padding: 35px;
            border-radius: 12px;
            box-shadow: 0 3px 15px rgba(0,0,0,0.08);
            margin-bottom: 35px;
            transition: 0.3s;
        }
        .section:hover {
            box-shadow: 0 5px 20px rgba(0,0,0,0.12);
        }
        .game-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin-top: 30px;
        }
        .feature-box {
            background-color: #f8f9fa;
            padding: 25px;
            border-radius: 10px;
            border-top: 4px solid #0984e3;
            transition: 0.3s;
        }
        .feature-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .feature-box h3 {
            color: #0984e3;
            margin-top: 0;
            display: flex;
            align-items: center;
        }
        .feature-box h3 span {
            margin-right: 10px;
            font-size: 1.7rem;
        }
        .screenshot-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin-top: 30px;
        }
        .screenshot-item {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
            transition: 0.3s;
        }
        .screenshot-item:hover {
            transform: scale(1.03);
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        }
        .screenshot-item img {
            width: 100%;
            height: 220px;
            object-fit: cover;
            display: block;
        }
        .screenshot-item p {
            text-align: center;
            margin-top: 15px;
            font-weight: bold;
            padding: 0 10px 15px;
            color: #2d3436;
        }
        .table-container {
            overflow-x: auto;
            margin: 30px 0;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        }
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 0;
        }
        th, td {
            padding: 15px 20px;
            text-align: left;
            border-bottom: 1px solid #dfe6e9;
        }
        th {
            background-color: #0984e3;
            color: white;
            font-weight: bold;
        }
        tr:hover {
            background-color: #f8f9fa;
        }
        .quote {
            font-style: italic;
            border-left: 4px solid #0984e3;
            padding: 20px 25px;
            margin: 30px 0;
            color: #2d3436;
            background-color: #f8f9fa;
            border-radius: 0 8px 8px 0;
        }
        .tips-list {
            margin-left: 30px;
            margin-bottom: 30px;
        }
        .tips-list li {
            margin-bottom: 15px;
            padding-left: 10px;
            position: relative;
        }
        .tips-list li::before {
            content: '•';
            color: #0984e3;
            font-weight: bold;
            position: absolute;
            left: -15px;
        }
        .external-link {
            color: #0984e3;
            text-decoration: none;
            font-weight: bold;
            position: relative;
            padding-bottom: 2px;
        }
        .external-link::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 1px;
            bottom: 0;
            left: 0;
            background-color: #0984e3;
            transform: scaleX(0);
            transform-origin: bottom right;
            transition: transform 0.3s ease-out;
        }
        .external-link:hover::after {
            transform: scaleX(1);
            transform-origin: bottom left;
        }
        footer {
            background-color: #2d3436;
            color: white;
            padding: 60px 0 30px;
            margin-top: 60px;
            border-radius: 15px 15px 0 0;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-section h3 {
            color: #fdcb6e;
            border-bottom: 2px solid #fdcb6e;
            padding-bottom: 10px;
            margin-bottom: 20px;
            font-size: 1.4rem;
        }
        .game-categories a, .tags a {
            display: inline-block;
            color: #dfe6e9;
            text-decoration: none;
            margin-right: 10px;
            margin-bottom: 10px;
            padding: 6px 12px;
            background-color: #636e72;
            border-radius: 4px;
            transition: 0.3s;
        }
        .game-categories a:hover, .tags a:hover {
            background-color: #0984e3;
            color: white;
            transform: translateY(-2px);
        }
        .recommendation {
            background-color: #f8f9fa;
            border-left: 4px solid #27ae60;
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 8px 8px 0;
        }
        .recommendation h3 {
            color: #27ae60;
            margin-top: 0;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #636e72;
            font-size: 0.95rem;
            color: #b2bec3;
            line-height: 1.6;
        }
        .fact-box {
            background-color: #e8f4fd;
            border-radius: 8px;
            padding: 20px;
            margin: 25px 0;
            border-left: 4px solid #0984e3;
        }
        .fact-box h4 {
            color: #0984e3;
            margin-top: 0;
            margin-bottom: 10px;
            font-size: 1.2rem;
        }
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 0;
                right: 0;
                height: 100vh;
                width: 70%;
                background-color: #0984e3;
                padding: 80px 30px 30px;
                box-shadow: -2px 0 10px rgba(0,0,0,0.3);
            }
            .nav-links li {
                margin: 15px 0;
            }
            .nav-links a {
                font-size: 1.2rem;
                display: block;
            }
            .nav-links.active {
                display: flex;
            }
            .hero {
                height: 450px;
            }
            .hero-content h1 {
                font-size: 2.4rem;
            }
            .hero-content p {
                font-size: 1.2rem;
                padding: 0 15px;
            }
            .btn {
                display: block;
                margin: 15px auto;
                width: 85%;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            .section {
                padding: 25px 20px;
            }
            .screenshot-item img {
                height: 180px;
            }
        }
