/* NeurByte 自定义样式 */

/* 主要品牌色彩 */
:root {
    --neurbyte-primary: #00d4ff;
    --neurbyte-secondary: #ff6b35;
    --neurbyte-accent: #7c3aed;
    --neurbyte-dark: #0f172a;
    --neurbyte-light: #f8fafc;
}

/* 横幅区域优化 */
.neurbyte-banner {
    background: linear-gradient(135deg, var(--neurbyte-dark) 0%, #1e293b 50%, var(--neurbyte-dark) 100%);
}

/* 按钮样式优化 */
.neurbyte-btn-primary {
    background: linear-gradient(135deg, var(--neurbyte-primary) 0%, var(--neurbyte-accent) 100%);
    border: none;
    transition: all 0.3s ease;
}

.neurbyte-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 212, 255, 0.3);
}

.neurbyte-btn-secondary {
    background: linear-gradient(135deg, var(--neurbyte-secondary) 0%, #ef4444 100%);
    border: none;
    transition: all 0.3s ease;
}

.neurbyte-btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

/* 特色卡片样式 */
.neurbyte-feature-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.neurbyte-feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--neurbyte-primary);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.1);
}

/* 图标动画效果 */
.neurbyte-icon {
    transition: all 0.3s ease;
}

.neurbyte-feature-card:hover .neurbyte-icon {
    transform: scale(1.1) rotate(5deg);
}

/* 文字渐变效果 */
.neurbyte-gradient-text {
    background: linear-gradient(135deg, var(--neurbyte-primary) 0%, var(--neurbyte-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .neurbyte-banner h1 {
        font-size: 48px !important;
    }
    
    .neurbyte-feature-card {
        margin-bottom: 20px;
    }
}

/* 加载动画 */
@keyframes neurbyte-pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.neurbyte-pulse {
    animation: neurbyte-pulse 2s infinite;
}

/* 科技感边框效果 */
.neurbyte-tech-border {
    position: relative;
    overflow: hidden;
}

.neurbyte-tech-border::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.3), transparent);
    transition: left 0.5s;
}

.neurbyte-tech-border:hover::before {
    left: 100%;
}