* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', 'Nirmala UI', sans-serif;
        }
        body {
            background-color: #1a1a2e;
            color: #f0f0f5;
            line-height: 1.8;
            padding-bottom: 50px;
        }
        .header {
            background-color: #e94560;
            padding: 15px 20px;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0,0,0,0.3);
        }
        .logo {
            color: #ffffff;
            font-size: 1.9rem;
            font-weight: bold;
            text-decoration: none;
            display: inline-block;
            text-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }
        .nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .nav-links {
            display: flex;
            gap: 25px;
        }
        .nav-links a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 500;
            transition: 0.3s;
            padding: 5px 0;
            border-bottom: 2px solid transparent;
        }
        .nav-links a:hover {
            color: #ffdd57;
            border-bottom: 2px solid #ffdd57;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        h1 {
            color: #ffdd57;
            font-size: 2.6rem;
            margin: 30px 0;
            text-align: center;
            border-bottom: 3px solid #e94560;
            padding-bottom: 10px;
            text-shadow: 0 2px 8px rgba(0,0,0,0.4);
        }
        h2 {
            color: #ffffff;
            font-size: 2.1rem;
            margin: 40px 0 20px;
            border-left: 4px solid #e94560;
            padding-left: 15px;
        }
        h3 {
            color: #4cc9f0;
            font-size: 1.6rem;
            margin: 30px 0 15px;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            color: #e6e6e6;
        }
        .highlight {
            font-weight: bold;
            color: #e94560;
            text-shadow: 0 1px 2px rgba(0,0,0,0.3);
        }
        .btn {
            display: inline-block;
            padding: 12px 25px;
            background-color: #4361ee;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            margin: 10px 10px 20px 0;
            transition: 0.3s;
            box-shadow: 0 4px 6px rgba(0,0,0,0.2);
        }
        .btn:hover {
            background-color: #3a0ca3;
            transform: translateY(-2px);
            box-shadow: 0 6px 8px rgba(0,0,0,0.3);
        }
        .btn-download {
            background-color: #4cc9f0;
            color: #1a1a2e;
        }
        .btn-login {
            background-color: #ffdd57;
            color: #1a1a2e;
        }
        .image-container {
            margin: 30px 0;
            text-align: center;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 8px 16px rgba(0,0,0,0.3);
        }
        .game-image {
            max-width: 100%;
            transition: 0.5s;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .stats-box {
            background-color: #16213e;
            border-radius: 10px;
            padding: 20px;
            margin: 20px 0;
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
            border-left: 5px solid #e94560;
        }
        .stats-box p {
            display: flex;
            justify-content: space-between;
            padding: 8px 0;
            border-bottom: 1px solid #2a2a42;
        }
        .stats-box p:last-child {
            border-bottom: none;
        }
        .review {
            background-color: #16213e;
            border-radius: 10px;
            padding: 20px;
            margin: 20px 0;
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
            border-top: 5px solid #4cc9f0;
        }
        .reviewer {
            font-weight: bold;
            color: #ffdd57;
            font-size: 1.2rem;
        }
        .tag {
            display: inline-block;
            background-color: #2a2a42;
            padding: 5px 12px;
            border-radius: 20px;
            margin: 5px;
            text-decoration: none;
            color: #4cc9f0;
            font-size: 0.9rem;
            transition: 0.3s;
        }
        .tag:hover {
            background-color: #4361ee;
            color: white;
        }
        .game-type {
            display: inline-block;
            margin: 10px 10px 10px 0;
            text-decoration: none;
            color: #4cc9f0;
            font-weight: 500;
            transition: 0.3s;
        }
        .game-type:hover {
            color: #ffdd57;
        }
        .footer {
            background-color: #0f3460;
            color: #e6e6e6;
            padding: 40px 20px;
            margin-top: 50px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .footer-section {
            margin-bottom: 30px;
        }
        .footer-section h3 {
            color: #ffdd57;
            margin-bottom: 20px;
            border-bottom: 2px solid #e94560;
            padding-bottom: 8px;
            display: inline-block;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #2a2a42;
            margin-top: 20px;
            font-size: 0.9rem;
            color: #b0b0b0;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background-color: #e94560;
                padding: 20px;
                gap: 15px;
                box-shadow: 0 5px 10px rgba(0,0,0,0.3);
            }
            .nav-links.active {
                display: flex;
            }
            .mobile-menu-btn {
                display: block;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.4rem;
            }
            p {
                font-size: 1rem;
            }
            .btn {
                display: block;
                width: 100%;
                text-align: center;
                margin: 10px 0;
            }
        }
