/* 每日奖励卡片样式 */
.daily-bonus-card {
    position: relative;
    width: 100%;
    /*max-width: 400px;*/
    /*min-height: 200px;*/
    background: linear-gradient(135deg, #9c27b0, #673ab7);
    border-radius: 7px;
    padding: 20px;
    color: white;
    margin-top: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    margin-bottom: 30px;
}

/* 内容区域 */
.daily-bonus-content {
    position: relative;
    z-index: 2;
    width: 70%;
}

.daily-bonus-title {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 8px 0;
}

.daily-bonus-desc {
    font-size: 14px;
    opacity: 0.8;
    margin: 0 0 20px 0;
}

/* 计时器样式 */
.daily-bonus-timer {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.timer-icon {
    margin-right: 10px;
}

.timer-text {
    font-size: 18px;
    font-weight: 600;
    margin-right: 8px;
}

.timer-label {
    font-size: 12px;
    opacity: 0.7;
}

/* 领取按钮 */
.claim-button {
    background-color: #4a148c;
    color: white;
    border: none;
    border-radius: 7px;
    padding: 8px 24px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.claim-button:hover {
    background-color: #6a1b9a;
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.claim-button.active {
    background-color: #4CAF50;
    animation: pulse 1.5s infinite;
}

/* 宝箱图片 */
.treasure-chest {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 100px;
    height: 100px;
    z-index: 1;
}

.chest-image {
    margin: 37px;
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.chest-image::after {
    content: '';
    position: absolute;
    width: 89px;
    height: 91px;
    filter: blur(42px);
    background: inherit;
    background-size: 100%;
}
.diamond-image {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.diamond-image::after {
    content: '';
    position: absolute;
    width: 89px;
    height: 91px;
    filter: blur(42px);
    background: rgba(0, 191, 255, 0.3);
    background-size: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}
/* VIP 部分 */
.vip-program {
    position: relative;
    background-color: rgb(64 64 64 / 20%);
    border-radius: 7px;
    padding: 20px;
    margin-top: 14px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.vip-title {
    font-size: 23px;
    font-weight: 700;
    margin: 0 0 5px 0;
    --bg: linear-gradient(90deg, #A29CD3 0%, #E8BFAC 100%);
    position: relative;
    background: var(--bg);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.vip-desc {
    font-size: 14px;
    opacity: 0.8;
    margin: 0 0 10px 0;
}

.vip-button {
background-color: #00bfff33;
    color: #00bfff;
    border: none;
    border-radius: 15px;
    padding: 5px 15px;
    font-size: 12px;
        margin-top: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.vip-button:hover {
    background-color: #008eff33;
    transform: translateY(-2px);
}

.diamond-container {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 60px;
    height: 60px;
}


/* 动画效果 */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* 响应式调整 */
@media (max-width: 480px) {
    .daily-bonus-content {
        width: 100%;
    }
    
    .treasure-chest {
        opacity: 0.5;
        top: 50%;
        right: 10px;
        transform: translateY(-50%);
    }
}
.claim-button.disabled {
    background-color: #9e9e9e;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.claim-button.disabled:hover {
    background-color: #9e9e9e;
    transform: none;
    box-shadow: none;
}