* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', 'Tahoma', sans-serif;
        }
        body {
            background-color: #1a1a2e;
            color: #f0f0f5;
            line-height: 1.8;
            padding-bottom: 60px;
        }
        header {
            background-color: #16213e;
            color: #fff;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0,0,0,0.3);
        }
        .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: #e94560;
            text-decoration: none;
            letter-spacing: 0.5px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }
        .nav-links {
            display: flex;
            gap: 25px;
        }
        .nav-links a {
            color: #f0f0f5;
            text-decoration: none;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            padding: 5px 0;
            border-bottom: 2px solid transparent;
        }
        .nav-links a:hover {
            color: #e94560;
            border-bottom: 2px solid #e94560;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 5px 10px;
        }
        main {
            max-width: 1200px;
            margin: 40px auto;
            padding: 0 20px;
        }
        h1 {
            color: #e94560;
            font-size: 2.8rem;
            margin-bottom: 30px;
            text-align: center;
            padding-bottom: 15px;
            border-bottom: 4px solid #4cc9f0;
        }
        h2 {
            color: #4cc9f0;
            font-size: 2.2rem;
            margin: 50px 0 25px;
            padding-left: 15px;
            border-left: 5px solid #e94560;
        }
        h3 {
            color: #4cc9f0;
            font-size: 1.6rem;
            margin: 35px 0 18px;
            padding-bottom: 8px;
            border-bottom: 2px solid #16213e;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.15rem;
            text-align: justify;
            line-height: 1.8;
            color: #f0f0f5;
        }
        .highlight {
            font-weight: bold;
            color: #e94560;
        }
        .btn {
            display: inline-block;
            padding: 14px 28px;
            background-color: #e94560;
            color: white;
            text-decoration: none;
            border-radius: 6px;
            font-weight: bold;
            margin: 12px 12px 25px 0;
            transition: all 0.3s ease;
            font-size: 1.1rem;
            box-shadow: 0 4px 6px rgba(0,0,0,0.2);
        }
        .btn:hover {
            background-color: #d32f2f;
            transform: translateY(-2px);
            box-shadow: 0 6px 8px rgba(0,0,0,0.3);
        }
        .btn-download {
            background-color: #4cc9f0;
        }
        .btn-download:hover {
            background-color: #3aaddb;
        }
        .image-container {
            margin: 40px 0;
            text-align: center;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 6px 15px rgba(0,0,0,0.3);
            transition: transform 0.3s ease;
        }
        img:hover {
            transform: scale(1.02);
        }
        .stats-box {
            background-color: #16213e;
            border-radius: 10px;
            padding: 25px;
            margin: 25px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            border-left: 5px solid #4cc9f0;
        }
        .stats-box ul {
            list-style-type: none;
        }
        .stats-box li {
            margin: 12px 0;
            font-size: 1.1rem;
            padding-left: 25px;
            position: relative;
        }
        .stats-box li:before {
            content: "•";
            color: #4cc9f0;
            font-size: 1.5rem;
            position: absolute;
            left: 0;
            top: -5px;
        }
        .review {
            background-color: #16213e;
            border-left: 5px solid #4cc9f0;
            padding: 20px;
            margin: 20px 0;
            border-radius: 0 8px 8px 0;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
        }
        .review-negative {
            border-left-color: #e94560;
        }
        .tag {
            display: inline-block;
            background-color: #16213e;
            padding: 8px 16px;
            border-radius: 25px;
            margin: 8px;
            text-decoration: none;
            color: #4cc9f0;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        .tag:hover {
            background-color: #0f3460;
            transform: translateY(-2px);
        }
        footer {
            background-color: #16213e;
            color: #f0f0f5;
            padding: 50px 20px;
            margin-top: 80px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .game-types {
            margin: 25px 0 40px;
        }
        .game-types a {
            color: #e94560;
            text-decoration: none;
            margin-right: 20px;
            font-size: 1.1rem;
            transition: color 0.3s ease;
        }
        .game-types a:hover {
            color: #4cc9f0;
            text-decoration: underline;
        }
        .tags-section {
            margin: 40px 0;
        }
        .tags-section h3 {
            color: #e94560;
            border-bottom-color: #e94560;
        }
        footer p {
            color: #d1d9e6;
            font-size: 1.1rem;
            margin: 30px 0;
        }
        .copyright {
            margin-top: 60px;
            text-align: center;
            font-size: 1rem;
            color: #8b939e;
            padding-top: 20px;
            border-top: 1px solid #0f3460;
        }
        @media screen and (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 75px;
                left: 0;
                right: 0;
                background-color: #16213e;
                padding: 25px;
                gap: 20px;
                box-shadow: 0 10px 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;
                margin: 40px 0 20px;
            }
            h3 {
                font-size: 1.4rem;
            }
            p {
                font-size: 1.05rem;
                text-align: left;
            }
            .btn {
                display: block;
                width: 100%;
                text-align: center;
                margin: 10px 0;
            }
            .image-container {
                margin: 30px -20px;
            }
            img {
                border-radius: 0;
            }
        }
