/* 基础样式 */
:root {
    --primary-color: #007aff;
    --secondary-color: #5856d6;
    --accent-color: #ff2d55;
    --text-color: #e8e8e8;
    --light-text: #a0a0a5;
    --background-color: #262a35;
    --card-background: #2e3342;
    --border-radius: 12px;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    --transition: all 0.3s ease;
    --status-active: #34c759;
    --status-warning: #ff9500;
    --status-error: #ff3b30;
    --warning-color: #ff3b30;
    --redirect-color: #ff6b6b;
    --border-color: #404554;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: var(--primary-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

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

/* 按钮样式 */
.btn {
    display: inline-block;
    padding: 10px 16px;
    background: transparent;
    border: 1px solid var(--light-text);
    border-radius: 24px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-color);
    cursor: pointer;
    transition: var(--transition);
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

/* 头部样式简化 */
header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    margin-bottom: 20px;
}

.logo {
    display: flex;
    align-items: center;
    font-weight: bold;
    flex-direction: column;
}

.title-row {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.logo i {
    font-size: 32px;
    color: var(--primary-color);
    margin-right: 10px;
    animation: rocket 2s infinite;
}

.site-name {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0;
    letter-spacing: 2px;
    text-shadow: 1px 1px 3px rgba(0, 122, 255, 0.2);
}

.logo h1 {
    font-size: 22px;
    font-weight: 600;
}

/* 响应式设计优化 */
@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        padding: 40px 0;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-content h2 {
        font-size: 36px;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    header {
        padding: 12px 0;
    }
    
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: white;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        transform: translateY(-10px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 99;
    }
    
    .main-nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .main-nav ul {
        flex-direction: column;
        width: 100%;
        padding: 16px 0;
    }
    
    .main-nav ul li {
        margin: 0;
        width: 100%;
        text-align: center;
    }
    
    .main-nav ul li a {
        display: block;
        padding: 12px 0;
        font-size: 16px;
    }
    
    .main-nav ul li a.active:after,
    .main-nav ul li a:hover:after {
        display: none;
    }
    
    .main-nav ul li a.active {
        background-color: rgba(0, 122, 255, 0.1);
    }
    
    .hero-content h2 {
        font-size: 30px;
    }
    
    .accounts-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 18px;
    }
    
    .site-name {
        font-size: 26px;
    }
    
    .title-row {
        margin-bottom: 8px;
    }
    
    .mobile-menu-toggle {
        font-size: 18px;
        padding: 6px;
    }
    
    .hero-content h2 {
        font-size: 26px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    .accounts-grid {
        grid-template-columns: 1fr;
    }
    
    .account-meta {
        flex-direction: column;
        gap: 8px;
    }
    
    .form-links {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
    
    .credential-value span {
        font-size: 12px;
    }
    
    .copy-actions {
        flex-direction: column;
    }
    
    .credential-row {
        padding: 8px;
    }
    
    .label {
        font-size: 14px;
        width: 50px;
    }
    
    .value {
        font-size: 13px;
    }
}

/* 账户状态和更新时间 */
.account-status {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 13px;
}

.status-badge {
    padding: 3px 8px;
    border-radius: 10px;
    font-weight: 500;
    background-color: var(--status-active);
    color: white;
}

.status-badge.warning {
    background-color: var(--status-warning);
}

.status-badge.error {
    background-color: var(--status-error);
}

.update-time {
    color: var(--light-text);
}

/* 加载状态 */
.loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
    width: 100%;
    color: var(--light-text);
    min-height: 300px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    right: 0;
    margin: 0 auto;
}

.loading i {
    font-size: 36px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.loading.error i {
    color: var(--status-error);
}

.loading span {
    font-size: 16px;
}

.retry-btn {
    margin-top: 16px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 20px;
    padding: 8px 16px;
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
}

.retry-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

/* 账户列表 */
.account-list {
    /* padding: 20px 0 60px; */
}

.accounts-container {
    position: relative;
    min-height: 400px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
    gap: 15px;
}

.section-header h2 {
    font-size: 28px;
    font-weight: 600;
}

.filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-btn {
    padding: 8px 16px;
    border: none;
    background-color: var(--background-color);
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn.active {
    background-color: var(--primary-color);
    color: white;
}

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

/* 账户卡片 */
.account-card {
    background-color: var(--card-background);
    border-radius: var(--border-radius);
    padding: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-color);
}

.account-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
    border-color: rgba(0, 122, 255, 0.3);
}

.account-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
}

/* 凭证样式 */
.credentials {
    margin-bottom: 20px;
    flex: 1;
}

.credential-row {
    display: flex;
    margin-bottom: 12px;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.15);
    border-radius: 6px;
    align-items: center;
}

.credential-row:last-child {
    margin-bottom: 0;
}

.label {
    font-weight: 500;
    width: 60px;
    font-size: 15px;
    color: var(--text-color);
}

.value {
    font-family: monospace;
    font-size: 15px;
    flex: 1;
    word-break: break-all;
}

.value.password {
    letter-spacing: 2px;
    font-size: 16px;
    font-weight: bold;
    color: var(--light-text);
}

/* 复制按钮 */
.copy-actions {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-top: auto;
}

.copy-btn {
    flex: 1;
    background-color: var(--background-color);
    color: var(--text-color);
    border: none;
    border-radius: 6px;
    padding: 10px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.copy-btn.password-btn {
    background-color: rgba(0, 122, 255, 0.1);
    color: var(--primary-color);
}

.copy-btn i {
    margin-left: 6px;
}

.copy-btn:hover {
    background-color: var(--primary-color);
    color: white;
}

.copy-btn.copied {
    background-color: #34c759;
    color: white;
}

.account-meta {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--light-text);
}

.account-meta span i {
    margin-right: 5px;
}

.load-more {
    display: block;
    margin: 20px auto 0;
}

/* 页脚 */
footer {
    background-color: #fff;
    padding: 50px 0 20px;
    margin-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-section h3 {
    font-size: 18px;
    margin-bottom: 16px;
}

.footer-section p {
    color: var(--light-text);
    font-size: 14px;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: var(--text-color);
    font-size: 14px;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

/* 安全提示区域 - 新的分开显示样式 */
.security-notices {
    margin-bottom: 20px;
}

.security-notices h3 {
    margin-bottom: 15px;
    font-size: 18px;
    color: var(--text-color);
}

.notice-item {
    background-color: var(--card-background);
    border-radius: var(--border-radius);
    padding: 15px 20px;
    margin-bottom: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-left: 4px solid var(--primary-color);
    display: flex;
    align-items: center;
}

.notice-item i {
    font-size: 18px;
    color: var(--primary-color);
    margin-right: 12px;
    transition: transform 0.3s ease;
}

.notice-item:hover i {
    transform: scale(1.2);
}

.notice-item p {
    margin: 0;
    font-size: 14px;
    color: var(--text-color);
}

.notice-item:last-child {
    border-left-color: var(--warning-color);
}

.notice-item:last-child i {
    color: var(--warning-color);
    animation: pulse 1.5s infinite;
}

.notice-item:last-child p {
    font-weight: bold;
    color: var(--warning-color);
}

/* 备用链接样式 */
.notice-item.redirect-link {
    border-left-color: var(--redirect-color); /* 使用浅红色 */
}

.notice-item.redirect-link i {
    color: var(--redirect-color); /* 使用浅红色 */
    animation: pulse 2s infinite;
}

.notice-item.redirect-link a {
    color: var(--redirect-color); /* 使用浅红色 */
    font-weight: bold;
    text-decoration: none;
    transition: var(--transition);
}

.notice-item.redirect-link a:hover {
    text-decoration: underline;
    color: #e05555; /* 深一点的红色用于悬停效果 */
}

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

/* 原安全提示区域样式保留用于兼容性 */
.security-notice {
    background-color: var(--card-background);
    border-radius: var(--border-radius);
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.notice-icon {
    font-size: 24px;
    color: var(--primary-color);
    padding: 10px;
    background-color: rgba(0, 122, 255, 0.1);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.notice-content {
    flex: 1;
}

.notice-content h3 {
    margin-bottom: 15px;
    font-size: 18px;
    color: var(--text-color);
}

.notice-content ul {
    padding: 0;
    margin: 0;
}

.notice-content ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-color);
    font-size: 14px;
}

.notice-content ul li:last-child {
    margin-bottom: 0;
}

.notice-content ul li i {
    color: var(--status-active);
    font-size: 16px;
}

.notice-content ul li i.fa-info-circle {
    color: var(--primary-color);
}

.notice-content ul li i.fa-exclamation-circle {
    color: var(--status-warning);
}

@media (max-width: 768px) {
    .security-notice {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 15px;
    }
    
    .notice-content ul li {
        justify-content: center;
    }
} 

/* 弹窗样式 */
.copy-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    touch-action: none;
}

.modal-content {
    background-color: var(--card-background);
    width: 90%;
    max-width: 320px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    animation: modalFadeIn 0.3s ease;
    position: relative;
    margin: 0 15px;
    border: 1px solid var(--border-color);
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* 添加淡出动画 */
.modal-fade-out {
    animation: modalFadeOut 0.3s ease forwards;
}

@keyframes modalFadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

.modal-header {
    padding: 15px;
    border-bottom: 1px solid var(--border-color);
    text-align: center;
}

.modal-header h3 {
    font-size: 18px;
    margin: 0;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.modal-body {
    padding: 20px;
    text-align: center;
}

.modal-body p {
    margin-bottom: 10px;
}

.warning-text {
    color: var(--warning-color);
    font-weight: bold;
    font-size: 15px;
    line-height: 1.5;
    margin-top: 15px;
    padding: 10px;
    border: 1px solid var(--warning-color);
    border-radius: 6px;
    background-color: rgba(255, 59, 48, 0.15);
}

.modal-footer {
    padding: 15px;
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.close-modal-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    width: 80%; /* 增加移动端按钮的可点击区域 */
    max-width: 200px; /* 限制最大宽度 */
}

.close-modal-btn:hover {
    background-color: var(--secondary-color);
}

/* 针对移动设备的弹窗优化 */
@media (max-width: 480px) {
    .modal-content {
        width: 94%;
        max-width: none;
    }
    
    .modal-header {
        padding: 12px;
    }
    
    .modal-body {
        padding: 16px;
    }
    
    .warning-text {
        font-size: 14px;
        padding: 8px;
    }
    
    .close-modal-btn {
        padding: 12px 0;
        width: 90%;
    }
}

/* 图标动画效果 */
.logo i {
    animation: rocket 2s infinite;
}

@keyframes rocket {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-5px);
    }
    100% {
        transform: translateY(0px);
    }
}

.loading i.fa-spinner {
    animation: spin 1.5s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* 复制按钮图标 */
.copy-btn i {
    margin-left: 6px;
    transition: transform 0.3s ease;
}

.copy-btn:hover i {
    transform: translateY(-2px);
}

/* 弹窗中的图标 */
.modal-header h3 i {
    color: var(--primary-color);
    margin-right: 8px;
}

.warning-text i {
    color: var(--warning-color);
    margin-right: 8px;
    animation: pulse 1.5s infinite;
} 

/* 登录流程指南样式 */
.login-guide {
    padding: 20px 0;
    margin-bottom: 30px;
}

.guide-content {
    background-color: var(--card-background);
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: var(--shadow);
}

.guide-step {
    display: flex;
    margin-bottom: 20px;
    position: relative;
}

.guide-step:last-child {
    margin-bottom: 0;
}

/* 移除步骤之间的连接线 */
/* .guide-step:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 20px;
    top: 40px;
    bottom: -10px;
    width: 2px;
    background-color: var(--primary-color);
    opacity: 0.3;
} */

.step-number {
    background-color: var(--primary-color);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 18px;
    flex-shrink: 0;
    margin-right: 15px;
    box-shadow: 0 2px 5px rgba(0, 122, 255, 0.3);
}

.step-content {
    flex: 1;
}

.step-content p {
    margin-top: 0;
    margin-bottom: 10px;
    line-height: 1.6;
}

.guide-image {
    margin: 15px 0;
    text-align: center;
}

.guide-image figure {
    margin: 0;
}

.guide-image img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.guide-image img:hover {
    transform: scale(1.02);
}

.guide-image figcaption {
    margin-top: 10px;
    color: var(--light-text);
    font-size: 14px;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .guide-step {
        flex-direction: column;
    }
    
    .step-number {
        margin-bottom: 15px;
    }
    
    /* 移除响应式中的连接线样式 */
    /* .guide-step:not(:last-child)::after {
        left: 20px;
        top: 40px;
        height: calc(100% - 30px);
        width: 2px;
    } */
} 

/* 问答验证模块样式 - 内嵌在账号列表中 */
.verification-card {
    background-color: var(--card-background);
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: var(--shadow);
    width: 100%;
    max-width: 500px;
    margin: 20px auto;
    animation: modalFadeIn 0.3s ease;
    grid-column: 1 / -1; /* 占据整个账号列表宽度 */
}

.verification-header {
    padding: 15px 20px;
    border-bottom: 1px solid var(--border-color);
    text-align: center;
    background-color: rgba(0, 122, 255, 0.08);
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    margin: -25px -25px 20px -25px;
}

.verification-header h3 {
    font-size: 20px;
    margin: 0 0 10px 0;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.verification-header p {
    margin: 0;
    color: var(--light-text);
    font-size: 14px;
}

.verification-body {
    padding: 5px;
}

.question-container {
    margin-bottom: 20px;
}

#questionText {
    font-size: 18px;
    margin-bottom: 20px;
    text-align: center;
    line-height: 1.5;
    font-weight: 500;
}

.options-container {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    justify-content: center;
}

.option-btn {
    flex: 1;
    padding: 12px 15px;
    border: none;
    background-color: #363c4c;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    max-width: 180px;
}

.option-btn:hover {
    background-color: #404755;
    transform: translateY(-2px);
    box-shadow: 0 3px 6px rgba(0,0,0,0.2);
}

.option-btn.correct {
    background-color: rgba(52, 199, 89, 0.2);
    color: #7febb0;
    border: 1px solid rgba(52, 199, 89, 0.5);
}

.option-btn.incorrect {
    background-color: rgba(255, 59, 48, 0.2);
    color: #ff9a94;
    border: 1px solid rgba(255, 59, 48, 0.5);
}

.attempts-counter {
    margin-top: 20px;
    text-align: center;
    font-size: 14px;
    color: var(--light-text);
}

.attempts-counter p {
    margin: 0;
}

#attemptsLeft {
    font-weight: 600;
    color: var(--primary-color);
}

@media (max-width: 480px) {
    .verification-card {
        padding: 20px;
    }
    
    .verification-header {
        margin: -20px -20px 15px -20px;
        padding: 12px;
    }
    
    .options-container {
        flex-direction: column;
        align-items: center;
    }
    
    .option-btn {
        width: 100%;
        max-width: 100%;
    }
} 

/* 重要提示醒目样式 */
.important-notice {
    background-color: rgba(255, 59, 48, 0.15);
    border-left: 4px solid var(--warning-color);
    padding: 12px 15px;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 5px 0;
}

.important-notice i {
    color: var(--warning-color);
    font-size: 18px;
    animation: pulse 1.5s infinite;
    margin-top: 3px;
}

.important-notice span {
    line-height: 1.6;
}

.important-notice strong {
    color: var(--warning-color);
    font-weight: bold;
} 

/* 免责声明 */
.disclaimer {
    background-color: #323744;
    border-left: 4px solid #ffc107;
    color: #ffd54f;
    padding: 12px 16px;
    border-radius: 6px;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    box-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

.disclaimer i {
    font-size: 18px;
    margin-right: 10px;
    color: #ffc107;
    margin-top: 2px;
}

.disclaimer p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

@media (max-width: 480px) {
    .disclaimer {
        padding: 10px 12px;
    }
    
    .disclaimer p {
        font-size: 13px;
    }
} 

/* 高级推荐链接样式 */
.notice-item.premium-redirect {
    background: #232a3b;
    border-radius: 10px;
    padding: 18px 20px;
    margin: 18px 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    border: 1px solid #2d3340;
    gap: 12px;
}
.premium-content h3 {
    color: #ffe066;
    font-size: 15px;
    font-weight: 700;
}
.premium-btn {
    background: #ffe066;
    color: #232a3b;
    border-radius: 20px;
    padding: 8px 22px;
    font-size: 15px;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    border: none;
    box-shadow: none;
    transition: background 0.2s;
}
.premium-btn:hover {
    background: #f9d423;
    color: #232a3b;
}
.premium-btn i {
    margin-left: 8px;
}

/* 原有redirect链接样式保留 */
.notice-item.redirect-link {
    border-left-color: var(--redirect-color); /* 使用浅红色 */
}

.notice-item.redirect-link i {
    color: var(--redirect-color); /* 使用浅红色 */
    animation: pulse 2s infinite;
}

.notice-item.redirect-link a {
    color: var(--redirect-color); /* 使用浅红色 */
    font-weight: bold;
    text-decoration: none;
    transition: var(--transition);
}

.notice-item.redirect-link a:hover {
    text-decoration: underline;
    color: #e05555; /* 深一点的红色用于悬停效果 */
}

/* 账户卡片内购物链接 */
.shop-link-card {
    margin-top: 15px;
    padding-top: 12px;
    border-top: 1px solid var(--border-color);
}

.shop-link-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #383f4f, #454c5d);
    color: #e0e0e0;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 6px;
    font-size: 14px;
    transition: all 0.3s ease;
    gap: 8px;
    border: 1px solid var(--border-color);
}

.shop-link-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, #454c5d, #525969);
    color: #fff;
    border-color: rgba(0, 122, 255, 0.3);
}

.shop-link-btn i.fa-crown {
    color: #d8c483;
    font-size: 14px;
}

.shop-link-btn i.fa-arrow-right {
    transition: transform 0.3s ease;
    font-size: 12px;
    margin-left: auto;
}

.shop-link-btn:hover i.fa-arrow-right {
    transform: translateX(3px);
}

@media (max-width: 480px) {
    .shop-link-btn {
        padding: 8px 12px;
        font-size: 13px;
    }
} 

/* 精简VPN广告卡片样式 */
.vpn-ad-card {
    width: 100%;
    margin: 18px 0;
    display: flex;
    justify-content: center;
}
.vpn-ad-content {
    background: #232a3b;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    padding: 18px 20px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border: 1px solid #2d3340;
    gap: 10px;
}
.vpn-ad-title {
    color: #ffe066;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 6px;
}
.vpn-ad-desc {
    color: #e8e8e8;
    font-size: 14px;
    margin-bottom: 8px;
}
.vpn-ad-btn {
    background: #ffe066;
    color: #232a3b;
    border-radius: 20px;
    padding: 8px 22px;
    font-size: 15px;
    font-weight: bold;
    text-decoration: none;
    border: none;
    box-shadow: none;
    transition: background 0.2s;
}
.vpn-ad-btn:hover {
    background: #f9d423;
    color: #232a3b;
}
.vpn-ad-btn i {
    margin-left: 8px;
}