/* 字体资源已移至 css/fonts.css */

:root {
    --primary-color: #9e94d8;
    --secondary-color: #333333;
    --background-color: #f2eefc;
    --card-bg: #FAFAFA;
    --text-color: #444444;
    --online-color: #00BFA6;
    --nav-bg: rgba(109, 91, 154, 0.8);
    --nav-bg-scroll: rgba(44, 62, 80, 1);
    --button-hover: #b6ade6;
}

/* 导航栏主题切换按钮已移至 navigation.css */

.theme-toggle-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    font-size: 16px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.theme-toggle-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.theme-toggle-btn i {
    transition: transform 0.3s ease;
}

.theme-toggle-btn:hover i {
    transform: rotate(180deg);
}

/* 深色主题变量 */
.dark-theme {
    --primary-color: #a78bfa;
    --secondary-color: #f1f5f9;
    --background-color: #0f172a;
    --card-bg: #1e293b;
    --text-color: #e2e8f0;
    --online-color: #10b981;
    --nav-bg: rgba(15, 23, 42, 0.8);
    --nav-bg-scroll: #1e293b;
    --button-hover: #c4b5fd;
}

/* 导航栏样式已移至 navigation.css */

/* Footer深色主题样式已移至 footer.css */


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-primary);
}
body {
    background: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
}


a {
    text-decoration: none;
  }


/* 导航栏样式已移至 navigation.css */

/* 导航栏样式已移至 navigation.css */
/* 导航栏样式已移至 navigation.css */

/* 导航栏样式已移至 navigation.css */




/* 导航栏样式已移至 navigation.css */





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

/* 头部样式 */
header {
    background-color: var(--nav-bg);
    color: white;
    padding: 30px 0;
    text-align: center;
}

/* 内容样式 */
/* main {
    padding: 150px 0;
} */

.intro {
    text-align: center;
    margin-bottom: 40px;
    padding: 0 20px;
}

.intro h2 {
    color: var(--secondary-color);
    font-size: 28px;
    margin-bottom: 15px;
}

/* 请为我打钱 */
.sponsorship-methods {
    margin-bottom: 60px;
}

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

.method-item {
    background: var(--card-bg);
    padding: 20px;
    border-radius: 8px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.method-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.method-item svg {
    width: 15px;
    height: 15px;
    margin-left: 10px;
}

.method-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.method-icon {
    font-size: 28px;
    color: var(--primary-color);
    margin-right: 15px;
    min-width: 30px;
    text-align: center;
}

.method-title {
    margin: 0;
    color: var(--secondary-color);
    font-size: 18px;
}

.method-desc {
    margin: 0 0 10px 0;
    color: var(--text-color);
    font-size: 14px;
}

.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: background-color 0.3s, transform 0.2s;
}

.btn:hover {
    background-color: var(--button-hover);
    transform: scale(1.05);
}
.divider {
    height: 1px;
    background-color: rgba(0,0,0,0.05);
    margin: 20px 0;
}

/* 感谢区域样式 */
.thank-you {
    text-align: center;
    padding: 30px 20px;
    background-color: var(--card-bg);
    border-radius: 8px;
    margin-bottom: 40px;
}

.thank-you h3 {
    color: var(--secondary-color);
    font-size: 22px;
    margin-top: 0;
}

/* Footer链接样式已移至 footer.css */


/* 已注释support.html>.back-to-top ---------------------------------------------------------------------*/
/* 返回顶部圆形按钮样式 */
.back-to-top {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    position: fixed;
    bottom: 100px;
    right: 30px;
    background: var(--primary-color);
    color: white;
    text-align: center;
    text-decoration: none;
    font-size: 1.4em;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.back-to-top::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: all 0.5s;
}

.back-to-top:hover {
    background: #16a085;
    transform: translateY(-4px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.2);
}
/* 已注释support.html>.back-to-top ----------------------------------------------------------------------*/


/* 返回主页圆形按钮样式 */
.back-to-home {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    position: fixed;
    bottom: 50%;
    right: 2px;
    background: var(--primary-color);
    color: white;
    text-align: center;
    text-decoration: none;
    font-size: 1.4em;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
@media (max-width: 846px) {
    .back-to-home {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        position: fixed;
        top: 50%;
        
        right: 2px;
        background: var(--primary-color);
        color: white;
        text-align: center;
        text-decoration: none;
        font-size: 1.4em;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s;
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }
}

.back-to-home::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: all 0.5s;
}

.back-to-home:hover {
    background: #16a085;
    transform: translateY(-4px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.2);
}

/* 页脚样式统一至 /footer.css */


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

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

/* 滚动动画 */
@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* 悬停时的微动画 */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* 渐变文字动画 */
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}



/* 加入按钮 
.join-btn {
    display: block;
    width: 220px;
    margin: 50px auto 0;
    padding: 15px;
    background: var(--primary-color);
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    font-size: clamp(1em, 3vw, 1.2em);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.join-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: all 0.5s;
}

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

.join-btn:hover {
    background: #16a085;
    transform: translateY(-4px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.2);
}
*/
/* feet moved to /footer.css */


@keyframes fadeIn {/* 页头文字、页头按钮动画 */
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}


/* Footer链接样式已移至 footer.css */

/* 网站状态信息样式 */
.website-status-info {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 25px 0 15px 0;
    flex-wrap: wrap;
    opacity: 0.8;
    font-size: 0.9em;
}

.status-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ccc;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.status-item:hover {
    color: var(--primary-color);
    background: rgba(158, 148, 216, 0.1);
    transform: translateY(-2px);
}

.status-item i {
    font-size: 14px;
    color: var(--primary-color);
    opacity: 0.8;
}

.status-item span {
    font-family: var(--font-primary);
    font-weight: 500;
}

.status-item span span {
    font-family: var(--font-mono);
    font-weight: 600;
    color: #fff;
    opacity: 0.9;
}

/* 可点击的版本状态项样式 */
#version-status-item {
    cursor: pointer;
    position: relative;
}

#version-status-item:hover {
    color: var(--primary-color);
    background: rgba(158, 148, 216, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(158, 148, 216, 0.2);
}

#version-status-item:hover i {
    color: var(--primary-color);
    opacity: 1;
}

#version-status-item:hover span span {
    color: var(--primary-color);
    opacity: 1;
}

/* 添加点击效果 */
#version-status-item:active {
    transform: translateY(0);
    background: rgba(158, 148, 216, 0.2);
}

/* 响应式设计 */
@media (max-width: 846px) {
    .website-status-info {
        gap: 15px;
        margin: 20px 0 10px 0;
    }
    
    .status-item {
        padding: 6px 10px;
        font-size: 0.85em;
    }
}

/* 系统深色主题自动应用 */
@media (prefers-color-scheme: dark) {
    :root:not(.dark-theme) {
        --primary-color: #a78bfa;
        --secondary-color: #f1f5f9;
        --background-color: #0f172a;
        --card-bg: #1e293b;
        --text-color: #e2e8f0;
        --nav-bg: rgba(15, 23, 42, 0.8);
        --nav-bg-scroll: #1e293b;
    }
    
    :root:not(.dark-theme) body {
        background: var(--background-color) !important;
        color: var(--text-color) !important;
    }
    
/* 导航栏样式已移至 navigation.css */
    
/* Footer系统深色主题样式已移至 footer.css */
    
/* 系统深色主题导航链接样式已移至 navigation.css */
}



