* {
            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: 60px;
        }
        .header {
            background-color: #e94560;
            padding: 18px 20px;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 12px rgba(0,0,0,0.3);
        }
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            color: #ffffff;
            font-size: 1.9rem;
            font-weight: bold;
            text-decoration: none;
            letter-spacing: 0.5px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }
        .nav-links {
            display: flex;
            gap: 30px;
        }
        .nav-links a {
            color: #ffffff;
            text-decoration: none;
            font-size: 1.15rem;
            transition: 0.3s;
            position: relative;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: #ffdf00;
            transition: 0.3s;
        }
        .nav-links a:hover {
            color: #ffdf00;
        }
        .nav-links a:hover::after {
            width: 100%;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            z-index: 101;
        }
        .content-container {
            max-width: 1200px;
            margin: 40px auto;
            padding: 0 20px;
        }
        h1 {
            color: #ffdf00;
            font-size: 2.8rem;
            margin-bottom: 25px;
            text-align: center;
            padding: 20px 0;
            border-bottom: 4px solid #e94560;
            text-shadow: 0 3px 6px rgba(0,0,0,0.3);
        }
        h2 {
            color: #ffffff;
            font-size: 2.2rem;
            margin: 50px 0 25px;
            padding-bottom: 12px;
            border-bottom: 3px solid #e94560;
            position: relative;
        }
        h2::before {
            content: '▶';
            color: #ffdf00;
            margin-right: 10px;
        }
        h3 {
            color: #ffdf00;
            font-size: 1.7rem;
            margin: 35px 0 20px;
            padding-left: 10px;
            border-left: 4px solid #e94560;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.15rem;
            color: #f0f0f5;
        }
        .highlight {
            font-weight: bold;
            color: #ffdf00;
            text-shadow: 0 1px 2px rgba(0,0,0,0.3);
        }
        .btn-container {
            margin: 40px 0;
            display: flex;
            gap: 25px;
            flex-wrap: wrap;
            justify-content: center;
        }
        .btn {
            padding: 15px 30px;
            text-decoration: none;
            border-radius: 8px;
            font-weight: bold;
            font-size: 1.2rem;
            transition: 0.3s;
            text-align: center;
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }
        .download-btn {
            background-color: #4cc9f0;
            color: #1a1a2e;
        }
        .login-btn {
            background-color: #7209b7;
            color: white;
        }
        .btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 16px rgba(0,0,0,0.3);
        }
        .image-container {
            margin: 40px 0;
            text-align: center;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 24px rgba(0,0,0,0.4);
        }
        img {
            max-width: 100%;
            height: auto;
            transition: 0.5s;
        }
        img:hover {
            transform: scale(1.02);
        }
        .reviews-container {
            background-color: #16213e;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 6px 18px rgba(0,0,0,0.3);
            margin: 30px 0;
        }
        .review {
            margin-bottom: 30px;
            padding-bottom: 25px;
            border-bottom: 2px solid #e94560;
        }
        .review:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }
        .reviewer {
            font-weight: bold;
            color: #4cc9f0;
            font-size: 1.2rem;
            margin-bottom: 10px;
            display: block;
        }
        .review-text {
            font-style: italic;
        }
        .game-tags {
            margin: 50px 0;
        }
        .tag {
            display: inline-block;
            background-color: #16213e;
            color: #ffdf00;
            padding: 10px 20px;
            border-radius: 30px;
            margin: 0 12px 12px 0;
            text-decoration: none;
            font-size: 1rem;
            transition: 0.3s;
            border: 1px solid #e94560;
        }
        .tag:hover {
            background-color: #e94560;
            color: white;
            transform: translateY(-3px);
        }
        .game-types {
            margin: 50px 0;
            background-color: #16213e;
            padding: 25px;
            border-radius: 12px;
        }
        .type-link {
            color: #4cc9f0;
            text-decoration: none;
            font-weight: bold;
            margin-right: 25px;
            font-size: 1.1rem;
            transition: 0.3s;
        }
        .type-link:hover {
            color: #ffdf00;
            text-decoration: underline;
        }
        .footer {
            background-color: #0f3460;
            color: white;
            padding: 50px 20px;
            margin-top: 80px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .footer-text {
            margin-bottom: 30px;
            font-size: 1.2rem;
            line-height: 1.9;
        }
        .copyright {
            margin-top: 40px;
            text-align: center;
            font-size: 1rem;
            opacity: 0.8;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.2);
        }
        .strategy-box {
            background-color: #16213e;
            border-left: 5px solid #ffdf00;
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 8px 8px 0;
        }
        .strategy-title {
            color: #4cc9f0;
            font-size: 1.3rem;
            margin-bottom: 15px;
            font-weight: bold;
        }
        .stat-box {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin: 30px 0;
        }
        .stat-item {
            flex: 1;
            min-width: 250px;
            background-color: #16213e;
            padding: 20px;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: bold;
            color: #ffdf00;
            margin-bottom: 10px;
        }
        .stat-label {
            color: #f0f0f5;
            font-size: 1.1rem;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 80px;
                left: 0;
                right: 0;
                background-color: #e94560;
                padding: 30px 20px;
                gap: 20px;
                box-shadow: 0 10px 20px rgba(0,0,0,0.3);
            }
            .nav-links.active {
                display: flex;
            }
            .mobile-menu-btn {
                display: block;
            }
            h1 {
                font-size: 2.2rem;
                padding: 15px 0;
            }
            h2 {
                font-size: 1.8rem;
                margin: 40px 0 20px;
            }
            h3 {
                font-size: 1.5rem;
                margin: 30px 0 15px;
            }
            p {
                font-size: 1.1rem;
                margin-bottom: 18px;
            }
            .btn-container {
                flex-direction: column;
                gap: 15px;
            }
            .btn {
                width: 100%;
                padding: 14px 20px;
                font-size: 1.1rem;
            }
            .stat-item {
                min-width: 100%;
            }
            .type-link {
                display: inline-block;
                margin-bottom: 10px;
            }
        }
