/* 基础样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Microsoft YaHei', sans-serif;
}

body {
    background-color: #0a0a1a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(37, 117, 252, 0.1) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(106, 17, 203, 0.1) 0%, transparent 20%);
}

/* 导航栏样式 */
header {
    background: rgba(10, 10, 26, 0.95);
    padding: 15px 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #1e2a47;
    backdrop-filter: blur(10px);
}

.logo {
    font-size: 24px;
    font-weight: bold;
    background: linear-gradient(45deg, #6a11cb, #2575fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links a {
    color: #b0b7c3;
    text-decoration: none;
    margin-left: 25px;
    transition: color 0.3s;
    font-weight: 500;
    position: relative;
    font-size: 14px;
}

.nav-links a:hover {
    color: #2575fc;
}

.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background: rgba(20, 25, 45, 0.95);
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
    z-index: 1;
    border-radius: 8px;
    top: 100%;
    left: 0;
    margin-top: 15px;
    border: 1px solid #1e2a47;
    backdrop-filter: blur(10px);
}

.dropdown-content a {
    color: #b0b7c3;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    margin: 0;
    transition: all 0.3s;
    border-bottom: 1px solid rgba(30, 42, 71, 0.5);
    font-size: 14px;
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content a:hover {
    background: rgba(37, 117, 252, 0.2);
    color: #2575fc;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown:hover .dropbtn {
    color: #2575fc;
}

/* 移动端菜单按钮 */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #b0b7c3;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
}

/* 英雄区域样式 */
.hero {
    background: linear-gradient(rgba(10, 10, 26, 0.85), rgba(10, 10, 26, 0.9)),
                url('https://images.unsplash.com/photo-1542751371-adc38448a05e?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 10%;
    position: relative;
}

.hero-content {
    max-width: 650px;
    z-index: 2;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #6a11cb, #2575fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #b0b7c3;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #6a11cb, #2575fc);
    color: white;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 15px rgba(37, 117, 252, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 117, 252, 0.4);
}

/* 服务特色区域 */
.features {
    padding: 80px 10%;
    text-align: center;
}

.features h2 {
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: #ffffff;
    position: relative;
    display: inline-block;
}

.features h2:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(45deg, #6a11cb, #2575fc);
    border-radius: 2px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    background: rgba(30, 42, 71, 0.5);
    padding: 30px 25px;
    border-radius: 15px;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    background: rgba(30, 42, 71, 0.7);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #6a11cb;
}

.feature-card p {
    font-size: 0.95rem;
}

/* 页脚样式 */
footer {
    background: #070711;
    padding: 40px 10% 20px;
    text-align: center;
    border-top: 1px solid #1e2a47;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 25px;
    gap: 15px;
}

.footer-links a {
    color: #b0b7c3;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: #2575fc;
}

.copyright {
    color: #6c757d;
    font-size: 0.85rem;
}

/* 页面内容样式 */
.page-container {
    max-width: 1100px;
    margin: 100px auto 60px;
    padding: 0 20px;
}

.page-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    background: linear-gradient(45deg, #6a11cb, #2575fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.page-header p {
    font-size: 1.1rem;
    color: #b0b7c3;
    max-width: 700px;
    margin: 0 auto;
}

.section {
    background: rgba(30, 42, 71, 0.3);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.section-title {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: #6a11cb;
    display: flex;
    align-items: center;
}

.section-title i {
    margin-right: 12px;
    background: linear-gradient(45deg, #6a11cb, #2575fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.4rem;
}

.section-content {
    font-size: 1rem;
    color: #e0e0e0;
    line-height: 1.7;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.contact-item {
    background: rgba(37, 117, 252, 0.1);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s;
    border: 1px solid rgba(37, 117, 252, 0.2);
}

.contact-item:hover {
    transform: translateY(-5px);
    background: rgba(37, 117, 252, 0.15);
}

.contact-icon {
    font-size: 2.2rem;
    margin-bottom: 12px;
    background: linear-gradient(45deg, #6a11cb, #2575fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-title {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #fff;
}

.contact-detail {
    font-size: 1rem;
    color: #b0b7c3;
}

.faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
}

.faq-question {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: #6a11cb;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    color: #b0b7c3;
    line-height: 1.6;
    display: none;
    font-size: 0.95rem;
}

.faq-answer.active {
    display: block;
}

/* 团队页面特殊样式 */
.teams-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

.team-card {
    background: rgba(30, 42, 71, 0.5);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-decoration: none;
    color: inherit;
    display: block;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
    background: rgba(30, 42, 71, 0.7);
    text-decoration: none;
    color: inherit;
}

.team-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    background: linear-gradient(45deg, #6a11cb, #2575fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.team-name {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #6a11cb;
}

.team-desc {
    color: #b0b7c3;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.team-stats {
    display: flex;
    justify-content: space-around;
    margin-top: 15px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 1.3rem;
    font-weight: bold;
    color: #2575fc;
}

.stat-label {
    font-size: 0.85rem;
    color: #b0b7c3;
}

/* 游戏卡片样式 */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.game-card {
    background: rgba(37, 117, 252, 0.1);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid rgba(37, 117, 252, 0.2);
    cursor: pointer;
}

.game-card:hover {
    background: rgba(37, 117, 252, 0.15);
}

.game-icon {
    font-size: 2.2rem;
    margin-bottom: 12px;
}

.game-card h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #fff;
}

.game-card p {
    color: #b0b7c3;
    margin-bottom: 12px;
    font-size: 0.85rem;
}

.game-stats {
    display: flex;
    justify-content: space-around;
    font-size: 0.75rem;
    color: #6a11cb;
    font-weight: bold;
}

/* 价格表格样式 */
.pricing-table {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.pricing-tier {
    background: rgba(30, 42, 71, 0.5);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-tier.featured {
    background: rgba(106, 17, 203, 0.2);
    border: 2px solid #6a11cb;
    transform: scale(1.05);
}

.pricing-tier h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #6a11cb;
}

.price {
    font-size: 1.8rem;
    font-weight: bold;
    color: #2575fc;
    margin-bottom: 15px;
}

.pricing-tier ul {
    list-style: none;
    text-align: left;
}

.pricing-tier li {
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #b0b7c3;
    font-size: 0.9rem;
}

.pricing-tier li:last-child {
    border-bottom: none;
}

/* 套餐卡片样式 */
.package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.package-card {
    background: rgba(30, 42, 71, 0.5);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.package-card.popular {
    background: rgba(106, 17, 203, 0.2);
    border: 2px solid #6a11cb;
    transform: scale(1.05);
}

.package-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #6a11cb;
}

.package-price {
    font-size: 1.8rem;
    font-weight: bold;
    color: #2575fc;
    margin-bottom: 8px;
}

.package-desc {
    color: #b0b7c3;
    margin-bottom: 15px;
    font-size: 0.85rem;
}

.package-card ul {
    list-style: none;
    text-align: left;
}

.package-card li {
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #b0b7c3;
    font-size: 0.85rem;
}

.package-card li:last-child {
    border-bottom: none;
}

/* 隐私政策页面特殊样式 */
.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.right-item {
    background: rgba(37, 117, 252, 0.1);
    border-radius: 10px;
    padding: 18px;
    text-align: center;
    transition: transform 0.3s;
    border: 1px solid rgba(37, 117, 252, 0.2);
}

.right-item:hover {
    transform: translateY(-5px);
    background: rgba(37, 117, 252, 0.15);
}

.right-icon {
    font-size: 1.8rem;
    margin-bottom: 12px;
    background: linear-gradient(45deg, #6a11cb, #2575fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.right-item h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: #fff;
}

.right-item p {
    color: #b0b7c3;
    font-size: 0.85rem;
    line-height: 1.4;
}

.section-content h3 {
    color: #6a11cb;
    margin: 18px 0 8px 0;
    font-size: 1.1rem;
}

.section-content ul {
    padding-left: 18px;
}

.section-content li {
    margin-bottom: 6px;
    color: #b0b7c3;
    font-size: 0.95rem;
}

/* 公司组织结构样式 */
.company-structure {
    text-align: center;
    margin: 40px 0;
}

.structure-level {
    margin: 30px 0;
}

.top-level {
    margin-bottom: 25px;
}

.middle-level {
    margin-top: 25px;
}

.team-directors {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.executive-card {
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    border-radius: 18px;
    padding: 30px 25px;
    color: white;
    display: inline-block;
    min-width: 280px;
    box-shadow: 0 12px 30px rgba(106, 17, 203, 0.4);
    transition: transform 0.3s;
}

.executive-card:hover {
    transform: translateY(-8px);
}

.director-card {
    background: rgba(30, 42, 71, 0.7);
    border-radius: 15px;
    padding: 25px 18px;
    border: 2px solid rgba(37, 117, 252, 0.3);
    transition: all 0.3s;
}

.director-card:hover {
    background: rgba(37, 117, 252, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(37, 117, 252, 0.3);
}

.executive-avatar, .director-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.8rem;
}

.executive-card h3, .director-card h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: #fff;
}

.position {
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 4px;
    color: #6a11cb;
}

.department {
    font-size: 0.85rem;
    color: #b0b7c3;
}

.connector-line {
    width: 3px;
    height: 50px;
    background: linear-gradient(to bottom, #6a11cb, #2575fc);
    margin: 0 auto;
    position: relative;
}

.connector-line::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #6a11cb;
}

.connector-line::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #2575fc;
}

/* 关于我们页面样式 */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.value-item {
    background: rgba(37, 117, 252, 0.1);
    border-radius: 12px;
    padding: 22px;
    text-align: center;
    transition: transform 0.3s;
    border: 1px solid rgba(37, 117, 252, 0.2);
}

.value-item:hover {
    transform: translateY(-5px);
    background: rgba(37, 117, 252, 0.15);
}

.value-icon {
    font-size: 2.2rem;
    margin-bottom: 12px;
    background: linear-gradient(45deg, #6a11cb, #2575fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.value-title {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #fff;
}

.value-item p {
    font-size: 0.9rem;
}

.team-message {
    background: rgba(37, 117, 252, 0.1);
    border-radius: 15px;
    padding: 25px;
    border-left: 5px solid #6a11cb;
    font-style: italic;
    font-size: 0.95rem;
}

.signature {
    text-align: right;
    margin-top: 15px;
    font-weight: bold;
    color: #6a11cb;
    font-size: 0.9rem;
}

/* ==================== 响应式设计 ==================== */

/* 平板设备 (768px - 1024px) */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .page-header h1 {
        font-size: 2.2rem;
    }
    
    .features h2 {
        font-size: 2rem;
    }
}

/* 手机设备 (768px 以下) */
@media (max-width: 768px) {
    /* 导航栏移动端样式 */
    header {
        padding: 12px 5%;
    }
    
    .logo {
        font-size: 20px;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background: rgba(10, 10, 26, 0.98);
        flex-direction: column;
        padding: 20px;
        transition: left 0.3s ease;
        backdrop-filter: blur(10px);
        z-index: 999;
        overflow-y: auto;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links a {
        margin: 8px 0;
        padding: 12px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
        text-align: left;
        font-size: 16px;
    }
    
    .dropdown-content {
        position: static;
        box-shadow: none;
        background: rgba(30, 42, 71, 0.5);
        margin-top: 0;
        margin-left: 15px;
    }
    
    /* 英雄区域 */
    .hero {
        padding: 0 5%;
        min-height: 80vh;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .hero p {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }
    
    .cta-button {
        padding: 12px 30px;
        font-size: 0.9rem;
    }
    
    /* 页面内容 */
    .page-container {
        margin: 80px auto 40px;
        padding: 0 15px;
    }
    
    .page-header {
        margin-bottom: 30px;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
    
    .section {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    .section-content {
        font-size: 0.95rem;
    }
    
    /* 网格布局调整为单列 */
    .features-grid,
    .teams-grid,
    .games-grid,
    .pricing-table,
    .package-grid,
    .team-directors,
    .values-grid,
    .rights-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .features {
        padding: 60px 5%;
    }
    
    .features h2 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .feature-card {
        padding: 20px;
    }
    
    /* 特色卡片缩放取消 */
    .pricing-tier.featured,
    .package-card.popular {
        transform: scale(1);
    }
    
    /* 联系信息 */
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .contact-item {
        padding: 18px;
    }
    
    /* 页脚 */
    footer {
        padding: 30px 5% 15px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 20px;
    }
    
    .footer-links a {
        font-size: 0.85rem;
    }
    
    .copyright {
        font-size: 0.8rem;
    }
    
    /* 公司结构 */
    .executive-card {
        min-width: 250px;
        padding: 25px 20px;
    }
    
    .executive-avatar, .director-avatar {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .connector-line {
        height: 40px;
    }
}

/* 小屏手机 (480px 以下) */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 0.9rem;
    }
    
    .page-header h1 {
        font-size: 1.6rem;
    }
    
    .features h2 {
        font-size: 1.6rem;
    }
    
    .section-title {
        font-size: 1.3rem;
    }
    
    .cta-button {
        padding: 10px 25px;
        font-size: 0.85rem;
    }
    
    .executive-card {
        min-width: 220px;
        padding: 20px 15px;
    }
    
    .team-stats {
        flex-direction: column;
        gap: 8px;
    }
    
    .game-stats {
        flex-direction: column;
        gap: 5px;
    }
}

/* 横屏手机优化 */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: 120vh;
        padding: 80px 5% 40px;
    }
    
    .nav-links {
        height: calc(100vh - 60px);
        overflow-y: auto;
    }
}

/* 防止文本过小 */
@media (max-width: 360px) {
    html {
        font-size: 14px;
    }
    
    .hero h1 {
        font-size: 1.6rem;
    }
    
    .page-header h1 {
        font-size: 1.4rem;
    }
}
/* 公司架构页面样式 */
.org-chart {
    text-align: center;
    margin: 40px 0;
    position: relative;
}

.org-level {
    margin: 30px 0;
}

.top-level {
    margin-bottom: 40px;
}

.middle-level {
    margin-top: 40px;
}

/* 组织架构卡片 */
.org-card {
    background: rgba(30, 42, 71, 0.7);
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    cursor: pointer;
    position: relative;
    min-width: 280px;
    margin: 0 auto;
}

.org-card.executive {
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    color: white;
    box-shadow: 0 15px 35px rgba(106, 17, 203, 0.4);
}

.org-card.director {
    background: rgba(37, 117, 252, 0.15);
    border: 2px solid rgba(37, 117, 252, 0.3);
    box-shadow: 0 8px 25px rgba(37, 117, 252, 0.2);
}

.org-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(37, 117, 252, 0.3);
}

.org-card.card-active {
    border-color: #6a11cb;
    box-shadow: 0 0 30px rgba(106, 17, 203, 0.6);
}

.card-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2.2rem;
    transition: all 0.3s ease;
}

.org-card:hover .card-avatar {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.3);
}

.org-card h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: #fff;
}

.card-position {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 5px;
    color: #6a11cb;
}

.org-card.executive .card-position {
    color: #fff;
}

.card-department {
    font-size: 0.95rem;
    color: #b0b7c3;
    margin-bottom: 15px;
}

.card-contact {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.card-contact span {
    font-size: 0.9rem;
    color: #b0b7c3;
}

/* 组织架构连接线 */
.org-connectors {
    position: relative;
    height: 80px;
    margin: 0 auto;
}

.connector-line {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.main-connector {
    width: 3px;
    height: 60px;
    background: linear-gradient(to bottom, #6a11cb, #2575fc);
    top: 0;
}

.connector-branches {
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 100px;
}

.branch-line {
    width: 100px;
    height: 3px;
    background: linear-gradient(to right, #2575fc, #6a11cb);
}

/* 董事网格布局 */
.directors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

/* 团队成员详细卡片 */
.team-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.detail-card {
    background: rgba(30, 42, 71, 0.5);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    background: rgba(30, 42, 71, 0.7);
}

.detail-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.detail-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(45deg, #6a11cb, #2575fc);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 1.8rem;
    color: white;
}

.detail-info h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
    color: #fff;
}

.detail-position {
    font-size: 1rem;
    color: #6a11cb;
    font-weight: bold;
    margin-bottom: 8px;
}

.detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.tag.executive {
    background: rgba(106, 17, 203, 0.3);
    color: #c792ea;
    border: 1px solid #6a11cb;
}

.tag.director {
    background: rgba(37, 117, 252, 0.3);
    color: #82aaff;
    border: 1px solid #2575fc;
}

.tag.founder {
    background: rgba(255, 193, 7, 0.3);
    color: #ffd54f;
    border: 1px solid #ffc107;
}

.tag.creative {
    background: rgba(156, 39, 176, 0.3);
    color: #e1bee7;
    border: 1px solid #9c27b0;
}

.tag.technical {
    background: rgba(0, 150, 136, 0.3);
    color: #80cbc4;
    border: 1px solid #009688;
}

.tag.vip {
    background: rgba(255, 87, 34, 0.3);
    color: #ffab91;
    border: 1px solid #ff5722;
}

.detail-content {
    color: #b0b7c3;
}

.detail-section {
    margin-bottom: 20px;
}

.detail-section h4 {
    color: #6a11cb;
    margin-bottom: 10px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.detail-section h4 i {
    margin-right: 8px;
    font-size: 1rem;
}

.detail-section ul {
    padding-left: 20px;
}

.detail-section li {
    margin-bottom: 6px;
    font-size: 0.95rem;
}

.detail-section p {
    font-style: italic;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* 模态框样式 */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 10, 26, 0.9);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: rgba(20, 25, 45, 0.95);
    margin: 5% auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    position: relative;
    border: 1px solid #1e2a47;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 28px;
    font-weight: bold;
    color: #b0b7c3;
    cursor: pointer;
    z-index: 1001;
    transition: color 0.3s;
}

.close-modal:hover {
    color: #2575fc;
}

.modal-card {
    padding: 40px 30px;
    text-align: center;
}

.modal-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(45deg, #6a11cb, #2575fc);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2.5rem;
    color: white;
}

.modal-card h2 {
    font-size: 1.8rem;
    margin-bottom: 8px;
    color: #fff;
}

.modal-position {
    font-size: 1.1rem;
    color: #6a11cb;
    font-weight: bold;
    margin-bottom: 15px;
}

.modal-tags {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 25px;
}

.modal-details {
    text-align: left;
    margin-bottom: 25px;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border-left: 4px solid #6a11cb;
}

.detail-item i {
    font-size: 1.2rem;
    color: #6a11cb;
    margin-right: 15px;
    margin-top: 2px;
    min-width: 20px;
}

.detail-item strong {
    display: block;
    color: #fff;
    margin-bottom: 5px;
    font-size: 0.95rem;
}

.detail-item p {
    color: #b0b7c3;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.modal-contact {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #b0b7c3;
    font-size: 0.9rem;
}

.contact-info i {
    color: #6a11cb;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .org-card {
        min-width: 250px;
        padding: 25px 20px;
    }
    
    .directors-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .connector-branches {
        gap: 50px;
    }
    
    .branch-line {
        width: 50px;
    }
    
    .team-details-grid {
        grid-template-columns: 1fr;
    }
    
    .detail-header {
        flex-direction: column;
        text-align: center;
    }
    
    .detail-avatar {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .modal-content {
        width: 95%;
        margin: 10% auto;
    }
    
    .modal-card {
        padding: 30px 20px;
    }
    
    .modal-avatar {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .org-card {
        min-width: 220px;
        padding: 20px 15px;
    }
    
    .connector-branches {
        gap: 30px;
    }
    
    .branch-line {
        width: 30px;
    }
    
    .card-avatar {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }
    
    .detail-item {
        flex-direction: column;
        text-align: center;
    }
    
    .detail-item i {
        margin-right: 0;
        margin-bottom: 10px;
    }
}