/* Aries联动页面独立样式 - 完全脱离根目录依赖 */

/* 自定义滚动条玻璃液态效果 */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin: 5px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 
        inset 0 0 10px rgba(255, 255, 255, 0.1),
        0 0 20px rgba(255, 255, 255, 0.1);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.2));
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        inset 0 0 15px rgba(255, 255, 255, 0.2),
        0 0 30px rgba(255, 255, 255, 0.2);
}

::-webkit-scrollbar-thumb:active {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.3));
    border: 1px solid rgba(255, 255, 255, 0.4);
}

/* 滚动条角落 */
::-webkit-scrollbar-corner {
    background: transparent;
}

/* 水平滚动条 */
::-webkit-scrollbar-horizontal {
    height: 12px;
}

::-webkit-scrollbar-track:horizontal {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:horizontal {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    box-shadow: 
        inset 0 0 10px rgba(255, 255, 255, 0.1),
        0 0 20px rgba(255, 255, 255, 0.1);
}

/* Firefox滚动条样式 */
* {
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.2) rgba(255, 255, 255, 0.05);
}

/* 全局样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: #000;
    color: #fff;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

/* 主要内容区域 */
.main-content {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 20px 100px;
    position: relative;
    z-index: 1;
}

.hero-section {
    text-align: center;
    position: relative;
}

.title-container {
    position: relative;
    z-index: 2;
}

.main-title {
    font-size: clamp(3rem, 8vw, 8rem);
    font-weight: 900;
    margin-bottom: 30px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.7));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 
        0 0 20px rgba(255, 255, 255, 0.4),
        0 0 40px rgba(255, 255, 255, 0.2);
    opacity: 0;
    animation: fadeInUp 1.5s ease-out 0.5s forwards, titleFloat 3s ease-in-out infinite 2s;
    position: relative;
    z-index: 2;
    letter-spacing: 2px;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes titleFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-10px) scale(1.02);
    }
}

/* 背景图片 */
.background-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('bj.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

/* 合作伙伴标识区域 */
.partnership-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
    padding: 25px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.partners-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.partner {
    font-size: 1.5rem;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.partner.kizuki {
    background: linear-gradient(45deg, rgba(255, 182, 193, 0.3), rgba(255, 182, 193, 0.1));
    color: rgba(255, 182, 193, 0.95);
    border: 1px solid rgba(255, 182, 193, 0.4);
}

.partner.anzr {
    background: linear-gradient(45deg, rgba(173, 216, 230, 0.3), rgba(173, 216, 230, 0.1));
    color: rgba(173, 216, 230, 0.95);
    border: 1px solid rgba(173, 216, 230, 0.4);
}

.partner:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 255, 255, 0.15);
}

.collaboration {
    font-size: 2rem;
    color: #000000;
    font-weight: bold;
    animation: pulse 2s ease-in-out infinite;
}

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

/* 进度条样式 - 集成在合作标识内 */
.progress-wrapper {
    width: 100%;
    margin-top: 20px;
    padding: 0 10px;
}

.progress-label {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #ff6b6b, #ff8e8e);
    border-radius: 6px;
    transition: width 0.8s ease-in-out, background 0.5s ease;
    box-shadow: 0 0 8px rgba(255, 107, 107, 0.4);
    position: relative;
    overflow: hidden;
}

.progress-fill::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    animation: shimmer 2.5s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* 项目描述区域 */
.project-description {
    margin: 40px 0;
    padding: 30px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 25px;
    text-align: center;
}

.project-description p {
    font-size: 1.2rem;
    color: #000000;
    margin: 15px 0;
    line-height: 1.6;
}

/* 版权页脚 - 更薄更透明 */
.footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    padding: 8px 0;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 1000;
}

.footer-content {
    text-align: center;
    color: #000000;
    font-size: 14px;
}

.footer-content p {
    margin: 5px 0;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .partners-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .partner {
        font-size: 1.2rem;
        padding: 8px 16px;
    }
    
    .collaboration {
        font-size: 1.5rem;
    }
    
    .project-description {
        padding: 20px;
        margin: 20px 10px;
    }
    
    .project-description p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .partner {
        font-size: 1rem;
        padding: 6px 12px;
    }
    
    .collaboration {
        font-size: 1.2rem;
    }
    
    .project-description {
        padding: 15px;
        margin: 15px 5px;
    }
    
    .footer-content {
        font-size: 12px;
    }
}

/* 左上角品牌Logo样式 */
.brand-logo {
    position: fixed;
    top: 20px;
    left: 20px;
    font-size: 1.5rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    z-index: 1000;
    padding: 10px 25px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px; /* 圆角更大，更现代 */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    letter-spacing: 1px;
    user-select: none;
}

.brand-logo:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
    transform: translateY(-2px) scale(1.02);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

/* 移动端适配 */
@media (max-width: 768px) {
    .brand-logo {
        top: 15px;
        left: 15px;
        font-size: 1.2rem;
        padding: 8px 20px;
    }
}