/* 基础样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
    min-height: 100vh;
}

/* 头部样式 */
.header {
    text-align: center;
    color: white;
    margin-bottom: 30px;
    padding: 20px 0;
}

.header h1 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
}

.header h2 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.subtitle {
    font-size: 14px;
    opacity: 0.9;
}

.back-btn {
    color: white;
    text-decoration: none;
    font-size: 14px;
    position: absolute;
    left: 20px;
    top: 20px;
}

/* 套餐卡片 */
.packages {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.package-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
    border: 2px solid transparent;
    overflow: hidden;
}

.package-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* 首页套餐选中效果 */
.package-card.selected {
    border: 3px solid #ff4757;
    transform: translateY(-5px) scale(1.02);
    box-shadow: 
        0 12px 40px rgba(255, 71, 87, 0.5),
        0 0 0 3px rgba(255, 71, 87, 0.2);
    background: linear-gradient(135deg, #ffffff 0%, #fff5f7 100%);
    position: relative;
    animation: pulse 2s infinite;
}

/* 脉冲动画效果 */
@keyframes pulse {
    0% {
        box-shadow: 0 12px 40px rgba(255, 71, 87, 0.5), 0 0 0 3px rgba(255, 71, 87, 0.2);
    }
    50% {
        box-shadow: 0 12px 40px rgba(255, 71, 87, 0.7), 0 0 0 3px rgba(255, 71, 87, 0.4);
    }
    100% {
        box-shadow: 0 12px 40px rgba(255, 71, 87, 0.5), 0 0 0 3px rgba(255, 71, 87, 0.2);
    }
}

/* 推荐套餐基础样式 */
.package-card.popular {
    border: 2px solid #2ed573;
    position: relative;
}

/* 首页推荐套餐选中效果 */
.package-card.popular.selected {
    border: 3px solid #2ed573;
    transform: translateY(-5px) scale(1.02);
    box-shadow: 
        0 12px 40px rgba(46, 213, 115, 0.5),
        0 0 0 3px rgba(46, 213, 115, 0.2);
    background: linear-gradient(135deg, #ffffff 0%, #f0fff4 100%);
}

/* 推荐徽章 - 修复显示完整 */
.popular-badge {
    position: absolute;
    top: 1px;
    right: 15px;
    background: linear-gradient(45deg, #2ed573, #7bed9f);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    box-shadow: 0 2px 6px rgba(46, 213, 115, 0.4);
    z-index: 2;
    white-space: nowrap;
    min-width: 40px;
    text-align: center;
}

/* 折扣徽章 - 修复显示完整 */
.discount-badge {
    position: absolute;
    top: 1px;
    left: 15px;
    background: linear-gradient(45deg, #ff6b6b, #ee5a52);
    color: white;
    padding: 4px 10px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 600;
    box-shadow: 0 2px 6px rgba(255, 107, 107, 0.4);
    z-index: 2;
    white-space: nowrap;
    min-width: 50px;
    text-align: center;
}

.package-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.package-header h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    transition: all 0.3s ease;
    flex: 1;
    margin-right: 10px;
}

/* 价格容器样式 - 修复原价删除线 */
.price-container {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    min-width: 80px;
}

.price-main {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
}

.current-price {
    font-size: 20px;
    font-weight: 700;
    color: #007bff;
    transition: all 0.3s ease;
    line-height: 1.2;
}

.original-price {
    font-size: 12px;
    color: #999;
    text-decoration: line-through; /* 确保删除线显示 */
    font-weight: 500;
    line-height: 1.2;
    position: relative;
}

/* 确保删除线在任何情况下都显示 */
.original-price::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    right: 0;
    height: 1px;
    background: #999;
    transform: translateY(-50%);
}

.package-card p {
    color: #666;
    font-size: 14px;
    position: relative;
    z-index: 1;
    margin-top: 5px;
}

/* 套餐选中状态的价格样式 */
.package-card.selected .current-price {
    color: #ff4757;
    font-weight: bold;
    font-size: 22px;
}

.package-card.popular.selected .current-price {
    color: #2ed573;
}

/* 主要操作按钮区域 */
.primary-action {
    margin-bottom: 15px;
}

.btn-primary-large {
    width: 100%;
    padding: 18px 20px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    position: relative;
    overflow: hidden;
}

.btn-primary-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 107, 107, 0.6);
}

.btn-icon {
    font-size: 20px;
    margin-bottom: 2px;
}

.btn-subtext {
    font-size: 12px;
    font-weight: 400;
    opacity: 0.9;
}

/* 次要操作区域 */
.secondary-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.renew-link, .download-link {
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.renew-link:hover, .download-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.renew-icon, .download-icon {
    font-size: 14px;
}

.action-divider {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
}

/* 续费页面样式 - 移除选中效果 */
.account-check .package-card {
    cursor: pointer;
}

.account-check .package-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* 通用按钮样式 */
.btn {
    padding: 15px 20px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
}

.btn-primary {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 123, 255, 0.4);
}

.btn-secondary {
    background: #6c757d;
    color: white;
    box-shadow: 0 4px 12px rgba(108, 117, 125, 0.3);
}

.btn-secondary:hover {
    background: #545b62;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(108, 117, 125, 0.4);
}

.btn-block {
    display: block;
    width: 100%;
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

.btn-sm {
    padding: 4px 8px;
    font-size: 12px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-right: 5px;
    width: auto;
}

.btn-success { 
    background: #28a745; 
    color: white; 
}

.btn-danger { 
    background: #dc3545; 
    color: white; 
}

/* 下载按钮特殊样式 */
.download-btn, .purchase-download-btn {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 15px 20px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: block;
    text-align: center;
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 15px;
    box-sizing: border-box;
}

.download-btn:hover, .purchase-download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(255, 107, 107, 0.4);
}

/* 表单样式 */
.purchase-form {
    background: white;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.form-group small {
    display: block;
    margin-top: 5px;
    color: #666;
    font-size: 12px;
}

/* 订单摘要 */
.order-summary, .account-check, .success-page {
    background: white;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.summary-item, .info-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #f8f9fa;
}

.summary-item:last-child, .info-item:last-child {
    border-bottom: none;
}

/* 结果提示 */
.result {
    text-align: center;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.result.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.result.warning {
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffeaa7;
}

/* 成功页面 */
.success-icon {
    font-size: 48px;
    text-align: center;
    margin-bottom: 20px;
}

.success-page h2 {
    text-align: center;
    color: #28a745;
    margin-bottom: 20px;
}

.next-steps, .contact-info {
    margin: 20px 0;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

.contact {
    font-weight: 600;
    color: #007bff;
    text-align: center;
}

.status-success {
    color: #28a745;
    font-weight: 600;
}

.status-warning {
    color: #ffc107;
    font-weight: 600;
}

.status-error {
    color: #dc3545;
    font-weight: 600;
}

/* 特性列表 */
.features {
    background: white;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.features h3 {
    margin-bottom: 15px;
    color: #333;
}

.features ul {
    list-style: none;
}

.features li {
    padding: 8px 0;
    font-size: 14px;
}

/* 通知区域 */
.notice {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
}

.notice h4 {
    color: #856404;
    margin-bottom: 10px;
}

.notice p {
    font-size: 14px;
    color: #856404;
    margin-bottom: 5px;
}

/* 页脚 */
.footer {
    text-align: center;
    color: white;
    font-size: 14px;
    opacity: 0.8;
    margin-top: 30px;
}

/* 响应式调整 */
@media (max-width: 480px) {
    .container {
        padding: 15px;
    }
    
    .header h1 {
        font-size: 20px;
    }
    
    .package-header h3 {
        font-size: 16px;
    }
    
    .current-price {
        font-size: 18px;
    }
    
    .original-price {
        font-size: 11px;
    }
    
    .popular-badge, .discount-badge {
        font-size: 10px;
        padding: 3px 8px;
    }
    
    .btn {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .btn-primary-large {
        padding: 16px 18px;
        font-size: 16px;
    }
    
    .success-icon {
        font-size: 40px;
    }
    
    .secondary-actions {
        gap: 10px;
    }
    
    .renew-link, .download-link {
        font-size: 13px;
        padding: 6px 10px;
    }
}

/* 管理员后台通用样式 */
.admin-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

.admin-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-bottom: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admin-header h2 {
    margin: 0;
    font-size: 24px;
    font-weight: 600;
}

.admin-nav {
    display: flex;
    gap: 15px;
    align-items: center;
}

.admin-nav a {
    color: white;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
    background: rgba(255,255,255,0.1);
}

.admin-nav a:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-1px);
}

/* 后台表格样式 */
.filters {
    background: white;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 20px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.filters input, .filters select {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.orders-table, .accounts-table {
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #f0f0f0;
}

th {
    background: #f8f9fa;
    font-weight: 600;
}

.status-badge {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
}

.status-pending { 
    background: #fff3cd; 
    color: #856404; 
}

.status-paid { 
    background: #d4edda; 
    color: #155724; 
}

.status-completed { 
    background: #d1ecf1; 
    color: #0c5460; 
}

.account-info {
    font-family: monospace;
    background: #f8f9fa;
    padding: 2px 6px;
    border-radius: 3px;
    border: 1px solid #e9ecef;
}

/* 仪表板样式 */
.dashboard {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
}

.stat-number {
    font-size: 24px;
    font-weight: bold;
    color: #007bff;
    display: block;
}

.stat-label {
    color: #666;
    font-size: 14px;
}

.recent-orders {
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.order-item:last-child {
    border-bottom: none;
}

.order-info {
    flex: 1;
}

.order-account {
    font-weight: bold;
    margin-bottom: 5px;
}

.order-meta {
    color: #666;
    font-size: 12px;
}

.order-status {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
}

/* 设置页面样式 */
.settings-form {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.form-section {
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 1px solid #f0f0f0;
}

.form-section:last-child {
    border-bottom: none;
}

.form-section h3 {
    margin-bottom: 25px;
    color: #333;
    padding-bottom: 12px;
    border-bottom: 3px solid #667eea;
    font-size: 20px;
    font-weight: 600;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group input, .form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-group input:focus, .form-group select:focus {
    border-color: #667eea;
    outline: none;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.price-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.price-card {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.price-card h4 {
    margin-top: 0;
    margin-bottom: 15px;
    color: #333;
    font-size: 16px;
    font-weight: 600;
}

.price-row {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.price-row .form-group {
    flex: 1;
    margin-bottom: 0;
}

.toggle-switch {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e9ecef;
}

.toggle-label {
    font-weight: 500;
    color: #666;
}

.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 24px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #28a745;
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.message {
    background: #d4edda;
    color: #155724;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    border: 1px solid #c3e6cb;
    font-weight: 500;
}

.config-help {
    background: #e7f3ff;
    border-left: 4px solid #667eea;
    padding: 20px;
    margin: 20px 0;
    border-radius: 8px;
}

.config-help h4 {
    margin-top: 0;
    color: #667eea;
    font-size: 16px;
    font-weight: 600;
}

.config-help ul {
    margin: 10px 0;
    padding-left: 20px;
}

.config-help li {
    margin-bottom: 8px;
    line-height: 1.5;
}

.save-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.save-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

/* 登录页面样式 */
.login-container {
    max-width: 400px;
    margin: 100px auto;
    padding: 20px;
}

.login-form {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* 账号管理样式 */
.account-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    gap: 10px;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    align-items: center;
}

.account-header {
    font-weight: bold;
    background: #f8f9fa;
    border-radius: 4px;
}

.account-row:last-child {
    border-bottom: none;
}

/* 支付页面样式 */
.payment-container {
    max-width: 400px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    text-align: center;
}

.payment-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.payment-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.payment-desc {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.5;
}

.payment-btn {
    display: block;
    width: 100%;
    padding: 15px;
    background: #07c160;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 15px;
    box-shadow: 0 4px 12px rgba(7, 193, 96, 0.3);
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.payment-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(7, 193, 96, 0.4);
}

.payment-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

.payment-btn-secondary {
    background: #6c757d;
    box-shadow: 0 4px 12px rgba(108, 117, 125, 0.3);
}

.payment-btn-secondary:hover {
    background: #545b62;
    box-shadow: 0 6px 18px rgba(108, 117, 125, 0.4);
}

.payment-error {
    background: #f8d7da;
    color: #721c24;
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 20px;
    border: 1px solid #f5c6cb;
}

.payment-success {
    background: #d4edda;
    color: #155724;
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 20px;
    border: 1px solid #c3e6cb;
}

.payment-info {
    background: #d1ecf1;
    color: #0c5460;
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 20px;
    border: 1px solid #bee5eb;
}

.payment-order-info {
    text-align: left;
    background: #f8f9fa;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 20px;
}

.payment-order-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

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

/* 微信分享提示样式 */
.share-notice {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.share-notice h4 {
    margin-bottom: 8px;
    font-size: 16px;
}

.share-notice p {
    margin: 0;
    font-size: 14px;
    opacity: 0.9;
}

/* 下载按钮容器 */
.download-section {
    margin-top: 20px;
    margin-bottom: 20px;
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.action-buttons .btn {
    margin-bottom: 0;
}