* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
    overflow-x: hidden;
}

@keyframes backgroundShimmer {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.1; }
}

.login-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.2);
    width: 100%;
    max-width: 750px;
    min-height: 400px;
    padding: 30px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
    animation: containerFadeIn 0.6s ease-out;
}

.login-container:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.3);
}

@keyframes containerFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* 更新模式样式 */
.login-container.update-mode {
    max-width: 500px;
    padding: 40px 30px;
}

.login-container.update-mode .qr-display {
    margin-top: 0;
}

.login-container.update-mode .region-selector {
    margin-bottom: 30px;
    text-align: center;
}


/* 关闭按钮 */
.close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    color: #999;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.close-btn:hover {
    background: #f0f0f0;
    color: #666;
}

/* 标题 */
.title {
    text-align: center;
    margin-bottom: 30px;
}

.title h1 {
    font-size: 18px;
    color: #333;
    font-weight: 500;
}

/* 登录选项 */
.login-options {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.login-option {
    flex: 1;
    border: 2px solid rgba(224, 224, 224, 0.6);
    border-radius: 16px;
    padding: 24px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    text-align: center;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.login-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(24, 144, 255, 0.05) 0%, rgba(22, 93, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.login-option:hover {
    border-color: rgba(24, 144, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(24, 144, 255, 0.15);
}

.login-option:hover::before {
    opacity: 1;
}

.login-option.selected {
    border-color: #1890ff;
    background: linear-gradient(135deg, rgba(24, 144, 255, 0.1) 0%, rgba(22, 93, 255, 0.05) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(24, 144, 255, 0.2);
}

.login-option.selected::before {
    opacity: 1;
}

.option-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.login-icon {
    width: 48px;
    height: 48px;
}

.login-text {
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

.check-mark {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 20px;
    height: 20px;
    background: #1890ff;
    color: white;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

.login-option.selected .check-mark {
    display: flex;
}

/* 区域选择器 */
.region-selector {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    animation: slideInLeft 0.5s ease-out;
}

.region-selector label {
    color: #4a5568;
    white-space: nowrap;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.region-selector select {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid rgba(24, 144, 255, 0.2);
    border-radius: 8px;
    font-size: 14px;
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1), inset 0 1px 0 rgba(255,255,255,0.8);
    transition: all 0.3s ease;
    cursor: pointer;
    appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 4 5"><path fill="%23666" d="M2 0L0 2h4zm0 5L0 3h4z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 12px;
    padding-right: 40px;
}

.region-selector select:hover {
    border-color: #1890ff;
    box-shadow: 0 4px 12px rgba(24, 144, 255, 0.2), inset 0 1px 0 rgba(255,255,255,0.9);
    transform: translateY(-1px);
}

.region-selector select:focus {
    outline: none;
    border-color: #1890ff;
    box-shadow: 0 0 0 3px rgba(24, 144, 255, 0.2), 0 4px 12px rgba(24, 144, 255, 0.3);
    transform: translateY(-1px);
}

.region-selector select option {
    padding: 8px 12px;
    background: white;
    color: #333;
}

.custom-region {
    color: #1890ff;
    text-decoration: none;
    font-size: 14px;
    white-space: nowrap;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.custom-region::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(24, 144, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.custom-region:hover {
    background: rgba(24, 144, 255, 0.1);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(24, 144, 255, 0.2);
}

.custom-region:hover::before {
    left: 100%;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* 企业微信ID输入 */
.wework-input {
    margin-bottom: 20px;
}

.wework-input input {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid rgba(217, 217, 217, 0.6);
    border-radius: 12px;
    font-size: 15px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.9) 100%);
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    position: relative;
}

.wework-input input::placeholder {
    color: #94a3b8;
    transition: color 0.3s ease;
}

.wework-input input:hover {
    border-color: rgba(24, 144, 255, 0.4);
    box-shadow: 0 4px 12px rgba(24, 144, 255, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transform: translateY(-1px);
}

.wework-input input:focus {
    outline: none;
    border-color: #1890ff;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 0 0 3px rgba(24, 144, 255, 0.2), 0 4px 12px rgba(24, 144, 255, 0.15);
    transform: translateY(-1px);
}

.wework-input input:focus::placeholder {
    color: #cbd5e1;
}

/* 微信验证码输入 */
.wechat-captcha {
    margin-bottom: 20px;
    animation: slideInUp 0.5s ease-out;
}

.wechat-captcha input {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid rgba(217, 217, 217, 0.6);
    border-radius: 12px;
    font-size: 15px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.9) 100%);
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    position: relative;
}

.wechat-captcha input::placeholder {
    color: #94a3b8;
    transition: color 0.3s ease;
}

.wechat-captcha input:hover {
    border-color: rgba(24, 144, 255, 0.4);
    box-shadow: 0 4px 12px rgba(24, 144, 255, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transform: translateY(-1px);
}

.wechat-captcha input:focus {
    outline: none;
    border-color: #1890ff;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 0 0 3px rgba(24, 144, 255, 0.2), 0 4px 12px rgba(24, 144, 255, 0.15);
    transform: translateY(-1px);
}

.wechat-captcha input:focus::placeholder {
    color: #cbd5e1;
}

/* 企业微信验证码输入 */
.wework-captcha {
    margin-bottom: 20px;
    animation: slideInUp 0.5s ease-out;
}

.wework-captcha input {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid rgba(217, 217, 217, 0.6);
    border-radius: 12px;
    font-size: 15px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.9) 100%);
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    position: relative;
}

.wework-captcha input::placeholder {
    color: #94a3b8;
    transition: color 0.3s ease;
}

.wework-captcha input:hover {
    border-color: rgba(24, 144, 255, 0.4);
    box-shadow: 0 4px 12px rgba(24, 144, 255, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transform: translateY(-1px);
}

.wework-captcha input:focus {
    outline: none;
    border-color: #1890ff;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 0 0 3px rgba(24, 144, 255, 0.2), 0 4px 12px rgba(24, 144, 255, 0.15);
    transform: translateY(-1px);
}

.wework-captcha input:focus::placeholder {
    color: #cbd5e1;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 验证码输入组样式 */
.captcha-input-group {
    display: flex;
    gap: 12px;
    align-items: center;
    width: 100%;
}

.captcha-input-group input {
    flex: 1;
    margin-bottom: 0;
}

.captcha-submit-btn {
    padding: 12px 20px;
    background: linear-gradient(135deg, #1890ff 0%, #165dff 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(24, 144, 255, 0.3);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.captcha-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.captcha-submit-btn:hover {
    background: linear-gradient(135deg, #165dff 0%, #1347d4 100%);
    box-shadow: 0 4px 16px rgba(24, 144, 255, 0.4);
    transform: translateY(-2px);
}

.captcha-submit-btn:hover::before {
    left: 100%;
}

.captcha-submit-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(24, 144, 255, 0.3);
}

/* 获取二维码按钮 */
.qr-button-container {
    margin-bottom: 20px;
}

.qr-button {
    width: 100%;
    padding: 14px 20px;
    background: linear-gradient(135deg, #1890ff 0%, #165dff 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(24, 144, 255, 0.3), 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.qr-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
}

.qr-button:hover {
    background: linear-gradient(135deg, #40a9ff 0%, #1890ff 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(24, 144, 255, 0.4), 0 4px 8px rgba(0, 0, 0, 0.15);
}

.qr-button:hover::before {
    left: 100%;
}

.qr-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(24, 144, 255, 0.3);
    transition: all 0.1s ease;
}

.qr-button:disabled {
    background: linear-gradient(135deg, #d9d9d9 0%, #bfbfbf 100%);
    cursor: not-allowed;
    transform: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.qr-button:disabled::before {
    display: none;
}

/* 二维码显示区域 */
.qr-display {
    text-align: center;
}

.qr-tip {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.qr-container {
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
}

.qr-container img {
    width: 200px;
    height: 200px;
    border-radius: 8px;
    display: block;
}

.refresh-btn {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 30px;
    height: 30px;
    background-color: rgb(22, 93, 255);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px;
    z-index: 10;
    font-size: 0;
}

.refresh-btn svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    stroke-width: 4;
    fill: none;
}

.refresh-btn:hover {
    background-color: rgb(64, 169, 255);
    transform: scale(1.1);
    box-shadow: rgba(0, 0, 0, 0.2) 0px 4px 12px;
}

.refresh-btn:active {
    transform: scale(0.95);
    transition: all 0.1s ease;
}

.countdown {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.login-status {
    font-size: 14px;
    color: #1890ff;
    margin-bottom: 10px;
}

/* 状态消息 */
.status-message {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 12px 16px;
    border-radius: 4px;
    color: white;
    font-size: 14px;
    z-index: 1000;
    max-width: 300px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.status-message.show {
    opacity: 1;
}

.status-message.success {
    background: #52c41a;
}

.status-message.error {
    background: #ff4d4f;
}

.status-message.info {
    background: #1890ff;
}

.status-message.warning {
    background: #faad14;
}

/* 隐藏自定义代理链接（根据用户要求） */
.custom-region {
    display: none;
}

/* 响应式设计 */
@media (max-width: 480px) {
    .login-container {
        padding: 20px;
        margin: 10px;
    }
    
    .login-options {
        flex-direction: column;
        gap: 15px;
    }
    
    .login-option {
        padding: 15px;
    }
    
    .login-icon {
        width: 40px;
        height: 40px;
    }
    
    .qr-container img {
        width: 180px;
        height: 180px;
    }
    
    .region-selector {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .region-selector select {
        width: 100%;
    }
}

/* 加载动画 */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #1890ff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-right: 8px;
}

/* 倒计时样式 */
.countdown.warning {
    color: #faad14;
}

.countdown.danger {
    color: #ff4d4f;
}

/* 退出登录按钮 */
.logout-btn {
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    color: #666;
    border: 1px solid #d9d9d9;
    padding: 8px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    opacity: 0.8;
    margin-top: 15px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    transform: translateY(0);
}

.logout-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.logout-btn:hover {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    color: white;
    border-color: #ff6b6b;
    opacity: 1;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}

.logout-btn:hover::before {
    left: 100%;
}

.logout-btn:active {
    background: linear-gradient(135deg, #e55a5a 0%, #d64545 100%);
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(255, 107, 107, 0.4);
    transition: all 0.1s ease;
}

.logout-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.2);
}

/* 退出按钮点击波纹效果 */
@keyframes ripple {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    100% {
        transform: scale(4);
        opacity: 0;
    }
}

.logout-btn::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple 0.6s linear;
    pointer-events: none;
}

/* 企业微信验证码在二维码下方的样式优化 */
.qr-display .wework-captcha {
    margin: 15px 0;
    padding: 0;
}

.qr-display .wework-captcha input {
    width: 100%;
    padding: 10px;
    border: 1px solid #d9d9d9;
    border-radius: 4px;
    font-size: 14px;
    background: #fafafa;
    transition: all 0.3s ease;
}

.qr-display .wework-captcha input:focus {
    border-color: #1890ff;
    background: white;
    box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
    outline: none;
}

/* 增强动画效果 */
.qr-display {
    animation: fadeInUp 0.5s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.qr-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(24, 144, 255, 0.3);
}

.qr-button:active {
    transform: translateY(0);
}

/* 刷新按钮动画优化 */
.refresh-btn {
    transition: all 0.3s ease;
}

.refresh-btn:hover {
    transform: rotate(180deg) scale(1.1);
    background: rgba(24, 144, 255, 0.1);
}

/* 登录状态动画 */
.login-status {
    transition: all 0.3s ease;
}

.login-status.success {
    color: #52c41a;
    animation: pulse 1s ease-in-out;
}

.login-status.error {
    color: #ff4d4f;
    animation: shake 0.5s ease-in-out;
}

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

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* 登录成功页面样式 */
.login-container.success-mode {
    text-align: center;
    padding: 40px 30px;
    max-width: 500px;
}

.login-success-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    animation: successFadeIn 0.8s ease-out;
}

@keyframes successFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.success-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 10px;
}

.success-checkmark {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: block;
    stroke-width: 2;
    stroke: #52c41a;
    stroke-miterlimit: 10;
    box-shadow: inset 0px 0px 0px #52c41a;
    animation: fill 0.4s ease-in-out 0.4s forwards, scale 0.3s ease-in-out 0.9s both;
}

.success-checkmark-circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke-miterlimit: 10;
    stroke: #52c41a;
    fill: none;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.success-checkmark.animate .success-checkmark-circle {
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.success-checkmark-check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

.success-checkmark.animate .success-checkmark-check {
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes scale {
    0%, 100% {
        transform: none;
    }
    50% {
        transform: scale3d(1.1, 1.1, 1);
    }
}

@keyframes fill {
    100% {
        box-shadow: inset 0px 0px 0px 30px #52c41a;
    }
}

.success-title {
    font-size: 28px;
    font-weight: 600;
    color: #333;
    margin: 0;
    animation: slideInUp 0.6s ease-out 0.3s both;
}

.success-message {
    font-size: 16px;
    color: #666;
    margin: 0;
    animation: slideInUp 0.6s ease-out 0.4s both;
}

.success-details {
    background: rgba(82, 196, 26, 0.05);
    border: 1px solid rgba(82, 196, 26, 0.2);
    border-radius: 12px;
    padding: 20px;
    width: 100%;
    max-width: 300px;
    animation: slideInUp 0.6s ease-out 0.5s both;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.detail-item:last-child {
    margin-bottom: 0;
}

.detail-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #333;
    font-weight: 600;
}

.success-actions {
    display: flex;
    gap: 15px;
    width: 100%;
    max-width: 300px;
    animation: slideInUp 0.6s ease-out 0.6s both;
}

.success-btn {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.success-btn.primary {
    background: linear-gradient(135deg, #52c41a 0%, #389e0d 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(82, 196, 26, 0.3);
}

.success-btn.primary:hover {
    background: linear-gradient(135deg, #389e0d 0%, #237804 100%);
    box-shadow: 0 6px 16px rgba(82, 196, 26, 0.4);
    transform: translateY(-2px);
}

.success-btn.secondary {
    background: rgba(255, 255, 255, 0.8);
    color: #666;
    border: 1px solid #d9d9d9;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.success-btn.secondary:hover {
    background: rgba(255, 255, 255, 1);
    border-color: #40a9ff;
    color: #1890ff;
    box-shadow: 0 4px 12px rgba(24, 144, 255, 0.2);
    transform: translateY(-2px);
}

.success-btn:active {
    transform: translateY(0);
}

@keyframes slideInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}