* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Rounded MT Bold', 'Helvetica Neue', sans-serif;
        }
        body {
            background-color: #fff5fa;
            color: #2d2d2d;
            line-height: 1.8;
            padding-bottom: 60px;
        }
        header {
            background: linear-gradient(135deg, #9c27b0, #e91e63);
            padding: 18px 20px;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            color: #ffffff;
            font-size: 1.6rem;
            font-weight: bold;
            text-decoration: none;
            text-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }
        .nav-links {
            display: flex;
            gap: 25px;
        }
        .nav-links a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s;
            padding: 5px 0;
            border-bottom: 2px solid transparent;
        }
        .nav-links a:hover {
            border-bottom: 2px solid #ffd700;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            z-index: 101;
        }
        main {
            max-width: 1200px;
            margin: 35px auto;
            padding: 0 20px;
        }
        h1 {
            color: #9c27b0;
            font-size: 2.8rem;
            margin-bottom: 25px;
            text-align: center;
            text-shadow: 0 1px 3px rgba(156, 39, 176, 0.2);
            line-height: 1.3;
        }
        h2 {
            color: #c2185b;
            font-size: 2.2rem;
            margin: 40px 0 20px;
            border-bottom: 3px solid #f8bbd0;
            padding-bottom: 8px;
            line-height: 1.3;
        }
        h3 {
            color: #880e4f;
            font-size: 1.7rem;
            margin: 30px 0 15px;
            line-height: 1.3;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.15rem;
            color: #424242;
        }
        .highlight {
            font-weight: bold;
            color: #9c27b0;
            text-decoration: underline dotted #e91e63;
            text-underline-offset: 4px;
        }
        .btn {
            display: inline-block;
            padding: 14px 30px;
            background: linear-gradient(135deg, #e91e63, #9c27b0);
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-weight: bold;
            margin: 15px 8px;
            transition: all 0.3s;
            box-shadow: 0 4px 8px rgba(156, 39, 176, 0.3);
            border: none;
            font-size: 1.1rem;
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(156, 39, 176, 0.4);
        }
        .image-container {
            margin: 30px 0;
            text-align: center;
        }
        .game-img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 6px 15px rgba(0,0,0,0.15);
            transition: transform 0.3s;
        }
        .game-img:hover {
            transform: scale(1.02);
        }
        .stats-box {
            background-color: #fce4ec;
            border-radius: 12px;
            padding: 25px;
            margin: 25px 0;
            border-left: 6px solid #e91e63;
            box-shadow: 0 3px 10px rgba(233, 30, 99, 0.1);
        }
        .review {
            background-color: #fafafa;
            padding: 20px;
            border-radius: 10px;
            margin: 20px 0;
            border: 1px solid #f8bbd0;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        }
        .tips-section, .events-section, .community-section {
            background-color: #f3e5f5;
            padding: 25px;
            border-radius: 12px;
            margin: 25px 0;
            box-shadow: 0 4px 12px rgba(156, 39, 176, 0.08);
        }
        .tag {
            display: inline-block;
            background-color: #f8bbd0;
            padding: 6px 15px;
            border-radius: 25px;
            margin: 8px;
            text-decoration: none;
            color: #880e4f;
            font-size: 0.95rem;
            transition: all 0.3s;
        }
        .tag:hover {
            background-color: #e91e63;
            color: white;
            transform: translateY(-2px);
        }
        .game-type {
            display: inline-block;
            margin: 12px 8px;
            text-decoration: none;
            color: #880e4f;
            font-weight: 600;
            font-size: 1.05rem;
            transition: all 0.3s;
        }
        .game-type:hover {
            color: #e91e63;
            text-decoration: underline;
        }
        footer {
            background-color: #212121;
            color: #f5f5f5;
            padding: 40px 20px;
            margin-top: 60px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .footer-section {
            margin-bottom: 30px;
        }
        .copyright {
            text-align: center;
            padding-top: 25px;
            border-top: 1px solid #424242;
            margin-top: 25px;
            font-size: 0.95rem;
            color: #bdbdbd;
        }
        .emoji-highlight {
            font-size: 1.3rem;
            margin: 0 5px;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background: linear-gradient(135deg, #9c27b0, #e91e63);
                padding: 25px;
                gap: 20px;
                box-shadow: 0 10px 15px rgba(0,0,0,0.2);
            }
            .nav-links.active {
                display: flex;
            }
            .mobile-menu-btn {
                display: block;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            p {
                font-size: 1.1rem;
            }
            .btn {
                padding: 12px 25px;
                font-size: 1rem;
                margin: 10px 5px;
                display: block;
                width: 90%;
                margin-left: auto;
                margin-right: auto;
                text-align: center;
            }
            .stats-box, .review, .tips-section, .events-section, .community-section {
                padding: 20px;
                margin: 20px 0;
            }
        }
