* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
        }
        body {
            background-color: #f8f9fa;
            color: #333;
            padding-bottom: 50px;
        }
        header {
            background-color: #1a237e;
            color: white;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .nav-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: #ffeb3b;
            text-decoration: none;
        }
        .nav-links {
            display: flex;
            gap: 25px;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: 0.3s;
        }
        .nav-links a:hover {
            color: #ffeb3b;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }
        main {
            max-width: 1200px;
            margin: 30px auto;
            padding: 0 20px;
        }
        h1 {
            color: #1a237e;
            margin-bottom: 20px;
            font-size: 2.2rem;
            text-align: center;
        }
        h2 {
            color: #1a237e;
            margin: 30px 0 15px;
            font-size: 1.8rem;
            border-left: 4px solid #ffc107;
            padding-left: 10px;
        }
        h3 {
            color: #3949ab;
            margin: 25px 0 10px;
            font-size: 1.4rem;
        }
        p {
            margin-bottom: 15px;
            font-size: 1.05rem;
        }
        .highlight {
            font-weight: bold;
            color: #d32f2f;
        }
        .btn-container {
            margin: 30px 0;
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }
        .btn {
            padding: 12px 25px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
            transition: 0.3s;
            text-align: center;
            min-width: 150px;
        }
        .download-btn {
            background-color: #4caf50;
            color: white;
        }
        .login-btn {
            background-color: #2196f3;
            color: white;
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }
        .image-container {
            margin: 25px 0;
            text-align: center;
        }
        .game-img {
            max-width: 100%;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        }
        .stats-box {
            background-color: white;
            border-radius: 8px;
            padding: 20px;
            margin: 20px 0;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }
        .stats-box p {
            margin: 10px 0;
        }
        .review {
            background-color: white;
            border-left: 3px solid #ff9800;
            padding: 15px;
            margin: 15px 0;
            border-radius: 0 5px 5px 0;
        }
        .reviewer {
            font-style: italic;
            color: #666;
            margin-top: 5px;
        }
        .tip-box {
            background-color: #e8f5e9;
            border-radius: 8px;
            padding: 15px;
            margin: 20px 0;
            border: 1px solid #c8e6c9;
        }
        .tag-container {
            margin: 30px 0;
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        .tag {
            background-color: #e0e0e0;
            padding: 8px 15px;
            border-radius: 20px;
            text-decoration: none;
            color: #333;
            font-size: 0.9rem;
        }
        .tag:hover {
            background-color: #bdbdbd;
        }
        .game-type {
            margin: 20px 0;
        }
        .game-type a {
            color: #1a237e;
            text-decoration: none;
            font-weight: 500;
        }
        .game-type a:hover {
            text-decoration: underline;
        }
        footer {
            background-color: #263238;
            color: white;
            padding: 40px 20px;
            margin-top: 50px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .footer-section {
            margin-bottom: 30px;
        }
        .footer-section h4 {
            font-size: 1.2rem;
            margin-bottom: 15px;
            color: #ffeb3b;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #455a64;
            margin-top: 20px;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background-color: #1a237e;
                padding: 20px;
                gap: 15px;
            }
            .nav-links.active {
                display: flex;
            }
            .mobile-menu-btn {
                display: block;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            .btn-container {
                flex-direction: column;
            }
        }
