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

:root {
    /* 基于原配色的现代化方案 */
    --primary-color: #9e94d8;
    --primary-gradient: linear-gradient(135deg, #9e94d8 0%, #b6ade6 100%);
    --secondary-color: #333333;
    --background-color: #f2eefc;
    --background-gradient: linear-gradient(135deg, #f2eefc 0%, #e8e2f7 50%, #ddd6f3 100%);
    --card-bg: rgba(255, 255, 255, 0.8);
    --card-bg-hover: rgba(255, 255, 255, 0.9);
    --text-color: #444444;
    --text-secondary: #666666;
    --online-color: #00BFA6;
    --nav-bg: rgba(109, 91, 154, 0.8);
    --nav-bg-scroll: rgba(109, 91, 154, 0.95);
    --button-hover: #b6ade6;
    --accent-color: #f59e0b;
    --glass-bg: rgba(255, 255, 255, 0.6);
    --glass-border: rgba(158, 148, 216, 0.3);
    --shadow-color: rgba(109, 91, 154, 0.2);
    --shadow-hover: rgba(109, 91, 154, 0.3);
    
    /* 支持系统主题 */
    color-scheme: light dark;
}

/* 系统深色主题自动应用 */
@media (prefers-color-scheme: dark) {
    :root:not(.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;
    }
    
    :root:not(.dark-theme) body {
        background: var(--background-color) !important;
        color: var(--text-color) !important;
    }
    
/* 导航栏样式已移至 navigation.css */
    
    :root:not(.dark-theme) .news-detail-section {
        background: rgba(30, 41, 59, 0.85) !important;
        border: 1px solid rgba(71, 85, 105, 0.45) !important;
    }
    
    
    :root:not(.dark-theme) .copyright-info {
        border-top: 1px solid rgba(71, 85, 105, 0.3) !important;
        color: #94a3b8 !important;
    }
    
/* 导航栏样式已移至 navigation.css */
}

/* 深色主题变量 */
.dark-theme {
    --primary-color: #a78bfa;
    --secondary-color: #f1f5f9;
    --background-color: #0f172a;
    --background-gradient: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    --card-bg: #1e293b;
    --card-bg-hover: #334155;
    --text-color: #e2e8f0;
    --text-secondary: #cbd5e1;
    --online-color: #10b981;
    --nav-bg: rgba(15, 23, 42, 0.8);
    --nav-bg-scroll: #1e293b;
    --button-hover: #c4b5fd;
    --accent-color: #f59e0b;
    --glass-bg: rgba(30, 41, 59, 0.6);
    --glass-border: rgba(71, 85, 105, 0.3);
    --shadow-color: rgba(0, 0, 0, 0.3);
    --shadow-hover: rgba(0, 0, 0, 0.4);
}

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

/* Footer 在深色主题下的适配 */


* {
    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 */

.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);
}

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

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





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


/* banner */
header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding-top: 70px;
    background-size: cover;
    background-position: center;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    position: relative;
}

  
  /* 初始显示状态 */
  .fade-in {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* 淡出状态 */
  .fade-out {
    opacity: 0;
    /* 轻微下移增强退出感 */
    transform: translateY(1px); 
  }
  
  /* 新背景初始状态 */
  .new-background {
    opacity: 0;
    /* 轻微上移准备进入 */
    transform: translateY(-1px); 
  }
.header-overlay {
    
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.7));
}

.header-content {
    z-index: 10;
    text-align: center;
    padding: 0 20px;
}
.header-content svg{
    width: 18px;
    height: 18px;
    margin-left: 8px;
}



.LuminolCraft{
    /* border: 1px solid blue; */
    font-size: clamp(2em, 8vw, 4em);
    color: #b6ade6;
    animation: fadeIn 0.93s ease-out;
}

.description{
    width: 40vw;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2.5rem;
    /* text-align: center; */
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    animation: fadeIn 0.93s ease-out;
}
.description-text{
    animation: fadeIn 0.93s ease-out;
}
/* 
.server-ip {
    // border: 1px solid purple;
    display: inline-block;
    padding: 12px 30px;
    margin-bottom: 30px;
    margin-right: 22px;
    font-size: clamp(1em, 3vw, 1.3em);
    background: rgba(0,0,0,0.5);
    border-radius: 50px;
    transition: all 0.3s;
    animation: fadeIn 0.5s ease-out 0.3s backwards;
    color: white;
}
.server-ip:hover {
    transform: scale(1.1); 
    background: #f8c3cd;locationbar
    box-shadow: 0 8px 18px rgba(0,0,0,0.2);
} */


.join-btn-header {
    /* border: 4px solid black; */
    display: inline-block;
    padding: 12px 30px;
    margin-bottom: 30px;
    margin-top: 20px;
        
    font-size: clamp(1em, 3vw, 1.3em);
    background: rgba(0,0,0,0.5);
    border-radius: 50px;
    transition: all 0.3s;
    animation: fadeIn 0.5s ease-out 0.3s backwards;
        
    color: white;
        
}

.join-btn-header:hover {
    transform: scale(1.1); 
    background: var(--button-hover);
    box-shadow: 0 8px 18px rgba(0,0,0,0.2);
}

/* 服务器状态 */
.status {
    font-size: 1.2em;
    margin: 15px 0;
    color: #b7b7a4;
}
.status-box {
    position: relative;
    padding: 40px 250px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    text-align: center;
    overflow: hidden;
}
#status h2::after {
    display: none;
}
.player-nub{
    color: var(--card-bg);
}
/*我是渐变装饰线 */
 .status-box::after{ 
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--online-color));
    z-index: 1;/*.status-box::before的z—index是-1 */
}
.status-h2{
    color: #f8f9fa;
}
.status-box h2 {
    margin-bottom: 20px;
    font-size: clamp(1.5em, 4vw, 2em);
}

.status-box h2::after {
    display: none;
}

.status-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 10px;
    z-index: -1;
}



.online {
    position: relative;
    padding-left: px;
    color: var(--online-color);
    font-weight: bold;
}

.online::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10%;
    transform: translateY(-50%); 
    width: 13px;
    height: 13px;
    background: var(--online-color);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

/*这个是在线左边那个小图标的呼吸效果 */
 @keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(39, 174, 96, 0.7); }
    70% { box-shadow: 0 0 0 8px rgba(39, 174, 96, 0); }
    100% { box-shadow: 0 0 0 0 rgba(94, 40, 77, 0); }
}

/* 内容容器 */
.container {
    /* border: 4px solid #558000; */
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 24px;
}

/* 各部分通用样式 */
.section {
    margin-bottom: 80px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.section.visible {
    opacity: 1;
    transform: translateY(0);
}

.section p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1em;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* 标题样式 */
.Pure-h2, .Comprehensive-h2 {
    position: relative;
    margin-bottom: 25px;
    text-align: left;
    margin-left: 14%;
    color: var(--text-color);
    font-size: clamp(1.8em, 5vw, 2.5em);
    font-weight: 700;
}

.Pure-h2::after, .Comprehensive-h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    transform: none;
    width: 900px;
    height: 4px;
    background: var(--primary-gradient);
    border-radius: 9999px;
}

.Integrated-h2, .gallery-h2, .team-h2 {
    position: relative;
    margin-bottom: 40px;
    color: var(--text-color);
    text-align: center;
    font-size: clamp(1.8em, 5vw, 2.5em);
    font-weight: 700;
}

.Integrated-h2::after, .gallery-h2::after, .team-h2::after { 
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-gradient);
    border-radius: 2px;
}

/* 特点卡片 */
.Integrated {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.Integrated-box {
    width: 100%;
    max-width: 320px;
    padding: 40px 30px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: 0 20px 40px var(--shadow-color);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.Integrated-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.Integrated-box:hover::before {
    transform: scaleX(1);
}

.Integrated-box:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px var(--shadow-hover);
    background: var(--card-bg-hover);
}

.Integrated-img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--primary-gradient);
    border-radius: 50%;
    font-size: 1.5em;
    color: white;
    transition: all 0.3s ease;
    font-weight: 700;
}

.Integrated-box:hover .Integrated-img {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.Integrated-box h3 {
    color: var(--text-color);
    font-size: 1.3em;
    font-weight: 600;
    margin-bottom: 15px;
}

.Integrated-box p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1em;
}

/* 团队卡片 */
#team .team-grid {
    display: flex;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

#team .team-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    max-width: 280px;
    width: 100%;
}

#team .team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

#team .team-card:hover::before {
    transform: scaleX(1);
}

#team .team-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 30px 60px var(--shadow-hover);
    background: var(--card-bg-hover);
}

#team .team-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    display: inline-block;
    box-shadow: 0 10px 30px var(--shadow-color);
    transition: all 0.3s ease;
    border: 3px solid var(--glass-border);
}

#team .team-card:hover .team-avatar {
    transform: scale(1.1);
    box-shadow: 0 15px 40px var(--shadow-hover);
}

#team .team-name {
    margin: 15px 0 8px;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-color);
}

#team .team-role {
    margin: 0;
    opacity: 0.8;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* 团队卡片链接图标 */
#team .team-links {
    margin-top: 15px;
    display: inline-flex;
    gap: 12px;
}

#team .team-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: var(--text-secondary);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
    text-decoration: none;
}

#team .team-link:hover {
    transform: translateY(-3px) scale(1.1);
    background: var(--primary-gradient);
    color: white;
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
}

#team .team-link i {
    font-size: 16px;
    line-height: 1;
}

/* 展示区盒子 */
.gallery {
    /* border: 4px solid rgb(29, 86, 255); */
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.gallery-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0));
    color: white;
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.3s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
    transform: translateY(0);
}

/* 规则盒子 */
.rules-box {
    /* border: 4px solid rgb(187, 52, 52); */
    padding: 40px 25px;
    background: var(--card-bg);
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

.rules-box ol {
    list-style-position: inside;
    padding-left: 0;
}

.rules-box li {
    position: relative;
    margin-bottom: 18px;
    padding-left: 8px;
    font-size: 1.05em;
    transition: all 0.3s;
}

.rules-box li:hover {
    transform: translateX(4px);
    color: var(--primary-color);
}

/* 加入按钮 
.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);
}
*/
/* Footer过渡区域样式已移至 footer.css */

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

.social-links {
    margin-bottom: 25px;
}

.social-links a {
    display: inline-block;
    margin: 0 12px;
    color: white;
    font-size: 1.3em;
    transition: all 0.3s;
}

.social-links a:hover {
    color: var(--primary-color);
    transform: translateY(-4px);
}


@keyframes fadeInUp {
    from { 
        opacity: 0; 
        transform: translateY(20px); 
    }
    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);
}
*/
@keyframes fadeIn {/* 页头文字、页头按钮动画 */
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}


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

/* 响应式设计 */
/* 移动端样式已移至 mobile.css */

/* 首页布局样式 - 从 index.html 提取 */
/* 全新的首页布局设计 */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, 
        rgba(0, 0, 0, 0.3) 0%, 
        rgba(0, 0, 0, 0.2) 70%, 
        rgba(0, 0, 0, 0.1) 90%, 
        transparent 100%);
}

/* 背景轮播样式 */
.header-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
    opacity: 0;
    transition: opacity 1.5s ease-in-out; /* 延长过渡时间，让切换更柔和 */
    filter: brightness(0.95) contrast(1.0); /* 接近原始亮度，减少过滤效果 */
}

.header-background.fade-in {
    opacity: 1.0; /* 完全不透明，显示原始图片 */
    filter: brightness(0.95) contrast(1.0);
}

.header-background.fade-out {
    opacity: 0;
    filter: brightness(0.95) contrast(1.0);
}

.header-background.new-background {
    opacity: 0;
    filter: brightness(0.95) contrast(1.0);
}

/* 添加更柔和的过渡效果 */
.hero-section {
    background-color: transparent; /* 透明背景，让图片显示 */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.2));
    z-index: -1; /* 在背景图片之上，内容之下 */
    pointer-events: none;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: rgba(0, 0, 0, 0.3); /* 半透明黑色背景 */
    border-radius: 20px;
    backdrop-filter: blur(10px); /* 毛玻璃效果 */
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.6s ease-out 0.1s both;
}

.hero-text {
    z-index: 1;
    animation: fadeInUp 0.5s ease-out 0.15s both;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: fadeInUp 0.5s ease-out 0.2s both;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: white;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.6);
    margin-bottom: 2rem;
    line-height: 1.6;
    animation: fadeInUp 0.5s ease-out 0.25s both;
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.5s ease-out 0.3s both;
}

.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeInUp 0.5s ease-out 0.35s both;
}

.hero-visual {
    animation: fadeInUp 0.6s ease-out 0.15s both;
}

.btn-hero {
    padding: 15px 30px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary-hero {
    background: var(--primary-gradient);
    color: white;
    box-shadow: 0 8px 25px rgba(158, 148, 216, 0.3);
}

.btn-primary-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(158, 148, 216, 0.4);
}

.btn-secondary-hero {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary-hero:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.server-status-card {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 20px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.server-status-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
}

/* 深色主题服务器状态卡片适配 */
.dark-theme .server-status-card {
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(71, 85, 105, 0.3);
}

/* 系统深色主题服务器状态卡片适配 */
@media (prefers-color-scheme: dark) {
    :root:not(.dark-theme) .server-status-card {
        background: rgba(30, 41, 59, 0.6) !important;
        border: 1px solid rgba(71, 85, 105, 0.3) !important;
    }
}

.status-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.status-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    position: relative;
  }
  .status-dot::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    animation: pulse 2s infinite;
    z-index: -1;
  }
  
  /* 在线状态 - 绿色 */
  .status-dot.online {
    background-color: #00BFA6; /* 或 var(--online-color) */
  }
  .status-dot.online::before {
    background-color: rgba(0, 191, 166, 0.3);
  }
  
  /* 离线状态 - 红色 */
  .status-dot.offline {
    background-color: #dc3545; /* Bootstrap 风格的红色，也可用 #ff4444 */
  }
  .status-dot.offline::before {
    background-color: rgba(220, 53, 69, 0.3);
  }
  
  /* 脉冲动画 */
  @keyframes pulse {
    0%, 100% {
      opacity: 1;
      transform: scale(1);
    }
    50% {
      opacity: 0.6;
      transform: scale(1.2);
    }
  }
  
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.status-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.server-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
}

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

.info-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 5px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.info-value {
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.online {
    color: var(--online-color);
}

/* 移除所有过渡效果，让header和features-section直接连接 */

.wave-divider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200px;
    z-index: 1;
}

.wave-divider svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* 深色主题过渡区域适配 */
.dark-theme .transition-shape {
    background: var(--background-color);
}

/* 系统深色主题过渡区域适配 */
@media (prefers-color-scheme: dark) {
    :root:not(.dark-theme) .transition-section {
        background: transparent !important;
    }
    
    :root:not(.dark-theme) .transition-shape {
        background: var(--background-color) !important;
    }
}

/* 新的柔和动画效果 */
@keyframes gentleShift {
    0%, 100% { 
        opacity: 0.8;
        transform: translateY(0px);
    }
    50% { 
        opacity: 1;
        transform: translateY(-2px);
    }
}

/* 特色区域 - 强自发光分隔效果 */
.features-section {
    padding: 100px 0;
    background: var(--background-color);
    position: relative;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(158, 148, 216, 1) 20%, 
        rgba(158, 148, 216, 1) 50%, 
        rgba(158, 148, 216, 1) 80%, 
        transparent 100%);
    box-shadow: 
        0 0 20px rgba(158, 148, 216, 0.8),
        0 0 40px rgba(158, 148, 216, 0.6),
        0 0 60px rgba(158, 148, 216, 0.4),
        0 0 80px rgba(158, 148, 216, 0.2);
    z-index: 10;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    animation: fadeInUp 0.5s ease-out 0.2s both;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInUp 0.5s ease-out 0.25s both;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    animation: fadeInUp 0.5s ease-out 0.3s both;
}

.feature-card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    border: 1px solid var(--glass-border);
    box-shadow: 0 10px 30px var(--shadow-color);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(50px);
}

/* 滚动动画 - 当元素进入视口时触发 */
.feature-card.animate {
    opacity: 1;
    transform: translateY(0);
}

/* 为每个卡片设置不同的延迟时间 */
.feature-card:nth-child(1).animate {
    transition-delay: 0.1s;
}

.feature-card:nth-child(2).animate {
    transition-delay: 0.2s;
}

.feature-card:nth-child(3).animate {
    transition-delay: 0.3s;
}

/* 服务器卡片滚动动画 */
.server-card {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.server-card.animate {
    opacity: 1;
    transform: translateY(0);
}

/* 团队卡片滚动动画 */
.contributor-card {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.contributor-card.animate {
    opacity: 1;
    transform: translateY(0);
}

/* 为团队卡片设置错开动画 */
.contributor-card:nth-child(1).animate { transition-delay: 0.1s; }
.contributor-card:nth-child(2).animate { transition-delay: 0.2s; }
.contributor-card:nth-child(3).animate { transition-delay: 0.3s; }
.contributor-card:nth-child(4).animate { transition-delay: 0.4s; }
.contributor-card:nth-child(5).animate { transition-delay: 0.5s; }
.contributor-card:nth-child(6).animate { transition-delay: 0.6s; }
.contributor-card:nth-child(7).animate { transition-delay: 0.7s; }
.contributor-card:nth-child(8).animate { transition-delay: 0.8s; }

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--shadow-hover);
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 15px;
}

.feature-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* 服务器类型区域 */
.servers-section {
    padding: 100px 0;
    background: var(--background-gradient);
}

/* 深色主题服务器区域适配 */
.dark-theme .servers-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
}

/* 系统深色主题服务器区域适配 */
@media (prefers-color-scheme: dark) {
    :root:not(.dark-theme) .servers-section {
        background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%) !important;
    }
}

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

.servers-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 60px;
}

.server-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 15px 35px var(--shadow-color);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

/* 服务器卡片动画状态 - 同时出现，无延迟 */
.server-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.server-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--primary-gradient);
}

.server-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px var(--shadow-hover);
}

/* 深色主题服务器卡片适配 */
.dark-theme .server-card {
    background: rgba(30, 41, 59, 0.8);
    border: 1px solid rgba(71, 85, 105, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.dark-theme .server-card:hover {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

/* 系统深色主题服务器卡片适配 */
@media (prefers-color-scheme: dark) {
    :root:not(.dark-theme) .server-card {
        background: rgba(30, 41, 59, 0.8) !important;
        border: 1px solid rgba(71, 85, 105, 0.3) !important;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3) !important;
    }
    
    :root:not(.dark-theme) .server-card:hover {
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4) !important;
    }
}

.server-type {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.server-name {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 20px;
}

.server-description {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1.1rem;
}

/* 团队区域 */
.team-section {
    padding: 100px 0;
    background: var(--background-color);
}

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

/* 团队flex布局 */
.team-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 60px;
}

/* 团队子节 */
.team-subsection {
    margin-bottom: 3rem;
}

.subsection-header {
    margin-bottom: 2rem;
    text-align: center;
}

.subsection-title {
    font-size: 1.5em;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0 0 0.5rem 0;
}

.subsection-description {
    font-size: 1em;
    color: var(--text-secondary);
    margin: 0;
}

.contributors-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2rem;
    align-items: start;
    justify-content: center;
}

.contributor-card {
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    background: var(--card-bg);
    padding: 1rem;
    width: 280px;
    height: 140px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contributor-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
    border-color: var(--primary-color);
}

.contributor-layout {
    display: flex;
    flex-direction: row;
    gap: 1.2rem;
    align-items: flex-start;
}

.contributor-avatar-container {
    flex-shrink: 0;
}

.contributor-avatar {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
    border: 2px solid var(--glass-border);
    transition: border-color 0.3s ease;
}

.contributor-card:hover .contributor-avatar {
    border-color: var(--primary-color);
}

/* Contributor 信息 */
.contributor-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    justify-content: space-between;
}

.contributor-links-wrapper {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-top: 0.5rem;
}

.contributor-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
    word-break: break-word;
}

.contributor-role {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-style: italic;
    margin: 0;
    line-height: 1.4;
}

/* Contributor GitHub 链接 */
.contributor-github-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #18a058;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: color 0.3s ease;
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.contributor-github-link:hover {
    color: #36ad6a;
    text-decoration: none;
}

.contributor-github-link .github-icon {
    flex-shrink: 0;
}

.github-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.contributor-links {
    display: inline-flex;
    gap: 0.4rem;
    align-items: center;
    margin-left: 0.8rem;
    vertical-align: middle;
}

.contributor-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.75em;
    flex-shrink: 0;
}

.contributor-links a:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

/* 团队卡片统一样式 */
.team-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    border: 1px solid var(--glass-border);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    flex: 0 0 300px;
    max-width: 300px;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.team-card:hover::before {
    transform: scaleX(1);
}

.team-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

/* 头像样式 */
.team-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 25px;
    border: 3px solid var(--glass-border);
    transition: all 0.3s ease;
    object-fit: cover;
}

.team-card:hover .team-avatar {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* 姓名样式 */
.team-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.team-card:hover .team-name {
    color: var(--primary-color);
}

/* 角色描述 */
.team-role {
    color: var(--text-secondary);
    margin-bottom: 25px;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* 社交链接 */
.team-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.team-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--glass-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--glass-border);
    text-decoration: none;
}

.team-link:hover {
    background: var(--primary-gradient);
    color: white;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.4);
    border-color: transparent;
}

.team-link i {
    font-size: 18px;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .servers-grid {
        grid-template-columns: 1fr;
    }
    
    /* 平板端团队布局 */
    .team-card {
        flex: 0 0 280px;
        max-width: 280px;
    }
}

/* 移动端样式已移至 mobile.css */


/* 服务器配置样式 */
.server-config-section {
    margin: 25px 0 0 0;
    text-align: center;
}

.server-config-title {
    color: #f8f9fa;
    font-size: 1.2em;
    font-weight: 700;
    margin-bottom: 20px;
    opacity: 1;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
}

.server-config-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    border-radius: 1px;
}

.server-config-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 15px;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 10px;
}

.config-item {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 16px 12px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    min-height: 110px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.config-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-color: rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.12);
}

.config-icon {
    font-size: 2em;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.config-icon i {
    font-size: inherit;
    color: inherit;
}

.config-item:hover .config-icon {
    color: rgba(255, 255, 255, 1);
    transform: scale(1.05);
}

.config-label {
    color: rgba(248, 249, 250, 0.8);
    font-size: 0.85em;
    font-weight: 600;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.config-value {
    color: #f8f9fa;
    font-size: 0.9em;
    font-weight: 500;
    margin-bottom: 4px;
    line-height: 1.3;
}

/* 主页服务器状态指示器样式 */
#server-status .status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

#server-status .status-indicator::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

#server-status .status-indicator.loading {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

#server-status .status-indicator.loading::before {
    background: #ffc107;
}

#server-status .status-indicator.online {
    background: rgba(40, 167, 69, 0.2);
    color: #28a745;
    border: 1px solid rgba(40, 167, 69, 0.3);
}

#server-status .status-indicator.online::before {
    background: #28a745;
}

#server-status .status-indicator.offline {
    background: rgba(220, 53, 69, 0.2);
    color: #dc3545;
    border: 1px solid rgba(220, 53, 69, 0.3);
}

#server-status .status-indicator.offline::before {
    background: #dc3545;
}

#server-status .status-indicator.error {
    background: rgba(108, 117, 125, 0.2);
    color: #6c757d;
    border: 1px solid rgba(108, 117, 125, 0.3);
}

#server-status .status-indicator.error::before {
    background: #6c757d;
}

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

