
/* First Deposit Bonus Dialog Styles */
.firstDepositBonusDialog {
    border-radius: .32rem;
    overflow: visible;
}

.firstDepositBonusDialog .van-dialog__header {
    padding: .4rem .4rem 0;
    background: linear-gradient(135deg, #ff6b6b 0%, #feca57 100%);
    border-radius: .32rem .32rem 0 0;
}

.firstDepositBonusDialog .van-dialog__content {
    padding: .53333rem .4rem;
    background: linear-gradient(135deg, #ff6b6b 0%, #feca57 100%);
}

.firstDepositBonusDialog .van-dialog__footer {
    background: linear-gradient(135deg, #ff6b6b 0%, #feca57 100%);
    border-radius: 0 0 .32rem .32rem;
    padding: 0 .4rem .4rem;
}

.bonus-dialog-header {
    text-align: center;
    position: relative;
    padding: .4rem 0;
}

.bonus-confetti {
    position: absolute;
    top: -0.5rem;
    left: 0;
    right: 0;
    height: 1rem;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><text y="15" font-size="12">🎉✨🎊🎈🎁</text></svg>') repeat-x;
    background-size: contain;
    animation: confetti-fall 2s ease-in-out infinite;
}

@keyframes confetti-fall {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.bonus-icon-wrapper {
    width: 1.6rem;
    height: 1.6rem;
    margin: 0 auto .26667rem;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 .13333rem .26667rem rgba(0,0,0,.2);
    animation: bonus-pulse 1.5s ease-in-out infinite;
}

@keyframes bonus-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.bonus-icon {
    font-size: .8rem;
}

.bonus-title {
    font-size: .48rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 .05333rem .13333rem rgba(0,0,0,.3);
}

.bonus-dialog-body {
    text-align: center;
    padding: .4rem 0;
}

.bonus-amount-wrapper {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: .26667rem;
}

.bonus-currency {
    font-size: .64rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 .05333rem .13333rem rgba(0,0,0,.3);
}

.bonus-amount-animated {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 .05333rem .13333rem rgba(0,0,0,.3);
    min-width: 1.5rem;
}

.bonus-progress-bar {
    width: 80%;
    height: .13333rem;
    background: rgba(255,255,255,.3);
    border-radius: .06667rem;
    margin: 0 auto .4rem;
    overflow: hidden;
}

.bonus-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #fff 0%, #ffeaa7 100%);
    border-radius: .06667rem;
    transition: width .3s ease;
    box-shadow: 0 0 .13333rem rgba(255,255,255,.8);
}

.bonus-message {
    font-size: .34667rem;
    color: #fff;
    line-height: 1.5;
    margin-bottom: .4rem;
    padding: 0 .26667rem;
}

.bonus-highlight {
    font-weight: 700;
    color: #ffeaa7;
    font-size: .4rem;
}

.bonus-wallet-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .26667rem;
    background: rgba(255,255,255,.2);
    border-radius: .21333rem;
    padding: .26667rem;
    margin-top: .4rem;
}

.wallet-before,
.wallet-after {
    font-size: .32rem;
    color: #fff;
}

.wallet-after {
    font-weight: 700;
    color: #ffeaa7;
}

.wallet-arrow {
    color: #fff;
    font-size: .37333rem;
    animation: arrow-bounce 1s ease-in-out infinite;
}

@keyframes arrow-bounce {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
}

.bonus-dialog-footer-btn {
    background: linear-gradient(135deg, #00b894 0%, #00cec9 100%);
    color: #fff;
    font-size: .4rem;
    font-weight: 700;
    padding: .32rem .8rem;
    border-radius: .53333rem;
    text-align: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 .13333rem .26667rem rgba(0,0,0,.2);
    transition: transform .2s ease;
}

.bonus-dialog-footer-btn:active {
    transform: scale(.95);
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.4), transparent);
    animation: btn-shine 2s infinite;
}

@keyframes btn-shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* First Save Dialog Claim Button */
.claim-btn {
    background: linear-gradient(135deg, #00b894 0%, #00cec9 100%) !important;
    margin-right: .2rem;
}

.firstSaveDialog .footer {
    display: flex;
    flex-direction: column;
    gap: .2rem;
}

.firstSaveDialog .btn {
    transition: all .3s ease;
}

.firstSaveDialog .btn:active {
    transform: scale(.95);
}
