/* UN工作室 - 游戏开发科技感样式 */

/* Reset & Base */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { 
    font-family: 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', sans-serif; 
    color: #e0e0e0; 
    line-height: 1.6; 
    background: #0a0a1a;
    overflow-x: hidden;
}

/* 背景网格动画 */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

a { text-decoration: none; color: inherit; transition: all 0.3s; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; position: relative; z-index: 1; }

/* 导航栏 */
.navbar { 
    position: fixed; 
    top: 0; 
    left: 0; 
    right: 0; 
    background: rgba(10, 10, 26, 0.95); 
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 255, 255, 0.1);
    z-index: 1000; 
    padding: 0;
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.logo { display: flex; align-items: center; gap: 12px; font-weight: 700; font-size: 20px; }
.logo-icon { 
    background: linear-gradient(135deg, #00f5ff, #ff00ff); 
    color: #000; 
    width: 42px; 
    height: 42px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    border-radius: 8px; 
    font-size: 16px; 
    font-weight: 900;
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.5);
    animation: logoGlow 2s ease-in-out infinite alternate;
}
@keyframes logoGlow {
    from { box-shadow: 0 0 20px rgba(0, 245, 255, 0.5); }
    to { box-shadow: 0 0 30px rgba(255, 0, 255, 0.7); }
}
.logo-text { 
    background: linear-gradient(90deg, #00f5ff, #ff00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}
.nav-menu { display: flex; gap: 8px; }
.nav-menu a { 
    padding: 8px 18px; 
    border-radius: 6px; 
    font-size: 14px; 
    color: #aaa; 
    transition: all 0.3s;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}
.nav-menu a:hover, .nav-menu a.active { 
    color: #00f5ff; 
    background: rgba(0, 245, 255, 0.1);
    box-shadow: 0 0 15px rgba(0, 245, 255, 0.3);
}
.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00f5ff, #ff00ff);
    transition: all 0.3s;
    transform: translateX(-50%);
}
.nav-menu a:hover::after, .nav-menu a.active::after {
    width: 80%;
}
.menu-toggle { display: none; background: none; border: none; font-size: 24px; cursor: pointer; color: #00f5ff; }

/* Hero */
.hero { 
    padding: 160px 0 100px; 
    text-align: center;
    position: relative;
    background: radial-gradient(ellipse at center, rgba(0, 245, 255, 0.1) 0%, transparent 70%);
}
.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 0, 255, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    animation: pulse 4s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.8; }
}
.hero-title { 
    font-size: 64px; 
    font-weight: 900; 
    background: linear-gradient(135deg, #00f5ff 0%, #ff00ff 50%, #00f5ff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    animation: gradientShift 3s ease infinite;
    text-shadow: 0 0 40px rgba(0, 245, 255, 0.5);
    letter-spacing: 4px;
}
@keyframes gradientShift {
    0% { background-position: 0% center; }
    50% { background-position: 100% center; }
    100% { background-position: 0% center; }
}
.hero-subtitle { 
    font-size: 22px; 
    color: #00f5ff;
    margin-bottom: 16px; 
    font-weight: 600;
    text-shadow: 0 0 10px rgba(0, 245, 255, 0.5);
    letter-spacing: 2px;
}
.hero-desc { 
    font-size: 16px; 
    color: #888; 
    max-width: 600px; 
    margin: 0 auto 40px; 
    line-height: 1.8;
}
.hero-buttons { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }

/* Buttons */
.btn { 
    display: inline-block; 
    padding: 14px 32px; 
    border-radius: 6px; 
    font-size: 14px; 
    font-weight: 700; 
    cursor: pointer; 
    transition: all 0.3s; 
    border: none; 
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
}
.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}
.btn:hover::before {
    width: 300px;
    height: 300px;
}
.btn-primary { 
    background: linear-gradient(135deg, #00f5ff, #ff00ff); 
    color: #000;
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.4);
}
.btn-primary:hover { 
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 245, 255, 0.6), 0 0 60px rgba(255, 0, 255, 0.4);
}
.btn-outline { 
    border: 2px solid #00f5ff; 
    color: #00f5ff; 
    background: transparent;
}
.btn-outline:hover { 
    background: rgba(0, 245, 255, 0.1);
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.5);
}
.btn-text { color: #00f5ff; font-weight: 700; padding: 8px 0; }
.btn-text:hover { color: #ff00ff; text-shadow: 0 0 10px rgba(255, 0, 255, 0.5); }
.btn-sm { padding: 10px 20px; font-size: 12px; }
.btn-lg { padding: 16px 40px; font-size: 15px; }
.btn-block { display: block; width: 100%; }

/* Sections */
.section { padding: 100px 0; position: relative; }
.section-light { background: rgba(15, 15, 35, 0.5); }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { 
    font-size: 42px; 
    font-weight: 800; 
    margin-bottom: 16px;
    background: linear-gradient(90deg, #00f5ff, #ff00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 4px;
}
.section-header p { font-size: 16px; color: #888; letter-spacing: 2px; }
.section-more { text-align: center; margin-top: 50px; }

/* Page Header */
.page-header { 
    padding: 140px 0 60px; 
    text-align: center;
    background: radial-gradient(ellipse at top, rgba(0, 245, 255, 0.15) 0%, transparent 60%);
    position: relative;
}
.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #00f5ff, transparent);
}
.page-header h1 { 
    font-size: 48px; 
    font-weight: 800; 
    margin-bottom: 16px;
    background: linear-gradient(90deg, #00f5ff, #ff00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 4px;
}
.page-header p { font-size: 16px; color: #888; letter-spacing: 2px; }

/* Team Grid */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.team-card { 
    background: rgba(20, 20, 40, 0.8);
    border: 1px solid rgba(0, 245, 255, 0.2);
    border-radius: 12px; 
    padding: 30px; 
    text-align: center; 
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}
.team-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(0, 245, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s;
    opacity: 0;
}
.team-card:hover::before {
    opacity: 1;
    animation: shine 0.6s;
}
@keyframes shine {
    from { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    to { transform: translateX(100%) translateY(100%) rotate(45deg); }
}
.team-card:hover { 
    transform: translateY(-8px);
    border-color: #00f5ff;
    box-shadow: 0 10px 40px rgba(0, 245, 255, 0.3);
}
.team-avatar { 
    width: 120px; 
    height: 120px; 
    margin: 0 auto 20px; 
    border-radius: 50%; 
    overflow: hidden;
    border: 2px solid #00f5ff;
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.4);
}
.team-avatar img { width: 100%; height: 100%; object-fit: cover; }
.avatar-placeholder { 
    width: 100%; 
    height: 100%; 
    background: linear-gradient(135deg, #00f5ff, #ff00ff);
    color: #000; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 42px; 
    font-weight: 900;
}
.team-card h3 { 
    font-size: 22px; 
    margin-bottom: 8px;
    color: #00f5ff;
    text-shadow: 0 0 10px rgba(0, 245, 255, 0.5);
}
.team-position { 
    color: #ff00ff; 
    font-size: 14px; 
    margin-bottom: 14px; 
    font-weight: 600;
    letter-spacing: 2px;
}
.team-desc { color: #aaa; font-size: 14px; line-height: 1.6; }

/* Team Detail */
.team-detail-grid { display: flex; flex-direction: column; gap: 40px; }
.team-detail-card { 
    display: flex; 
    gap: 40px; 
    background: rgba(20, 20, 40, 0.8);
    border: 1px solid rgba(0, 245, 255, 0.2);
    border-radius: 16px; 
    padding: 40px;
    transition: all 0.3s;
}
.team-detail-card:hover {
    border-color: #00f5ff;
    box-shadow: 0 0 30px rgba(0, 245, 255, 0.2);
}
.team-detail-avatar { 
    flex-shrink: 0; 
    width: 200px; 
    height: 200px; 
    border-radius: 12px; 
    overflow: hidden;
    border: 2px solid #00f5ff;
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.4);
}
.team-detail-avatar img { width: 100%; height: 100%; object-fit: cover; }
.avatar-placeholder-lg { 
    width: 100%; 
    height: 100%; 
    background: linear-gradient(135deg, #00f5ff, #ff00ff);
    color: #000; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 72px; 
    font-weight: 900;
}
.team-detail-info h2 { 
    font-size: 32px; 
    margin-bottom: 10px;
    color: #00f5ff;
    text-shadow: 0 0 15px rgba(0, 245, 255, 0.5);
}
.team-detail-position { 
    color: #ff00ff; 
    font-size: 16px; 
    font-weight: 600; 
    margin-bottom: 20px;
    letter-spacing: 2px;
}
.team-detail-desc { color: #ccc; line-height: 1.8; margin-bottom: 24px; }
.team-skills h4 { font-size: 14px; color: #888; margin-bottom: 12px; text-transform: uppercase; letter-spacing: 2px; }
.skill-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.skill-tag { 
    padding: 6px 14px; 
    background: rgba(0, 245, 255, 0.1);
    border: 1px solid #00f5ff;
    color: #00f5ff;
    border-radius: 4px; 
    font-size: 13px;
    box-shadow: 0 0 10px rgba(0, 245, 255, 0.2);
}
.team-social { margin-top: 24px; display: flex; gap: 12px; }
.social-link { 
    width: 40px; 
    height: 40px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    background: rgba(0, 245, 255, 0.1);
    border: 1px solid rgba(0, 245, 255, 0.3);
    border-radius: 8px;
    font-size: 18px; 
    transition: all 0.3s; 
    cursor: pointer;
}
.social-link:hover { 
    background: #00f5ff;
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.5);
}

/* Project Grid */
.project-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 30px; }
.project-card { 
    background: rgba(20, 20, 40, 0.8);
    border: 1px solid rgba(0, 245, 255, 0.2);
    border-radius: 12px; 
    overflow: hidden;
    transition: all 0.4s;
}
.project-card:hover { 
    transform: translateY(-8px);
    border-color: #ff00ff;
    box-shadow: 0 10px 40px rgba(255, 0, 255, 0.3);
}
.project-cover { 
    height: 220px; 
    overflow: hidden; 
    background: rgba(0, 0, 0, 0.5);
    position: relative;
}
.project-cover img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    transition: transform 0.5s;
}
.project-card:hover .project-cover img { transform: scale(1.1); }
.cover-placeholder { 
    width: 100%; 
    height: 100%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 60px;
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.1), rgba(255, 0, 255, 0.1));
}
.cover-placeholder-lg { 
    width: 100%; 
    height: 100%; 
    min-height: 200px;
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 80px;
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.1), rgba(255, 0, 255, 0.1));
}
.project-info { padding: 24px; }
.project-info h3 { 
    font-size: 20px; 
    margin-bottom: 12px;
    color: #00f5ff;
}
.project-info p { color: #aaa; font-size: 14px; margin-bottom: 16px; line-height: 1.6; }
.project-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tag { 
    padding: 4px 12px; 
    background: rgba(255, 0, 255, 0.1);
    border: 1px solid #ff00ff;
    color: #ff00ff;
    border-radius: 4px; 
    font-size: 12px;
}

/* Project Detail */
.project-detail-grid { display: flex; flex-direction: column; gap: 40px; }
.project-detail-card { 
    display: flex; 
    gap: 40px; 
    background: rgba(20, 20, 40, 0.8);
    border: 1px solid rgba(0, 245, 255, 0.2);
    border-radius: 16px; 
    overflow: hidden;
    transition: all 0.3s;
}
.project-detail-card:hover {
    border-color: #00f5ff;
    box-shadow: 0 0 30px rgba(0, 245, 255, 0.2);
}
.project-detail-cover { 
    flex-shrink: 0; 
    width: 400px; 
    min-height: 300px;
    background: rgba(0, 0, 0, 0.5);
}
.project-detail-cover img { width: 100%; height: 100%; object-fit: cover; }
.project-detail-info { padding: 30px; flex: 1; }
.project-detail-info h2 { 
    font-size: 32px; 
    margin-bottom: 20px;
    color: #00f5ff;
    text-shadow: 0 0 15px rgba(0, 245, 255, 0.5);
}
.project-detail-desc { color: #ccc; line-height: 1.8; margin-bottom: 24px; }
.project-detail-content { 
    color: #bbb; 
    line-height: 1.8; 
    margin-bottom: 24px; 
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-left: 3px solid #00f5ff;
    border-radius: 4px;
}
.project-detail-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 24px; }

/* Product Grid */
.product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.product-card { 
    background: rgba(20, 20, 40, 0.8);
    border: 1px solid rgba(0, 245, 255, 0.2);
    border-radius: 12px; 
    overflow: hidden;
    transition: all 0.4s;
}
.product-card:hover { 
    transform: translateY(-8px);
    border-color: #ff00ff;
    box-shadow: 0 10px 40px rgba(255, 0, 255, 0.3);
}
.product-media { 
    height: 220px; 
    overflow: hidden; 
    background: rgba(0, 0, 0, 0.5);
    position: relative; 
    cursor: pointer;
}
.product-media img, .product-media video { width: 100%; height: 100%; object-fit: cover; }
.play-overlay { 
    position: absolute; 
    top: 50%; 
    left: 50%; 
    transform: translate(-50%,-50%); 
    width: 60px; 
    height: 60px;
    background: rgba(0, 245, 255, 0.9);
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 24px; 
    color: #000;
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.5);
}
.product-info { padding: 20px; }
.product-info h3 { 
    font-size: 17px; 
    margin-bottom: 10px;
    color: #00f5ff;
}
.product-info p { color: #aaa; font-size: 13px; margin-bottom: 14px; }
.product-price { 
    font-size: 24px; 
    font-weight: 800;
    background: linear-gradient(90deg, #00f5ff, #ff00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Product Showcase */
.category-filter { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-bottom: 50px; }
.filter-btn { 
    padding: 10px 24px; 
    border-radius: 6px;
    font-size: 13px; 
    color: #aaa;
    background: rgba(20, 20, 40, 0.8);
    border: 1px solid rgba(0, 245, 255, 0.2);
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}
.filter-btn:hover, .filter-btn.active { 
    background: linear-gradient(135deg, #00f5ff, #ff00ff);
    color: #000;
    border-color: transparent;
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.5);
}
.product-showcase-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; }
.product-showcase-card { 
    background: rgba(20, 20, 40, 0.8);
    border: 1px solid rgba(0, 245, 255, 0.2);
    border-radius: 12px; 
    overflow: hidden;
    transition: all 0.4s;
}
.product-showcase-card:hover { 
    transform: translateY(-8px);
    border-color: #ff00ff;
    box-shadow: 0 10px 40px rgba(255, 0, 255, 0.3);
}
.product-showcase-media { 
    height: 260px; 
    overflow: hidden; 
    background: rgba(0, 0, 0, 0.5);
    position: relative; 
    cursor: pointer;
}
.product-showcase-media img, .product-showcase-media video { 
    width: 100%; 
    height: 100%; 
    object-fit: cover;
    transition: transform 0.5s;
}
.product-showcase-card:hover .product-showcase-media img,
.product-showcase-card:hover .product-showcase-media video { transform: scale(1.1); }
.video-play-btn { 
    position: absolute; 
    top: 50%; 
    left: 50%; 
    transform: translate(-50%,-50%); 
    width: 70px; 
    height: 70px;
    background: rgba(0, 245, 255, 0.9);
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 28px; 
    color: #000;
    box-shadow: 0 0 30px rgba(0, 245, 255, 0.6);
    transition: all 0.3s;
}
.video-play-btn:hover { transform: translate(-50%,-50%) scale(1.1); }
.media-badge { 
    position: absolute; 
    top: 14px; 
    right: 14px; 
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.video-badge { background: rgba(255, 0, 255, 0.9); color: #fff; box-shadow: 0 0 10px rgba(255, 0, 255, 0.5); }
.image-badge { background: rgba(0, 245, 255, 0.9); color: #000; box-shadow: 0 0 10px rgba(0, 245, 255, 0.5); }
.product-showcase-info { padding: 24px; }
.product-showcase-info h3 { 
    font-size: 19px; 
    margin-bottom: 12px;
    color: #00f5ff;
}
.product-showcase-info p { color: #aaa; font-size: 14px; margin-bottom: 20px; line-height: 1.6; }
.product-showcase-footer { display: flex; align-items: center; justify-content: space-between; }
.product-price-lg { 
    font-size: 26px; 
    font-weight: 800;
    background: linear-gradient(90deg, #00f5ff, #ff00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact-info-card, .contact-form-card { 
    background: rgba(20, 20, 40, 0.8);
    border: 1px solid rgba(0, 245, 255, 0.2);
    border-radius: 16px; 
    padding: 40px;
}
.contact-info-card h2, .contact-form-card h2 { 
    font-size: 26px; 
    margin-bottom: 30px;
    color: #00f5ff;
}
.contact-item { display: flex; gap: 18px; margin-bottom: 28px; }
.contact-icon { font-size: 32px; flex-shrink: 0; }
.contact-item h4 { font-size: 13px; color: #888; margin-bottom: 6px; text-transform: uppercase; letter-spacing: 2px; }
.contact-item p { color: #00f5ff; font-size: 16px; }

/* Forms */
.form-group { margin-bottom: 20px; }
.form-group label { 
    display: block; 
    font-size: 13px; 
    color: #888; 
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.form-group input, .form-group textarea, .form-group select { 
    width: 100%; 
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 245, 255, 0.2);
    border-radius: 6px;
    font-size: 14px; 
    color: #e0e0e0;
    transition: all 0.3s;
    outline: none;
    font-family: inherit;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { 
    border-color: #00f5ff;
    box-shadow: 0 0 15px rgba(0, 245, 255, 0.3);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* CTA Section */
.cta-section { 
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.1), rgba(255, 0, 255, 0.1));
    border-top: 1px solid rgba(0, 245, 255, 0.2);
    border-bottom: 1px solid rgba(255, 0, 255, 0.2);
    text-align: center;
}
.cta-section h2 { 
    font-size: 36px; 
    margin-bottom: 16px;
    color: #00f5ff;
    text-shadow: 0 0 20px rgba(0, 245, 255, 0.5);
}
.cta-section p { font-size: 17px; margin-bottom: 36px; color: #aaa; }
.cta-section .btn-primary { 
    background: linear-gradient(135deg, #00f5ff, #ff00ff);
    color: #000;
}
.cta-section .btn-primary:hover {
    box-shadow: 0 0 40px rgba(0, 245, 255, 0.6);
}

/* Footer */
.footer { 
    background: #050510;
    border-top: 1px solid rgba(0, 245, 255, 0.1);
    padding: 60px 0 30px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer h3 { 
    color: #00f5ff;
    font-size: 22px; 
    margin-bottom: 16px;
    text-shadow: 0 0 10px rgba(0, 245, 255, 0.5);
}
.footer h4 { 
    color: #ff00ff;
    font-size: 15px; 
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.footer-desc { font-size: 14px; line-height: 1.8; color: #888; }
.footer ul li { margin-bottom: 12px; }
.footer ul a { 
    color: #888;
    font-size: 14px; 
    transition: all 0.3s;
}
.footer ul a:hover { 
    color: #00f5ff;
    text-shadow: 0 0 10px rgba(0, 245, 255, 0.5);
}
.contact-list li { color: #888; font-size: 14px; }
.footer-bottom { 
    text-align: center; 
    padding-top: 30px;
    border-top: 1px solid rgba(0, 245, 255, 0.1);
}
.footer-bottom p { color: #666; font-size: 13px; }

/* Empty State */
.empty-state { text-align: center; padding: 80px 20px; color: #666; }
.empty-state p { font-size: 16px; }

/* Responsive */
@media (max-width: 768px) {
    .menu-toggle { display: block; }
    .nav-menu { 
        position: absolute; 
        top: 70px; 
        left: 0; 
        right: 0; 
        background: rgba(10, 10, 26, 0.98);
        flex-direction: column; 
        padding: 20px;
        border-bottom: 1px solid rgba(0, 245, 255, 0.1);
        display: none;
    }
    .nav-menu.active { display: flex; }
    .hero-title { font-size: 36px; }
    .hero-subtitle { font-size: 18px; }
    .section { padding: 60px 0; }
    .section-header h2 { font-size: 28px; }
    .team-detail-card { flex-direction: column; }
    .team-detail-avatar { width: 100%; height: 200px; }
    .project-detail-card { flex-direction: column; }
    .project-detail-cover { width: 100%; min-height: 200px; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .page-header { padding: 120px 0 50px; }
    .page-header h1 { font-size: 32px; }
}
