/* ======= MOBILE RESPONSIVE ======= */

    .new-sticker {
    background: #e91e63;
    color: #fff;
    font-size: 11px;
    font-weight: bold;
    padding: 1px 6px;
    margin-left: 8px;
    border-radius: 3px;
    float: right;
    text-transform: uppercase;
}
.china-pagination {
    display: flex;
    justify-content: center;
    margin: 25px 0;
    gap: 6px;
    flex-wrap: wrap;
}

.china-pagination a,
.china-pagination span {
    display: inline-block;
    padding: 8px 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    background: #fff;
    transition: all 0.3s ease;
    text-decoration: none;
    min-width: 38px;
    text-align: center;
}

/* Active Page */
.china-pagination .current {
    background: #2e7d32;  /* green */
    color: #fff;
    border-color: #2e7d32;
    font-weight: 600;
}

/* Hover */
.china-pagination a:hover {
    background: #f4f4f4;
    border-color: #aaa;
}

/* Prev / Next buttons */
.china-pagination .prev,
.china-pagination .next {
    font-weight: 600;
}

.china-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 25px;
    }
    .china-card {
        background: #fff;
        border: 1px solid #ddd;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 4px 10px rgba(0,0,0,0.08);
        transition: transform 0.2s ease;
    }
    .china-card:hover { transform: translateY(-5px); }

    /* Thumbnail area */
    .china-thumb {
        padding: 8px;
    background: #07253b;
    }
    .china-thumb img {
        width: 100%;
        aspect-ratio: 16 / 9;  /* 1280x720 ratio maintain */
        object-fit: cover;
        border-radius: 8px;
        display: block;
    }

    /* Footer area */
    .china-footer {
        padding: 12px 15px;
    font-size: 14px;
    background: #051f33;
    border-top: 1px solid rgb(161 66 0)
    }
    .china-footer .brand-line {
       font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    margin-bottom: 6px;
    color: #cfa602;
    }
    .china-footer .info-line {
        display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
    color: #1baec1;
    font-weight: 500;
    font-family: sans-serif;
    }
    .china-footer .download-btn {
        color: #0073aa;
        text-decoration: none;
        font-size: 18px;
        margin-left: auto;
        transition: color 0.2s;
    }
    .china-footer .download-btn:hover { color: #d54e21; }