/* Web3.0风格 - 全局样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

body {
    background: #F2F5F9;
    color: #333333;
    line-height: 1.6;
    font-size: 16px;
    min-height: 100vh;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: #528BFA;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

a:hover {
    color: #2a6de5;
    transform: translateY(-2px);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 头部样式 - Web3.0风格 */
.header {
    background: #ffffff;
    color: #333333;
    padding: 16px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid #eaeaea;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 16px;
}

.logo a {
    font-size: 28px;
    font-weight: 800;
    color: #333333;
    text-decoration: none;
}

.logo a span {
    color: #528BFA;
}

.slogan {
    font-size: 14px;
    font-weight: 400;
    opacity: 0.8;
    letter-spacing: 0.5px;
    color: #666666;
}

.auth-buttons {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

/* 按钮样式 - Web3.0风格 */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    text-decoration: none;
    white-space: nowrap;
    min-height: 42px;
    gap: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.btn-primary {
    background: #528BFA;
    color: white !important;
    border: 1px solid #528BFA;
}

.btn-primary:hover {
    background: #2a6de5;
    border-color: #2a6de5;
    box-shadow: 0 4px 10px rgba(82, 139, 250, 0.3);
    transform: translateY(-2px);
    color: white !important;
}

.btn-outline {
    background: #ffffff;
    color: #528BFA;
    border: 1px solid #eaeaea;
}

.btn-outline:hover {
    background: #f0f5ff;
    border-color: #528BFA;
    box-shadow: 0 4px 10px rgba(82, 139, 250, 0.2);
    transform: translateY(-2px);
}

.btn-secondary {
    background: #FF9900;
    color: white;
    border: 1px solid #FF9900;
}

.btn-secondary:hover {
    background: #e68a00;
    border-color: #e68a00;
    box-shadow: 0 4px 10px rgba(255, 153, 0, 0.3);
    transform: translateY(-2px);
}

/* Banner区域 - 现代化设计 */
.banner {
    margin: 16px 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(37, 69, 193, 0.1);
    transition: transform 0.3s ease;
}

.banner:hover {
    transform: translateY(-2px);
}

.banner img {
    width: 100%;
    height: auto;
    display: block;
}

/* 搜索区域 - Web3.0风格 */
.search-section {
    background: #ffffff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    margin: 32px 0;
    border: 1px solid #eaeaea;
}

.search-form {
    display: flex;
    max-width: 700px;
    margin: 0 auto;
    gap: 12px;
}

.search-input {
    flex: 1;
    padding: 14px 20px;
    border: 1px solid #eaeaea;
    border-radius: 14px;
    font-size: 16px;
    outline: none;
    transition: all 0.3s ease;
    background: #ffffff;
    color: #333333;
}

.search-input:focus {
    border-color: #528BFA;
    box-shadow: 0 0 0 3px rgba(82, 139, 250, 0.2);
}

.search-btn {
    padding: 14px 24px;
    background: #528BFA;
    color: white;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 100px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.search-btn:hover {
    background: #2a6de5;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(82, 139, 250, 0.3);
}

/* 资源表格 - 现代化设计 */
.resources-section {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(37, 69, 193, 0.08);
    margin: 32px 0 24px 0;
    border: 1px solid rgba(37, 69, 193, 0.1);
}

.section-title {
    font-size: 20px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(37, 69, 193, 0.1);
    color: #2545C1;
    font-weight: 600;
    letter-spacing: -0.5px;
}

/* 资源表格样式 - 紧凑设计 */
.resources-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    margin-bottom: 16px;
    font-size: 13px;
}

.resources-table th, 
.resources-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid rgba(37, 69, 193, 0.08);
    word-wrap: break-word;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: middle;
}

.resources-table th {
    background: rgba(37, 69, 193, 0.05);
    font-weight: 600;
    color: #2545C1;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.resources-table tr {
    transition: all 0.2s ease;
}

.resources-table tr:hover {
    background: rgba(37, 69, 193, 0.02);
    transform: translateX(2px);
}

/* 固定各列宽度 */
.resources-table th:nth-child(1),
.resources-table td:nth-child(1) {
    width: 12%;
}

.resources-table th:nth-child(2),
.resources-table td:nth-child(2) {
    width: 25%;
}

.resources-table th:nth-child(3),
.resources-table td:nth-child(3) {
    width: 48%;
}

.resources-table th:nth-child(4),
.resources-table td:nth-child(4) {
    width: 15%;
}

.view-link {
    color: #2545C1;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 8px;
    background: rgba(37, 69, 193, 0.1);
    transition: all 0.2s ease;
    display: inline-block;
    font-size: 12px;
}

.view-link:hover {
    background: rgba(37, 69, 193, 0.2);
    transform: translateY(-1px);
}

/* 分页导航 - 现代化设计 */
.pagination {
    display: flex;
    justify-content: center;
    list-style: none;
    margin-top: 16px;
    gap: 4px;
    padding: 0;
}

.pagination li {
    margin: 0;
}

.pagination a,
.pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(37, 69, 193, 0.1);
    border-radius: 8px;
    transition: all 0.2s ease;
    font-size: 13px;
    min-width: 36px;
    height: 36px;
    text-decoration: none;
    color: #333;
}

.pagination a:hover {
    background: rgba(37, 69, 193, 0.1);
    border-color: rgba(37, 69, 193, 0.2);
    transform: translateY(-1px);
    color: #333;
    text-decoration: none;
}

.pagination .active a {
    background: linear-gradient(135deg, #2545C1 0%, #1a2f8a 100%);
    color: white;
    border-color: #2545C1;
    box-shadow: 0 2px 8px rgba(37, 69, 193, 0.3);
}

.pagination .disabled {
    background: #e5e7eb;
    color: #9ca3af;
    cursor: not-allowed;
    opacity: 0.6;
}

/* 底部广告 */
.footer-ad {
    margin: 16px 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(37, 69, 193, 0.1);
    transition: transform 0.3s ease;
}

.footer-ad:hover {
    transform: translateY(-2px);
}

/* 客服区域 - 现代化设计 */
.customer-service {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 16px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(37, 69, 193, 0.15);
    text-align: center;
    z-index: 1000;
    border: 1px solid rgba(37, 69, 193, 0.1);
    transition: all 0.3s ease;
}

.customer-service:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(37, 69, 193, 0.2);
}

.customer-service img {
    width: 100px;
    height: 100px;
    margin-bottom: 8px;
    border-radius: 8px;
}

.customer-service p {
    font-size: 12px;
    color: #2545C1;
    font-weight: 500;
    margin: 0;
}

.customer-service a {
    color: #2545C1;
    text-decoration: none;
}

/* 登录模态框 - Web3.0风格 */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(37, 69, 193, 0.2);
    backdrop-filter: blur(10px);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 32px;
    border-radius: 20px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 20px 60px rgba(37, 69, 193, 0.2);
    position: relative;
    border: 1px solid rgba(37, 69, 193, 0.1);
}

.close-modal {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    transition: color 0.2s ease;
}

.close-modal:hover {
    color: #2545C1;
}

.modal-title {
    font-size: 20px;
    margin-bottom: 20px;
    color: #2545C1;
    text-align: center;
    font-weight: 600;
}

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

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    color: #1a1a1a;
    font-size: 13px;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid rgba(37, 69, 193, 0.1);
    border-radius: 12px;
    font-size: 14px;
    transition: all 0.2s ease;
    background: rgba(255, 255, 255, 0.9);
}

.form-control:focus {
    border-color: #2545C1;
    outline: none;
    box-shadow: 0 0 0 4px rgba(37, 69, 193, 0.1);
}

.submit-btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #2545C1 0%, #1a2f8a 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 8px;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #1a2f8a 0%, #0f1f5a 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 69, 193, 0.3);
}

/* 认证页面样式 */
.auth-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #F6F8FF 0%, #ffffff 100%);
    padding: 20px;
}

.auth-box {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(37, 69, 193, 0.1);
    padding: 40px;
    width: 100%;
    max-width: 450px;
    border: 1px solid rgba(37, 69, 193, 0.1);
}

.auth-header {
    text-align: center;
    margin-bottom: 30px;
}

.auth-header h1 {
    color: #2545C1;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.auth-header p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

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

.alert {
    padding: 12px 16px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.alert-error {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border: 1px solid rgba(220, 53, 69, 0.2);
}

.alert-success {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
    border: 1px solid rgba(40, 167, 69, 0.2);
}

.form-help {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    color: #666;
}

.auth-footer {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(37, 69, 193, 0.1);
}

.auth-footer p {
    margin: 8px 0;
    font-size: 14px;
    color: #666;
}

.auth-footer a {
    color: #2545C1;
    font-weight: 500;
}

.auth-footer a:hover {
    text-decoration: underline;
}

/* 用户信息样式 */
.user-info {
    display: flex;
    align-items: center;
    font-size: 13px;
    gap: 12px;
}

.username {
    font-weight: 500;
}

.logout-link {
    text-decoration: none;
    transition: all 0.2s ease;
    padding: 6px 12px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
}

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

.vip-badge {
    display: inline-block;
    margin-left: 6px;
    padding: 2px 6px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #1a1a1a;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* 后台管理样式 */
.admin-section {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(37, 69, 193, 0.1);
    padding: 30px;
    margin: 20px 0;
    border: 1px solid rgba(37, 69, 193, 0.1);
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(37, 69, 193, 0.1);
}

.admin-header h1 {
    color: #2545C1;
    font-size: 24px;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.admin-actions {
    display: flex;
    gap: 10px;
}

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

.stat-card {
    background: linear-gradient(135deg, #F6F8FF 0%, #ffffff 100%);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    border: 1px solid rgba(37, 69, 193, 0.1);
    box-shadow: 0 8px 32px rgba(37, 69, 193, 0.08);
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: #2545C1;
    margin-bottom: 8px;
}

.stat-number.used {
    color: #dc3545;
}

.stat-number.unused {
    color: #28a745;
}

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

.table-container {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(37, 69, 193, 0.08);
    margin-bottom: 20px;
}

/* 后台管理表格样式 */
.admin-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 16px;
    font-size: 13px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(37, 69, 193, 0.08);
}

.admin-table th, 
.admin-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid rgba(37, 69, 193, 0.08);
    vertical-align: middle;
}

.admin-table th {
    background: rgba(37, 69, 193, 0.05);
    font-weight: 600;
    color: #2545C1;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.admin-table tr:hover {
    background: rgba(37, 69, 193, 0.02);
}

.invite-code {
    font-family: 'Courier New', monospace;
    font-weight: 600;
    color: #2545C1;
    background: rgba(37, 69, 193, 0.1);
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 13px;
}

.status-badge {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-badge.used {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

.status-badge.unused {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.used-row {
    background: rgba(220, 53, 69, 0.05);
}

.text-center {
    text-align: center;
}

.pagination-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

/* 操作按钮样式 */
.action-buttons {
    display: flex;
    gap: 6px;
}

.btn-edit, .btn-delete {
    padding: 6px 10px;
    font-size: 11px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    font-weight: 500;
}

.btn-edit {
    background: linear-gradient(135deg, #2545C1 0%, #1a2f8a 100%);
    color: white;
}

.btn-edit:hover {
    background: linear-gradient(135deg, #1a2f8a 0%, #0f1f5a 100%);
    transform: translateY(-1px);
}

.btn-delete {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
}

.btn-delete:hover {
    background: linear-gradient(135deg, #c0392b 0%, #a93226 100%);
    transform: translateY(-1px);
}

/* 后台页面特定样式 */
.admin-container {
    padding: 24px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(37, 69, 193, 0.08);
    border: 1px solid rgba(37, 69, 193, 0.1);
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(37, 69, 193, 0.1);
}

.admin-header h1 {
    margin: 0;
    font-size: 24px;
    color: #1f2937;
    display: flex;
    align-items: center;
    gap: 8px;
}

.admin-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.admin-section {
    margin-top: 20px;
}

/* 选项卡样式 */
.tabs {
    display: flex;
    border-bottom: 1px solid rgba(37, 69, 193, 0.1);
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 12px 12px 0 0;
    padding: 4px;
}

.tab {
    background: none;
    border: none;
    padding: 12px 20px;
    cursor: pointer;
    border-radius: 8px;
    color: #6b7280;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    position: relative;
}

.tab:hover {
    color: #374151;
    background: rgba(37, 69, 193, 0.05);
}

.tab.active {
    color: #2545C1;
    background: rgba(37, 69, 193, 0.1);
    box-shadow: 0 2px 8px rgba(37, 69, 193, 0.15);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.action-panel {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid rgba(37, 69, 193, 0.1);
    border-radius: 14px;
    padding: 16px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(37, 69, 193, 0.05);
}

.action-panel h2 {
    margin: 0 0 12px 0;
    color: #1f2937;
    font-size: 18px;
}

.actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 12px;
}

/* 底部样式 - Web3.0风格 */
.site-footer {
    background: linear-gradient(135deg, #2545C1 0%, #1a2f8a 100%);
    color: white;
    padding: 24px 0;
    text-align: center;
    margin-top: 24px;
    box-shadow: 0 -4px 20px rgba(37, 69, 193, 0.15);
}

.footer-content {
    max-width: 1000px;
    margin: 0 auto;
    line-height: 1.6;
    font-size: 14px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    align-items: center;
    margin-top: 8px;
}

.footer-nav a {
    color: #FFD700;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.footer-nav a::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;
}

.footer-nav a:hover::before {
    left: 100%;
}

.footer-nav a:hover {
    color: #FFA500;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.site-footer .copyright {
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    margin-bottom: 4px;
}

/* 无序号步骤样式 */
.steps-plain {
    margin: 16px 0;
}

.step-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    padding: 12px 16px;
    background: rgba(37, 69, 193, 0.05);
    border-radius: 12px;
    transition: all 0.2s ease;
    border: 1px solid rgba(37, 69, 193, 0.1);
}

.step-item:hover {
    background: rgba(37, 69, 193, 0.1);
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(37, 69, 193, 0.1);
}

.step-icon {
    width: 20px;
    text-align: center;
    margin-right: 12px;
    color: #2545C1;
    font-size: 16px;
    font-weight: 600;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .header-container {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .logo {
        justify-content: center;
    }
    
    .auth-buttons {
        margin-top: 0;
    }
    
    .search-form {
        flex-direction: column;
        gap: 8px;
    }
    
    .search-input {
        border-radius: 12px;
    }
    
    .search-btn {
        border-radius: 12px;
    }
    
    .resources-table {
        display: block;
        overflow-x: auto;
        font-size: 12px;
    }
    
    .resources-table th,
    .resources-table td {
        padding: 8px 12px;
    }
    
    .customer-service {
        right: 12px;
        bottom: 12px;
        padding: 12px;
    }
    
    .customer-service img {
        width: 80px;
        height: 80px;
    }
    
    .modal-content {
        padding: 24px;
        margin: 0 16px;
        border-radius: 16px;
    }
    
    .site-footer {
        padding: 20px 16px;
        font-size: 12px;
    }
    
    .footer-nav {
        gap: 16px;
        flex-direction: column;
    }
    
    .footer-nav a {
        padding: 10px 20px;
        width: 100%;
        text-align: center;
        max-width: 200px;
    }
    
    .step-item {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    .step-icon {
        margin-right: 8px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .btn {
        padding: 6px 12px;
        font-size: 12px;
        min-height: 32px;
    }
    
    .search-section {
        padding: 16px;
    }
    
    .resources-section {
        padding: 16px;
    }
    
    .section-title {
        font-size: 18px;
    }
    
    .pagination a {
        padding: 6px 8px;
        min-width: 32px;
        height: 32px;
        font-size: 12px;
    }
}

/* 论坛风格资源列表样式 */
.section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    color: #2545C1;
    font-size: 20px;
    font-weight: 600;
}

.section-title i {
    color: #2545C1;
}

.resource-count {
    font-size: 14px;
    color: #666;
    font-weight: 400;
}

.forum-resources {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.resource-item {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 8px 32px rgba(37, 69, 193, 0.08);
    border: 1px solid rgba(37, 69, 193, 0.1);
    transition: all 0.3s ease;
}

.resource-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(37, 69, 193, 0.12);
    border-color: rgba(37, 69, 193, 0.2);
}

.resource-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
    gap: 16px;
}

.resource-id {
    flex-shrink: 0;
}

.id-badge {
    background: linear-gradient(135deg, #2545C1 0%, #1a2f8a 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(37, 69, 193, 0.3);
}

.resource-title {
    flex: 1;
}

.resource-title h3 {
    margin: 0;
    color: #1a1a1a;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.3;
}

.resource-actions {
    flex-shrink: 0;
}

.download-btn, .login-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.download-btn {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.3);
}

.download-btn:hover {
    background: linear-gradient(135deg, #20c997 0%, #17a2b8 100%);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.4);
}

.login-btn {
    background: linear-gradient(135deg, #2545C1 0%, #1a2f8a 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(37, 69, 193, 0.3);
}

.login-btn:hover {
    background: linear-gradient(135deg, #1a2f8a 0%, #0f1f5a 100%);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 69, 193, 0.4);
}

.resource-content {
    margin-bottom: 8px;
}

.resource-description {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: #666;
    font-size: 13px;
    line-height: 1.4;
}

.resource-description i {
    color: #2545C1;
    margin-top: 2px;
    flex-shrink: 0;
}

.resource-footer {
    border-top: 1px solid rgba(37, 69, 193, 0.1);
    padding-top: 12px;
}

.resource-meta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #888;
    font-size: 12px;
}

.meta-item i {
    color: #2545C1;
}

.no-resources {
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

.no-resources i {
    font-size: 48px;
    color: #ccc;
    margin-bottom: 16px;
}

.no-resources p {
    font-size: 16px;
    margin: 0;
}

/* 关于页面样式 */
.about-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 2rem;
}

.about-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 8px 32px rgba(37, 69, 193, 0.08);
    border: 1px solid rgba(37, 69, 193, 0.1);
    transition: all 0.3s ease;
}

.about-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(37, 69, 193, 0.12);
}

.about-card h2 {
    color: #2545C1;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.about-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 16px;
}

.contact-actions {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

/* 激活卡密区域样式 */
.activate-section {
    margin: 24px 0;
}

.activate-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    border: 1px solid rgba(37, 69, 193, 0.1);
    box-shadow: 0 8px 32px rgba(37, 69, 193, 0.08);
    transition: all 0.3s ease;
}

.activate-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(37, 69, 193, 0.12);
}

.activate-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #2545C1;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.activate-card p {
    color: #6b7280;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.5;
}

.activate-card .btn {
    font-size: 14px;
    padding: 12px 24px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* 激活表单样式 */
.activate-form-container {
    max-width: 500px;
    margin: 0 auto;
}

.activate-form-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid rgba(37, 69, 193, 0.1);
    box-shadow: 0 8px 32px rgba(37, 69, 193, 0.08);
    transition: all 0.3s ease;
}

.activate-form-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(37, 69, 193, 0.12);
}

.activate-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-weight: 600;
    color: #2545C1;
    font-size: 14px;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 14px;
    transition: all 0.2s ease;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.form-input:focus {
    outline: none;
    border-color: #2545C1;
    box-shadow: 0 0 0 3px rgba(37, 69, 193, 0.1);
    background: rgba(255, 255, 255, 0.95);
}

.form-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.current-vip-info {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 12px;
    border: 1px solid #cbd5e1;
    color: #475569;
    font-size: 14px;
    font-weight: 500;
}

.current-vip-info i {
    color: #f59e0b;
    font-size: 16px;
}

/* 联系页面样式 */
.contact-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 2rem;
}

/* 条款页面样式 */
.terms-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 2rem;
}

.terms-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 8px 32px rgba(37, 69, 193, 0.08);
    border: 1px solid rgba(37, 69, 193, 0.1);
    transition: all 0.3s ease;
}

.terms-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(37, 69, 193, 0.12);
}

.terms-card h2 {
    color: #2545C1;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.terms-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 16px;
}

.contact-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 8px 32px rgba(37, 69, 193, 0.08);
    border: 1px solid rgba(37, 69, 193, 0.1);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(37, 69, 193, 0.12);
}

.contact-card h2 {
    color: #2545C1;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 16px;
}

.qr-placeholder {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.qr-code {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px;
    background: rgba(37, 69, 193, 0.05);
    border-radius: 12px;
    border: 2px dashed rgba(37, 69, 193, 0.2);
}

.qr-code i {
    font-size: 32px;
    color: #2545C1;
}

.qr-code span {
    color: #666;
    font-size: 14px;
    font-weight: 500;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 16px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: rgba(37, 69, 193, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(37, 69, 193, 0.1);
}

.info-item i {
    color: #2545C1;
    font-size: 16px;
}

.info-item span {
    color: #333;
    font-weight: 500;
}

/* 按钮禁用状态 */
.btn-disabled {
    background: #e5e7eb;
    color: #9ca3af;
    cursor: not-allowed;
    opacity: 0.6;
}

.btn-disabled:hover {
    background: #e5e7eb;
    color: #5d6166;
    transform: none;
    box-shadow: none;
}

/* VIP销售页面样式 */
.vip-status-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 8px 32px rgba(37, 69, 193, 0.08);
    border: 1px solid rgba(37, 69, 193, 0.1);
    text-align: center;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.vip-status-card.vip {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #1a1a1a;
    border-color: #FFD700;
}

.vip-status-card h2 {
    color: #2545C1;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.vip-status-card.vip h2 {
    color: #1a1a1a;
}

.vip-status-card p {
    color: #666;
    margin: 0;
    font-size: 14px;
}

.vip-status-card.vip p {
    color: #333;
}

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

.pricing-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(37, 69, 193, 0.1);
    box-shadow: 0 8px 32px rgba(37, 69, 193, 0.08);
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(37, 69, 193, 0.15);
}

.pricing-card.popular {
    border-color: #2545C1;
    border-width: 2px;
    box-shadow: 0 8px 32px rgba(37, 69, 193, 0.2);
}

.pricing-card.popular::before {
    content: '推荐';
    position: absolute;
    top: -1px;
    right: 20px;
    background: linear-gradient(135deg, #2545C1 0%, #1a2f8a 100%);
    color: white;
    padding: 4px 12px;
    font-size: 12px;
    border-radius: 0 0 8px 8px;
    font-weight: 600;
}

.plan-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2545C1;
}

.plan-price {
    font-size: 32px;
    font-weight: 700;
    color: #2545C1;
    margin-bottom: 4px;
}

.plan-currency {
    font-size: 14px;
    color: #666;
    vertical-align: top;
}

.plan-days {
    color: #666;
    margin-bottom: 16px;
    font-size: 14px;
}

.plan-description {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
    font-size: 14px;
}

.plan-features {
    list-style: none;
    margin: 0 0 24px 0;
    padding: 0;
    text-align: left;
}

.plan-features li {
    padding: 8px 0;
    color: #666;
    position: relative;
    padding-left: 24px;
    font-size: 14px;
    line-height: 1.4;
}

.plan-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2545C1;
    font-weight: 600;
    font-size: 16px;
}

.vip-expires {
    font-size: 12px;
    color: #dbe7ff;
    margin-left: 8px;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .resource-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .resource-actions {
        align-self: stretch;
    }
    
    .download-btn, .login-btn {
        width: 100%;
        justify-content: center;
    }
    
    .resource-meta {
        flex-direction: column;
        gap: 8px;
    }
    
    .about-content, .contact-content, .terms-content {
        gap: 16px;
    }
    
    .about-card, .contact-card, .terms-card {
        padding: 16px;
    }
    
    .contact-actions {
        flex-direction: column;
    }
    
    .contact-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.popular {
        transform: none;
    }
    
    .activate-form-container {
        max-width: 100%;
        padding: 0 16px;
    }
    
    .activate-form-card {
        padding: 24px 20px;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .form-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .vip-expires {
        display: block;
        margin-left: 0;
        margin-top: 4px;
    }
}