* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
            line-height: 1.8;
        }
        body {
            background-color: #1a1a2e;
            color: #e2e8f0;
            padding-bottom: 50px;
        }
        header {
            background-color: #e94560;
            color: white;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0,0,0,0.4);
        }
        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2rem;
            font-weight: bold;
            color: #ffffff;
            text-decoration: none;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            letter-spacing: 1px;
            font-family: 'Courier New', monospace;
        }
        nav ul {
            display: flex;
            list-style: none;
        }
        nav ul li {
            margin-left: 30px;
        }
        nav ul li a {
            color: white;
            text-decoration: none;
            font-size: 1.1rem;
            transition: all 0.3s;
            padding: 5px 0;
            position: relative;
        }
        nav ul li a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: #ffd166;
            transition: width 0.3s;
        }
        nav ul li a:hover {
            color: #ffd166;
        }
        nav ul li a:hover:after {
            width: 100%;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }
        main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 30px 20px;
        }
        h1 {
            color: #ffd166;
            font-size: 2.5rem;
            margin-bottom: 30px;
            text-align: center;
            padding-bottom: 15px;
            border-bottom: 3px solid #e94560;
        }
        h2 {
            color: #ffd166;
            font-size: 2rem;
            margin: 40px 0 20px;
            border-bottom: 2px solid #e94560;
            padding-bottom: 10px;
            position: relative;
            padding-left: 10px;
        }
        h2:before {
            content: '🥊';
            margin-right: 10px;
        }
        h3 {
            color: #ffd166;
            font-size: 1.5rem;
            margin: 30px 0 15px;
            padding-left: 5px;
            border-left: 4px solid #e94560;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            font-weight: bold;
            color: #06d6a0;
        }
        .button-container {
            text-align: center;
            margin: 40px 0;
        }
        .btn {
            display: inline-block;
            padding: 15px 30px;
            margin: 0 10px;
            background-color: #e94560;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            font-size: 1.2rem;
            transition: all 0.3s;
            box-shadow: 0 4px 6px rgba(0,0,0,0.3);
        }
        .btn:hover {
            background-color: #ef476f;
            transform: translateY(-3px);
            box-shadow: 0 6px 10px rgba(0,0,0,0.4);
        }
        .download-btn {
            background-color: #06d6a0;
        }
        .download-btn:hover {
            background-color: #11d6a8;
        }
        .login-btn {
            background-color: #118ab2;
        }
        .login-btn:hover {
            background-color: #0d9488;
        }
        .image-container {
            text-align: center;
            margin: 30px 0;
        }
        .game-image {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.3);
            transition: transform 0.3s;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .stats-box {
            background-color: #16213e;
            border-radius: 10px;
            padding: 20px;
            margin: 30px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.3);
            border-top: 5px solid #ffd166;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }
        .stat-item {
            text-align: center;
            padding: 15px;
            background-color: #0f3460;
            border-radius: 8px;
            transition: transform 0.3s;
        }
        .stat-item:hover {
            transform: translateY(-5px);
        }
        .stat-number {
            font-size: 2rem;
            font-weight: bold;
            color: #ffd166;
            margin-bottom: 5px;
        }
        .review-container {
            background-color: #16213e;
            border-radius: 10px;
            padding: 25px;
            margin: 20px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.3);
            border-left: 5px solid #e94560;
            transition: transform 0.3s;
        }
        .review-container:hover {
            transform: translateX(5px);
        }
        .review-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }
        .reviewer {
            font-weight: bold;
            color: #06d6a0;
        }
        .rating {
            color: #ffd166;
            font-weight: bold;
        }
        .tips-list {
            margin: 20px 0;
            padding-left: 40px;
        }
        .tips-list li {
            margin-bottom: 15px;
            font-size: 1.1rem;
            position: relative;
            padding-left: 10px;
        }
        .tips-list li:before {
            content: '•';
            color: #e94560;
            font-weight: bold;
            position: absolute;
            left: -20px;
        }
        .tag-container {
            margin: 40px 0;
        }
        .tag {
            display: inline-block;
            background-color: #0f3460;
            color: #e2e8f0;
            padding: 8px 15px;
            border-radius: 20px;
            margin: 0 8px 10px 0;
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.3s;
            border: 1px solid transparent;
        }
        .tag:hover {
            background-color: #1a3a69;
            border-color: #ffd166;
            transform: translateY(-2px);
        }
        .game-type-nav {
            margin: 30px 0;
        }
        .game-type {
            display: inline-block;
            margin-right: 15px;
            text-decoration: none;
            color: #06d6a0;
            font-weight: 500;
            transition: all 0.3s;
            position: relative;
        }
        .game-type:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -2px;
            left: 0;
            background-color: #ffd166;
            transition: width 0.3s;
        }
        .game-type:hover {
            color: #08e0ac;
        }
        .game-type:hover:after {
            width: 100%;
        }
        footer {
            background-color: #0f3460;
            color: white;
            padding: 40px 0 20px;
            margin-top: 50px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .footer-section {
            margin-bottom: 30px;
        }
        .footer-section h3 {
            color: #ffd166;
            margin-bottom: 15px;
            font-size: 1.3rem;
            border-left: none;
            padding-left: 0;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #1a3a69;
            margin-top: 20px;
            font-size: 0.9rem;
            color: #e2e8f0;
        }
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background-color: #e94560;
                padding: 20px;
                box-shadow: 0 10px 10px rgba(0,0,0,0.3);
            }
            nav ul.show {
                display: flex;
            }
            nav ul li {
                margin: 10px 0;
                padding: 5px 0;
                border-bottom: 1px solid rgba(255,255,255,0.2);
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            .btn {
                display: block;
                margin: 10px auto;
                width: 80%;
            }
            .stats-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 480px) {
            .stats-grid {
                grid-template-columns: 1fr;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            p {
                font-size: 1rem;
            }
        }
