* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', 'Tahoma', sans-serif;
        }
        body {
            background-color: #fdf4f5;
            color: #2d2d2d;
            line-height: 1.8;
            padding-bottom: 60px;
        }
        header {
            background: linear-gradient(135deg, #9333ea, #ec4899);
            padding: 15px 20px;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 15px rgba(0,0,0,0.15);
        }
        .logo {
            color: #ffffff;
            font-size: 2rem;
            font-weight: bold;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            margin: 10px 0;
            display: inline-block;
            letter-spacing: 1px;
            text-transform: uppercase;
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }
        .nav-links {
            display: flex;
            gap: 30px;
        }
        .nav-links a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 600;
            transition: 0.3s;
            padding: 8px 0;
            border-bottom: 3px solid transparent;
        }
        .nav-links a:hover {
            color: #fbbf24;
            border-bottom: 3px solid #fbbf24;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 2rem;
            cursor: pointer;
        }
        main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 30px 20px;
        }
        h1 {
            color: #7c3aed;
            font-size: 2.8rem;
            margin: 25px 0 35px;
            text-align: center;
            padding-bottom: 20px;
            border-bottom: 4px solid #fbbf24;
        }
        h2 {
            color: #dc2626;
            font-size: 2.2rem;
            margin: 50px 0 25px;
            padding-left: 20px;
            border-left: 5px solid #7c3aed;
        }
        h3 {
            color: #0f766e;
            font-size: 1.7rem;
            margin: 35px 0 20px;
            display: flex;
            align-items: center;
        }
        h3::before {
            content: "🎭";
            margin-right: 12px;
        }
        p {
            margin-bottom: 25px;
            font-size: 1.15rem;
            text-align: justify;
            line-height: 1.8;
        }
        .highlight {
            font-weight: bold;
            color: #7c3aed;
            text-decoration: underline;
            text-underline-offset: 4px;
        }
        .btn-container {
            margin: 40px 0;
            display: flex;
            gap: 25px;
            flex-wrap: wrap;
            justify-content: center;
        }
        .btn {
            padding: 18px 35px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.2rem;
            transition: 0.3s;
            display: inline-block;
            text-align: center;
            min-width: 220px;
        }
        .download-btn {
            background-color: #10b981;
            color: white;
            border: 3px solid #059669;
        }
        .download-btn:hover {
            background-color: #059669;
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4);
        }
        .login-btn {
            background-color: #3b82f6;
            color: white;
            border: 3px solid #2563eb;
        }
        .login-btn:hover {
            background-color: #2563eb;
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
        }
        .image-container {
            margin: 50px 0;
            text-align: center;
        }
        .game-img {
            max-width: 100%;
            border-radius: 20px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
            border: 6px solid white;
            transition: 0.5s;
        }
        .game-img:hover {
            transform: scale(1.02);
        }
        .stats-box {
            background-color: #fff;
            border-radius: 20px;
            padding: 30px;
            margin: 40px 0;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
            border-left: 6px solid #f59e0b;
        }
        .stats-box p {
            margin: 15px 0;
            display: flex;
            align-items: flex-start;
        }
        .stats-box p::before {
            content: "🎯";
            margin-right: 12px;
        }
        .review {
            background-color: #fef3c7;
            border-radius: 15px;
            padding: 25px;
            margin: 25px 0;
            border-bottom: 4px solid #f59e0b;
            position: relative;
        }
        .review::before {
            content: "🗣️";
            font-size: 2.5rem;
            color: rgba(245, 158, 11, 0.2);
            position: absolute;
            top: -15px;
            left: 15px;
        }
        .reviewer {
            font-style: italic;
            color: #6b7280;
            margin-top: 15px;
            font-weight: 600;
        }
        .reviewer::before {
            content: "— ";
        }
        .guide-section {
            background-color: #ecfdf5;
            border-radius: 20px;
            padding: 35px;
            margin: 40px 0;
            box-shadow: 0 8px 20px rgba(0,0,0,0.07);
        }
        .events-section {
            background-color: #eff6ff;
            border-radius: 20px;
            padding: 35px;
            margin: 40px 0;
            box-shadow: 0 8px 20px rgba(0,0,0,0.07);
        }
        .community-section {
            background-color: #fef2f2;
            border-radius: 20px;
            padding: 35px;
            margin: 40px 0;
            box-shadow: 0 8px 20px rgba(0,0,0,0.07);
        }
        footer {
            background-color: #1e293b;
            color: white;
            padding: 50px 20px;
            margin-top: 60px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .game-types {
            margin: 40px 0;
        }
        .game-types h4, .tags h4 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: #fcd34d;
            border-bottom: 3px solid #fcd34d;
            padding-bottom: 8px;
            display: inline-block;
        }
        .game-types a, .tags a {
            color: #bfdbfe;
            text-decoration: none;
            margin-right: 20px;
            display: inline-block;
            margin-bottom: 15px;
            transition: 0.3s;
            font-size: 1.1rem;
        }
        .game-types a:hover, .tags a:hover {
            color: #fcd34d;
            transform: translateX(5px);
        }
        .copyright {
            margin-top: 50px;
            text-align: center;
            padding-top: 25px;
            border-top: 2px solid #475569;
            font-size: 1rem;
            color: #cbd5e1;
        }
        .recommendation {
            margin: 30px 0;
            padding: 25px;
            background-color: rgba(255,255,255,0.1);
            border-radius: 15px;
            font-size: 1.1rem;
            line-height: 1.8;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100px;
                left: 0;
                right: 0;
                background-color: #9333ea;
                padding: 25px;
                gap: 20px;
                box-shadow: 0 10px 15px rgba(0,0,0,0.15);
            }
            .nav-links.active {
                display: flex;
            }
            .mobile-menu-btn {
                display: block;
            }
            h1 {
                font-size: 2.2rem;
                padding-bottom: 15px;
            }
            h2 {
                font-size: 1.8rem;
                margin: 40px 0 20px;
                padding-left: 15px;
            }
            h3 {
                font-size: 1.5rem;
                margin: 30px 0 15px;
            }
            p {
                font-size: 1.05rem;
                margin-bottom: 20px;
            }
            .btn {
                width: 100%;
                padding: 15px 20px;
                font-size: 1.1rem;
            }
            .stats-box, .guide-section, .events-section, .community-section {
                padding: 25px 20px;
            }
            .review {
                padding: 20px;
            }
        }
