/* 高清图片生成器样式 */
.hd-button-container {
    display: flex;
    /* justify-content: center; */
    justify-content: flex-start;
    margin: 0px 0 0px;
    width: 100%;
    padding: 0px;
    position: relative;
    z-index: 100;
}

.hd-generate-btn {
    background-color: #11b576;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }
    50% {
        transform: scale(1.03);
        box-shadow: 0 6px 12px rgba(126, 87, 194, 0.4);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }
}

.hd-generate-btn:hover {
    background-color: #31c031;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
    transform: translateY(-2px);
    animation: none;
}

.hd-generate-btn:disabled {
    background-color: #9acca9;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
    animation: none;
}

/* 积分不足模态框样式 */
.credits-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.credits-modal-content {
    background-color: white;
    padding: 25px;
    border-radius: 8px;
    width: 90%;
    max-width: 450px;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.close-credits-modal {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    color: #888;
}

.close-credits-modal:hover {
    color: #333;
}

.credits-modal h2 {
    margin-top: 0;
    margin-bottom: 15px;
    color: #333;
    font-size: 20px;
}

.credits-modal p {
    margin-bottom: 20px;
    color: #555;
    line-height: 1.5;
}

.recharge-btn {
    background-color: #4caf50;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.recharge-btn:hover {
    background-color: #3f9142;
} 