/* AI项目众筹页面样式 */

/* AI 智能体元素样式 */
.ai-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.ai-icon {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-1);
    opacity: 0.8;
    animation: pulse 4s infinite;
    box-shadow: 0 0 40px rgba(99, 102, 241, 0.8);
}

.ai-icon-1 {
    top: 10%;
    right: 15%;
    animation-delay: 0s;
}

.ai-icon-2 {
    top: 50%;
    left: 10%;
    animation-delay: 1s;
}

.ai-icon-3 {
    bottom: 20%;
    right: 25%;
    animation-delay: 2s;
}

.robot-element {
    position: absolute;
    top: 30%;
    left: 15%;
    width: 150px;
    height: 150px;
    background: var(--gradient-2);
    border-radius: 12px;
    opacity: 0.7;
    animation: float 6s ease-in-out infinite;
    box-shadow: 0 0 50px rgba(244, 63, 94, 0.8);
}

.robot-element::before {
    content: '';
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--gradient-1);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.8);
}

.robot-element::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 20px;
    background: var(--gradient-2);
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(244, 63, 94, 0.8);
}

/* 额外的AI元素 */
.ai-element-extra {
    position: absolute;
    width: 40px;
    height: 40px;
    background: var(--gradient-1);
    border-radius: 50%;
    opacity: 0.6;
    animation: pulse 3s infinite;
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.6);
}

.ai-element-extra-1 {
    top: 25%;
    left: 20%;
    animation-delay: 0.5s;
}

.ai-element-extra-2 {
    top: 70%;
    right: 10%;
    animation-delay: 1.5s;
}

.ai-element-extra-3 {
    bottom: 30%;
    left: 30%;
    animation-delay: 2.5s;
}

/* 动画效果 */
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 0.6;
    }
}

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

/* 项目信息样式 */
.project-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.project-logo {
    margin-bottom: 2rem;
}

.project-logo-image {
    height: 120px;
    width: auto;
    object-fit: contain;
}

.project-description {
    max-width: 800px;
}

.project-description h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.project-description p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* 下载按钮样式 */
.download-buttons {
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.download-buttons h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.button-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

/* 众筹人员名单样式 */
.crowdfunding-list {
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.crowdfunding-list h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    text-align: center;
}

.table-container {
    overflow-x: auto;
    max-width: 100%;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.data-table th,
.data-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.data-table th {
    background: var(--primary-color);
    color: white;
    font-weight: 600;
    padding: 1.25rem;
    font-size: 1rem;
}

.data-table tr:hover {
    background: var(--bg-secondary);
}

/* 众筹联系卡片容器样式 */
.contact-cards-container {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

/* 众筹联系人卡片样式 */
.contact-card {
    flex: 1;
    min-width: 300px;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin: 0;
}

.contact-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    text-align: center;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
}

.contact-label {
    font-weight: 600;
    color: var(--text-primary);
    width: 80px;
}

.contact-value {
    color: var(--text-secondary);
}

.copy-button-container {
    margin-top: 1.5rem;
    text-align: center;
}

.contact-note {
    margin-top: 1.5rem;
    padding: 1rem;
    background-color: rgba(16, 185, 129, 0.1);
    border-left: 4px solid #10b981;
    color: #10b981;
    font-size: 0.9rem;
    line-height: 1.5;
}

#copyAccountBtn1, #copyAccountBtn2 {
    cursor: pointer;
    transition: all var(--transition-base);
}

#copyAccountBtn1:hover, #copyAccountBtn2:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .button-group {
        flex-direction: column;
        align-items: center;
    }
    
    .button-group .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .data-table th,
    .data-table td {
        padding: 0.75rem;
    }
    
    .ai-icon {
        width: 40px;
        height: 40px;
    }
    
    .robot-element {
        width: 80px;
        height: 80px;
    }
    
    .contact-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
    
    .contact-label {
        width: auto;
    }
}