.anniversary-badge {
    position: absolute;
    top: -35px;
    right: -15px;
    width: 125px;
    height: 85px;

    display: flex;
    align-items: center;
    justify-content: center;

    /* 使用 anniversary-sale.png */
    background: url("/es/img/payment/anniversary-sale.png") center / contain no-repeat;

    transform: rotate(-6deg);
    z-index: 10;
    pointer-events: none;
    user-select: none;
}

/* 保持原来的字体效果 */
.anniversary-badge span {
    color: #fff;
    font-family: "Arial Black", "Helvetica Neue", Arial, sans-serif;
    font-size: 36px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -1px;

    /* 泡泡字效果 */
    -webkit-text-stroke: 4px #ef4928;
    paint-order: stroke fill;

    /* 深红立体边 */
    text-shadow:
        0 4px 0 #fd7e14,
        2px 6px 0 #8c1c12,
        0 8px 8px rgba(0, 0, 0, 0.2);
}

.system-note {
    display: block;
    margin-top: 4px;
    font-size: 15px;
    color: #999;
    font-weight: 400;
}

.buymethod {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.payment-title {
    margin: 0;
    white-space: nowrap;
}

.payment-methods {
    display: flex;
    align-items: center;
    gap: 8px;
}

.payment-img {
    width: 55px;
    height: 28px;
    display: block;
}
@media (max-width: 768px) {
    .buymethod {
        flex-wrap: wrap;
    }

    .payment-methods {
        flex-wrap: wrap;
        justify-content: center;
    }
}