* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', 'Helvetica Neue', sans-serif;
        }
        body {
            background-color: #f5f1e6;
            color: #3a3226;
            line-height: 1.8;
            padding-bottom: 60px;
        }
        header {
            background-color: #9b2335;
            padding: 18px 0;
            box-shadow: 0 3px 12px rgba(0,0,0,0.15);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: bold;
            color: #ffffff;
            text-align: center;
            margin-bottom: 12px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            letter-spacing: 0.5px;
        }
        nav {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .nav-links {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
        }
        .nav-links a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 600;
            padding: 6px 12px;
            border-radius: 5px;
            transition: all 0.3s ease;
            font-size: 1.05rem;
        }
        .nav-links a:hover {
            background-color: rgba(255,255,255,0.25);
            transform: translateY(-2px);
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            position: absolute;
            top: 22px;
            right: 20px;
            z-index: 1001;
        }
        main {
            max-width: 1280px;
            margin: 35px auto;
            padding: 0 20px;
        }
        h1 {
            color: #9b2335;
            text-align: center;
            margin-bottom: 35px;
            font-size: 2.8rem;
            padding-bottom: 20px;
            border-bottom: 4px solid #c19a6b;
        }
        h2 {
            color: #9b2335;
            margin: 45px 0 25px;
            font-size: 2rem;
            padding-left: 12px;
            border-left: 5px solid #c19a6b;
        }
        h3 {
            color: #8b4513;
            margin: 35px 0 18px;
            font-size: 1.5rem;
            padding-bottom: 5px;
            border-bottom: 2px dotted #c19a6b;
        }
        p {
            margin-bottom: 22px;
            text-align: justify;
            font-size: 1.05rem;
            line-height: 1.8;
        }
        .btn-container {
            display: flex;
            gap: 25px;
            justify-content: center;
            margin: 50px 0;
            flex-wrap: wrap;
        }
        .btn {
            padding: 14px 30px;
            font-size: 1.2rem;
            font-weight: bold;
            text-decoration: none;
            border-radius: 8px;
            transition: all 0.3s ease;
            text-align: center;
            min-width: 180px;
            display: inline-block;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        .download-btn {
            background-color: #228b22;
            color: white;
        }
        .login-btn {
            background-color: #1e90ff;
            color: white;
        }
        .btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 16px rgba(0,0,0,0.15);
        }
        .image-container {
            text-align: center;
            margin: 40px 0;
        }
        .game-image {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.15);
            border: 5px solid white;
        }
        .highlight {
            font-weight: bold;
            color: #9b2335;
            text-decoration: none;
        }
        .game-stats {
            background-color: white;
            border-radius: 12px;
            padding: 25px;
            margin: 35px 0;
            box-shadow: 0 6px 20px rgba(0,0,0,0.08);
        }
        .stat-item {
            display: flex;
            justify-content: space-between;
            padding: 12px 0;
            border-bottom: 1px solid #f1e9d8;
        }
        .stat-item:last-child {
            border-bottom: none;
        }
        .strategy-section, .events-section, .community-section {
            background-color: white;
            border-radius: 12px;
            padding: 30px;
            margin: 35px 0;
            box-shadow: 0 6px 20px rgba(0,0,0,0.08);
        }
        footer {
            background-color: #3a2e1f;
            color: white;
            padding: 50px 20px;
            margin-top: 60px;
        }
        .footer-content {
            max-width: 1280px;
            margin: 0 auto;
        }
        .game-types {
            margin-bottom: 40px;
        }
        .game-types h4, .tags-section h4 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: #c19a6b;
            padding-bottom: 8px;
            border-bottom: 2px solid #c19a6b;
            display: inline-block;
        }
        .type-links, .tag-links {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }
        .type-links a, .tag-links a {
            color: white;
            text-decoration: none;
            background-color: #5c4633;
            padding: 8px 20px;
            border-radius: 25px;
            transition: all 0.3s ease;
            font-size: 1rem;
        }
        .type-links a:hover, .tag-links a:hover {
            background-color: #c19a6b;
            transform: translateY(-2px);
        }
        .recommendation {
            margin: 40px 0;
            padding: 25px;
            background-color: #4a3b2a;
            border-radius: 10px;
            font-size: 1.1rem;
            line-height: 1.8;
        }
        .copyright {
            text-align: center;
            margin-top: 50px;
            padding-top: 25px;
            border-top: 1px solid #5c4633;
            font-size: 1rem;
        }
        .feature-list {
            margin: 25px 0 35px 30px;
        }
        .feature-list li {
            margin-bottom: 15px;
            position: relative;
            padding-left: 25px;
        }
        .feature-list li:before {
            content: "🫘";
            position: absolute;
            left: 0;
        }
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                align-items: center;
                gap: 18px;
                margin-top: 25px;
                background-color: #9b2335;
                padding: 20px 0;
                border-radius: 0 0 10px 10px;
            }
            .nav-links.active {
                display: flex;
            }
            h1 {
                font-size: 2.2rem;
                margin-bottom: 25px;
            }
            h2 {
                font-size: 1.7rem;
                margin: 35px 0 20px;
            }
            h3 {
                font-size: 1.4rem;
                margin: 30px 0 15px;
            }
            .logo {
                font-size: 1.8rem;
            }
            .btn {
                padding: 12px 25px;
                font-size: 1.1rem;
                min-width: 160px;
            }
            .btn-container {
                gap: 15px;
                margin: 35px 0;
            }
            .game-stats, .strategy-section, .events-section, .community-section {
                padding: 20px;
            }
        }
        @media (max-width: 480px) {
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            p {
                font-size: 1rem;
            }
            .stat-item {
                flex-direction: column;
                gap: 5px;
            }
            .stat-item span:first-child {
                font-weight: bold;
                color: #9b2335;
            }
        }
