* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', sans-serif;
        }
        body {
            background-color: #f8f5e6;
            color: #2d2d2d;
            line-height: 1.8;
            padding-bottom: 60px;
        }
        .header {
            background-color: #b22222;
            padding: 15px 20px;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 8px 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.8rem;
            font-weight: bold;
            text-decoration: none;
            letter-spacing: 0.3px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.4);
            text-transform: uppercase;
        }
        .nav-links {
            display: flex;
            gap: 25px;
        }
        .nav-links a {
            color: #ffffff;
            text-decoration: none;
            font-size: 1.1rem;
            transition: 0.3s;
            padding: 5px 0;
            border-bottom: 2px solid transparent;
        }
        .nav-links a:hover {
            color: #ffd700;
            border-bottom: 2px solid #ffd700;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .container {
            max-width: 1200px;
            margin: 30px auto;
            padding: 0 15px;
        }
        h1 {
            color: #b22222;
            font-size: 2.6rem;
            margin-bottom: 20px;
            text-align: center;
            padding: 20px 0;
            border-bottom: 4px solid #b22222;
            text-shadow: 0 1px 2px rgba(0,0,0,0.1);
        }
        h2 {
            color: #b22222;
            font-size: 2rem;
            margin: 40px 0 20px;
            padding-left: 10px;
            border-left: 5px solid #b22222;
        }
        h3 {
            color: #4a4a4a;
            font-size: 1.6rem;
            margin: 30px 0 15px;
            padding-bottom: 5px;
            border-bottom: 2px solid #e0c888;
        }
        p {
            margin-bottom: 18px;
            font-size: 1.1rem;
            color: #3a3a3a;
        }
        .btn-container {
            margin: 35px 0;
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            justify-content: center;
        }
        .btn {
            padding: 12px 28px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.1rem;
            transition: 0.3s;
            text-align: center;
            box-shadow: 0 3px 5px rgba(0,0,0,0.2);
        }
        .download-btn {
            background-color: #228b22;
            color: white;
        }
        .login-btn {
            background-color: #1e90ff;
            color: white;
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 10px rgba(0,0,0,0.3);
        }
        .image-container {
            margin: 35px 0;
            text-align: center;
        }
        img {
            max-width: 100%;
            border-radius: 8px;
            box-shadow: 0 5px 10px rgba(0,0,0,0.25);
            transition: 0.3s;
        }
        img:hover {
            transform: scale(1.01);
        }
        .stats-box {
            background-color: white;
            border-radius: 10px;
            padding: 20px;
            margin: 20px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            border-top: 5px solid #b22222;
        }
        .stats-box p {
            font-size: 1.2rem;
            margin-bottom: 10px;
        }
        .review {
            background-color: #fff8e6;
            border-radius: 8px;
            padding: 18px;
            margin: 18px 0;
            border-left: 4px solid #b22222;
        }
        .reviewer {
            font-style: italic;
            color: #4a4a4a;
            margin-top: 12px;
            font-size: 1rem;
        }
        .guide-section, .events-section, .community-section {
            background-color: white;
            border-radius: 10px;
            padding: 25px;
            margin: 30px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .tag-container {
            margin: 40px 0;
        }
        .tag {
            display: inline-block;
            background-color: #ffe4b5;
            padding: 8px 18px;
            border-radius: 25px;
            margin: 6px;
            text-decoration: none;
            color: #b22222;
            font-weight: 600;
            transition: 0.3s;
            border: 1px solid #e0c888;
        }
        .tag:hover {
            background-color: #b22222;
            color: white;
            transform: translateY(-2px);
        }
        .game-types {
            margin: 40px 0 20px;
        }
        .game-type-link {
            color: #b22222;
            text-decoration: none;
            margin-right: 18px;
            font-weight: 600;
            font-size: 1.05rem;
        }
        .game-type-link:hover {
            text-decoration: underline;
            color: #8b0000;
        }
        .footer {
            background-color: #2d2d2d;
            color: white;
            padding: 40px 15px;
            margin-top: 50px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .footer p {
            margin-bottom: 12px;
            color: #d0d0d0;
        }
        .copyright {
            margin-top: 30px;
            text-align: center;
            font-size: 0.95rem;
            color: #a0a0a0;
            padding-top: 15px;
            border-top: 1px solid #444444;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background-color: #b22222;
                padding: 20px;
                gap: 15px;
                box-shadow: 0 8px 8px rgba(0,0,0,0.2);
            }
            .nav-links.active {
                display: flex;
            }
            .mobile-menu-btn {
                display: block;
            }
            h1 {
                font-size: 2rem;
                padding: 15px 0;
            }
            h2 {
                font-size: 1.7rem;
                margin: 30px 0 15px;
            }
            h3 {
                font-size: 1.4rem;
                margin: 25px 0 12px;
            }
            .btn-container {
                flex-direction: column;
                gap: 12px;
            }
            .btn {
                width: 100%;
                padding: 12px;
                font-size: 1.05rem;
            }
            .image-container {
                margin: 25px 0;
            }
            .stats-box, .review, .guide-section, .events-section, .community-section {
                padding: 18px;
                margin: 20px 0;
            }
        }
