* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', sans-serif;
        }
        body {
            background-color: #f5f1e6;
            color: #2d2414;
            line-height: 1.8;
            padding-bottom: 60px;
        }
        header {
            background-color: #6a4c93;
            padding: 15px 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: #ffd43b;
            font-size: 2rem;
            font-weight: bold;
            text-decoration: none;
            letter-spacing: 1.5px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }
        .logo span {
            color: #ffffff;
        }
        .desktop-nav {
            display: flex;
            gap: 30px;
        }
        .desktop-nav a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 600;
            transition: 0.3s;
            padding: 5px 0;
            border-bottom: 2px solid transparent;
        }
        .desktop-nav a:hover {
            color: #ffd43b;
            border-bottom: 2px solid #ffd43b;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            background-color: #6a4c93;
            padding: 20px;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            flex-direction: column;
            gap: 18px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        .mobile-nav a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            padding: 8px 0;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .mobile-nav a:last-child {
            border-bottom: none;
        }
        main {
            max-width: 1200px;
            margin: 35px auto;
            padding: 0 20px;
        }
        h1 {
            color: #6a4c93;
            font-size: 2.8rem;
            margin-bottom: 25px;
            text-align: center;
            padding: 20px 0;
            border-bottom: 4px solid #ffd43b;
            text-shadow: 0 1px 3px rgba(0,0,0,0.1);
        }
        h2 {
            color: #6a4c93;
            font-size: 2.2rem;
            margin: 40px 0 20px;
            padding-left: 12px;
            border-left: 5px solid #ffd43b;
        }
        h3 {
            color: #6a4c93;
            font-size: 1.7rem;
            margin: 30px 0 15px;
            position: relative;
            padding-left: 10px;
        }
        h3::before {
            content: "✨";
            position: absolute;
            left: -25px;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.15rem;
            text-align: justify;
        }
        .highlight {
            font-weight: bold;
            color: #6a4c93;
            text-decoration: underline;
            text-decoration-style: wavy;
            text-decoration-color: #ffd43b;
        }
        .btn-container {
            margin: 40px 0;
            display: flex;
            gap: 25px;
            flex-wrap: wrap;
            justify-content: center;
        }
        .btn {
            padding: 15px 30px;
            text-decoration: none;
            font-weight: bold;
            border-radius: 8px;
            transition: 0.3s;
            text-align: center;
            min-width: 180px;
            font-size: 1.1rem;
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }
        .download-btn {
            background-color: #ffd43b;
            color: #2d2414;
        }
        .download-btn:hover {
            background-color: #ffc107;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.3);
        }
        .login-btn {
            background-color: #6a4c93;
            color: white;
        }
        .login-btn:hover {
            background-color: #573a7d;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.3);
        }
        .img-container {
            margin: 40px 0;
            text-align: center;
        }
        .game-img {
            max-width: 100%;
            border-radius: 12px;
            box-shadow: 0 6px 15px rgba(0,0,0,0.2);
            border: 3px solid #ffd43b;
        }
        .stats-box {
            background-color: white;
            border-radius: 12px;
            padding: 25px;
            margin: 30px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            border-top: 5px solid #6a4c93;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 25px;
            margin-top: 20px;
        }
        .stat-item {
            text-align: center;
            padding: 20px;
            background-color: #f8f4ea;
            border-radius: 10px;
            border: 1px dashed #6a4c93;
        }
        .stat-number {
            font-size: 2.2rem;
            font-weight: bold;
            color: #6a4c93;
        }
        .stat-label {
            font-size: 1.05rem;
            color: #555;
            margin-top: 8px;
        }
        .review-container {
            background-color: white;
            border-radius: 12px;
            padding: 25px;
            margin: 30px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .review {
            margin-bottom: 25px;
            padding-bottom: 20px;
            border-bottom: 1px solid #eee;
        }
        .review:last-child {
            border-bottom: none;
        }
        .reviewer {
            font-weight: bold;
            color: #6a4c93;
            font-size: 1.2rem;
        }
        .review-location {
            color: #777;
            font-size: 0.95rem;
            margin-bottom: 10px;
        }
        .rating {
            color: #ffd43b;
            margin: 8px 0;
            font-size: 1.2rem;
        }
        .guide-tip {
            background-color: #f0e6ff;
            border-left: 5px solid #6a4c93;
            padding: 20px;
            margin: 20px 0;
            border-radius: 0 8px 8px 0;
        }
        .guide-tip strong {
            color: #6a4c93;
            font-size: 1.2rem;
            display: block;
            margin-bottom: 8px;
        }
        .event-card {
            background-color: white;
            border-radius: 12px;
            overflow: hidden;
            margin: 30px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: 0.3s;
        }
        .event-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        }
        .event-img {
            width: 100%;
            height: 220px;
            object-fit: cover;
        }
        .event-details {
            padding: 25px;
        }
        .event-details h3 {
            margin-top: 0;
        }
        .community-section {
            background-color: #f8f4ea;
            border-radius: 12px;
            padding: 30px;
            margin: 35px 0;
            border: 1px solid #e8e0d0;
        }
        .tag-container {
            margin: 25px 0;
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }
        .tag {
            background-color: #6a4c93;
            color: white;
            padding: 8px 20px;
            border-radius: 30px;
            text-decoration: none;
            font-size: 1rem;
            transition: 0.3s;
        }
        .tag:hover {
            background-color: #573a7d;
            transform: scale(1.05);
        }
        .game-types {
            margin: 35px 0;
        }
        .type-link {
            color: #6a4c93;
            text-decoration: none;
            margin-right: 20px;
            font-weight: 600;
            font-size: 1.05rem;
        }
        .type-link:hover {
            text-decoration: underline;
            color: #573a7d;
        }
        footer {
            background-color: #2d2414;
            color: white;
            padding: 50px 20px;
            margin-top: 60px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .footer-section {
            margin-bottom: 40px;
        }
        .footer-section h3 {
            color: #ffd43b;
            margin-bottom: 20px;
            padding-left: 0;
        }
        .footer-section h3::before {
            content: "";
        }
        .recommendation {
            font-size: 1.1rem;
            line-height: 1.8;
            margin: 30px 0;
            padding: 20px;
            background-color: rgba(255,255,255,0.05);
            border-radius: 8px;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            margin-top: 30px;
            font-size: 1rem;
            color: #ccc;
        }
        .myth-creature {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            margin: 30px 0;
        }
        .myth-creature img {
            width: 200px;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.2);
        }
        .creature-details {
            flex: 1;
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .mobile-menu-btn {
                display: block;
            }
            .mobile-nav.active {
                display: flex;
            }
            h1 {
                font-size: 2.2rem;
                padding: 15px 0;
            }
            h2 {
                font-size: 1.8rem;
                margin: 30px 0 15px;
            }
            h3 {
                font-size: 1.5rem;
                padding-left: 0;
            }
            h3::before {
                content: "";
            }
            p {
                font-size: 1.05rem;
                text-align: left;
            }
            .btn {
                padding: 12px 25px;
                min-width: 150px;
                font-size: 1rem;
            }
            .stats-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }
            .myth-creature {
                flex-direction: column;
            }
            .myth-creature img {
                width: 100%;
                max-width: 300px;
                margin: 0 auto;
            }
            .event-img {
                height: 180px;
            }
        }
