* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        body {
            background-color: #f5f5f5;
            color: #333;
            line-height: 1.8;
            padding-bottom: 50px;
        }
        header {
            background: linear-gradient(135deg, #ff6b00, #ff3d00);
            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;
            text-align: center;
            margin-bottom: 10px;
            color: #ffea00;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            letter-spacing: 1px;
        }
        nav {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .nav-links {
            display: flex;
            justify-content: center;
            gap: 25px;
            list-style: none;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 5px 10px;
            border-radius: 5px;
        }
        .nav-links a:hover {
            background-color: rgba(255,255,255,0.2);
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            position: absolute;
            top: 20px;
            right: 20px;
        }
        main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 30px 20px;
        }
        h1 {
            color: #d32f2f;
            text-align: center;
            margin-bottom: 40px;
            font-size: 2.5rem;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
        }
        h2 {
            color: #d32f2f;
            margin: 35px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #ff9800;
            font-size: 1.8rem;
        }
        h3 {
            color: #d32f2f;
            margin: 25px 0 15px;
            font-size: 1.4rem;
        }
        p {
            margin-bottom: 18px;
            font-size: 1.05rem;
            text-align: justify;
        }
        .highlight {
            font-weight: bold;
            color: #d32f2f;
        }
        .btn-container {
            text-align: center;
            margin: 40px 0;
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        .btn {
            display: inline-block;
            padding: 12px 25px;
            background-color: #2196f3;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            transition: all 0.3s ease;
            font-size: 1.1rem;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.15);
        }
        .download-btn {
            background-color: #4caf50;
        }
        .login-btn {
            background-color: #ff9800;
            color: #333;
        }
        .image-container {
            text-align: center;
            margin: 30px 0;
        }
        .game-image {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            border: 3px solid #fff;
        }
        .stats-container {
            background-color: white;
            border-radius: 10px;
            padding: 25px;
            margin: 30px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .stat-item {
            display: flex;
            justify-content: space-between;
            padding: 12px 0;
            border-bottom: 1px solid #eee;
        }
        .stat-item:last-child {
            border-bottom: none;
        }
        .review-container {
            background-color: white;
            border-radius: 10px;
            padding: 25px;
            margin: 20px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            border-left: 5px solid #ff9800;
        }
        .reviewer {
            font-weight: bold;
            color: #d32f2f;
            margin-bottom: 5px;
        }
        .rating {
            color: #ffc107;
            margin-bottom: 10px;
        }
        .tag-container {
            margin: 30px 0;
        }
        .tag {
            display: inline-block;
            background-color: #e9ecef;
            padding: 8px 15px;
            border-radius: 20px;
            margin: 0 8px 10px 0;
            text-decoration: none;
            color: #495057;
            transition: all 0.3s ease;
        }
        .tag:hover {
            background-color: #ff9800;
            color: white;
        }
        .game-types {
            margin: 30px 0;
        }
        .game-type {
            display: inline-block;
            margin-right: 15px;
            text-decoration: none;
            color: #2196f3;
            font-weight: 500;
        }
        .game-type:hover {
            text-decoration: underline;
        }
        footer {
            background-color: #212121;
            color: white;
            padding: 40px 20px;
            margin-top: 50px;
        }
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }
        .footer-section {
            margin-bottom: 30px;
        }
        .footer-section h4 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: #ffea00;
        }
        .recommendation {
            margin: 20px 0;
            padding: 20px;
            background-color: rgba(255,255,255,0.1);
            border-radius: 5px;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            margin-top: 20px;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                align-items: center;
                gap: 15px;
                margin-top: 20px;
            }
            .nav-links.active {
                display: flex;
            }
            .mobile-menu-btn {
                display: block;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            .btn {
                width: 100%;
                text-align: center;
            }
            p {
                text-align: left;
            }
        }
