:root {
    --primary: #0066ff;
    --primary-light: #33a6ff;
    --secondary: #00ffcc;
    --dark: #0a0e17;
    --darker: #050811;
    --light: #f0f8ff;
    --gray: #8b9db5;
    --card-bg: rgba(15, 25, 42, 0.75);
    --gradient: linear-gradient(135deg, var(--primary), var(--secondary));
    --glow: 0 0 15px rgba(0, 102, 255, 0.7);
    
    /* 日间模式变量 */
    --light-bg: #f8fbff;
    --light-text: #333;
    --light-card: rgba(255, 255, 255, 0.85);
    --light-card-border: rgba(0, 0, 0, 0.1);
    --light-gray: #7d8591;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: background-color 0.5s ease, color 0.3s ease, border-color 0.3s ease;
}

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--darker);
    color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

body.light-mode {
    background: var(--light-bg);
    color: var(--light-text);
}

.tech-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.tech-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at top, rgba(10, 14, 23, 0.95) 0%, rgba(5, 8, 17, 1) 100%);
}

body.light-mode .tech-bg::before {
    background: radial-gradient(ellipse at top, rgba(248, 251, 255, 0.95) 0%, rgba(235, 241, 252, 1) 100%);
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.05;
}

.shape1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    top: 10%;
    left: 5%;
    filter: blur(60px);
}

.shape2 {
    width: 300px;
    height: 300px;
    background: var(--secondary);
    bottom: 20%;
    right: 5%;
    filter: blur(50px);
}

.shape3 {
    width: 250px;
    height: 250px;
    background: var(--primary);
    top: 40%;
    left: 40%;
    filter: blur(45px);
}

.grid-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 102, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 102, 255, 0.08) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 1;
}

body.light-mode .grid-lines {
    background-image: 
        linear-gradient(rgba(0, 102, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 102, 255, 0.05) 1px, transparent 1px);
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

/* 导航栏 */
.site-header {
    background: rgba(10, 14, 23, 0.85);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 9997;
    border-bottom: 1px solid rgba(0, 102, 255, 0.2);
    transition: all 0.3s ease;
}

body.light-mode .site-header {
    background: rgba(255, 255, 255, 0.85);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    flex-wrap: nowrap;
    gap: 20px;
    min-height: 70px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.nav-toggle {
    display: none;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: var(--light);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    backdrop-filter: blur(10px);
    z-index: 10002;
    position: relative;
}

body.light-mode .nav-toggle {
    background: rgba(0, 102, 255, 0.1);
    border-color: rgba(0, 102, 255, 0.3);
    color: #333;
}

.nav-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--secondary);
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0, 255, 204, 0.3);
}

body.light-mode .nav-toggle:hover {
    background: rgba(0, 102, 255, 0.2);
    border-color: #0066ff;
    box-shadow: 0 0 20px rgba(0, 102, 255, 0.25);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.6rem;
    font-weight: 700;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 1px;
    flex-shrink: 0;
    min-width: 0;
}

.logo a {
    color: var(--light);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
}

body.light-mode .logo a {
    color: #1a1a1a;
}

.logo-icon {
    color: var(--secondary);
    font-size: 1.8rem;
}

body.light-mode .logo-icon {
    color: #0066ff;
}

.logo span {
    background: linear-gradient(to right, var(--primary-light), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

body.light-mode .logo span {
    background: linear-gradient(to right, #0066ff, #00aaff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.main-nav {
    display: flex;
    list-style: none;
    gap: 20px;
    align-items: center;
    flex-wrap: nowrap;
    flex-shrink: 1;
    min-width: 0;
}

.main-nav a,
.main-nav .nav-link {
    color: var(--light);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    flex-shrink: 0;
}

body.light-mode .main-nav a,
body.light-mode .main-nav .nav-link {
    color: #333;
}

.main-nav a i,
.main-nav .nav-link i {
    font-size: 0.9rem;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.main-nav a:hover i,
.main-nav a.active i,
.main-nav .nav-link:hover i,
.main-nav .nav-link.active i {
    opacity: 1;
    transform: scale(1.1);
}

.main-nav a:hover,
.main-nav a.active,
.main-nav .nav-link:hover,
.main-nav .nav-link.active {
    color: var(--secondary);
}

body.light-mode .main-nav a:hover,
body.light-mode .main-nav a.active,
body.light-mode .main-nav .nav-link:hover,
body.light-mode .main-nav .nav-link.active {
    color: #0066ff;
}

.main-nav a::after,
.main-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: width 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.main-nav a:hover::after,
.main-nav a.active::after,
.main-nav .nav-link:hover::after,
.main-nav .nav-link.active::after {
    width: 100%;
}

/* 通知按钮 */
.notification-btn {
    position: relative;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--light);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    backdrop-filter: blur(10px);
}

body.light-mode .notification-btn {
    background: rgba(0, 102, 255, 0.1);
    border-color: rgba(0, 102, 255, 0.3);
    color: #333;
}

.notification-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--secondary);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(0, 255, 204, 0.5);
}

body.light-mode .notification-btn:hover {
    background: rgba(0, 102, 255, 0.2);
    border-color: #0066ff;
    box-shadow: 0 0 20px rgba(0, 102, 255, 0.4);
}

.notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    min-width: 20px;
    height: 20px;
    background: #ff3366;
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0 6px;
    box-shadow: 0 2px 8px rgba(255, 51, 102, 0.6);
    animation: pulse 2s infinite;
}

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

/* 公告弹窗 */
.announcements-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
}

.announcements-modal.show {
    display: block;
}

.announcements-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.announcements-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    background: var(--card-bg);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    animation: slideUp 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

body.light-mode .announcements-modal-content {
    background: var(--light-card);
    border-color: var(--light-card-border);
}

.announcements-modal-header {
    padding: 20px 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

body.light-mode .announcements-modal-header {
    background: linear-gradient(135deg, #0066ff, #00aaff);
    border-bottom-color: rgba(0, 0, 0, 0.1);
}

.announcements-modal-header h3 {
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    font-family: 'Orbitron', sans-serif;
}

.announcements-modal-close {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.announcements-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.announcements-modal-body {
    padding: 20px;
    overflow-y: auto;
    flex: 1;
}

.announcement-list-item {
    padding: 15px;
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border-left: 4px solid var(--primary);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

body.light-mode .announcement-list-item {
    background: rgba(0, 102, 255, 0.05);
    border-left-color: #0066ff;
}

.announcement-list-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 102, 255, 0.2);
}

body.light-mode .announcement-list-item:hover {
    background: rgba(0, 102, 255, 0.1);
}

.announcement-list-item.unread {
    border-left-color: #ff3366;
    background: rgba(255, 51, 102, 0.1);
}

body.light-mode .announcement-list-item.unread {
    background: rgba(255, 51, 102, 0.15);
}

.announcement-list-item.unread::before {
    content: '';
    position: absolute;
    top: 15px;
    right: 15px;
    width: 8px;
    height: 8px;
    background: #ff3366;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.announcement-list-item-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--light);
    margin-bottom: 8px;
    font-family: 'Orbitron', sans-serif;
}

body.light-mode .announcement-list-item-title {
    color: #333;
}

.announcement-list-item-preview {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

body.light-mode .announcement-list-item-preview {
    color: var(--light-gray);
}

.announcement-list-item-time {
    font-size: 0.8rem;
    color: var(--gray);
    margin-top: 8px;
    opacity: 0.7;
}

body.light-mode .announcement-list-item-time {
    color: var(--light-gray);
}

.announcement-empty {
    text-align: center;
    padding: 40px 20px;
    color: var(--gray);
}

body.light-mode .announcement-empty {
    color: var(--light-gray);
}

.announcement-empty i {
    font-size: 3rem;
    margin-bottom: 15px;
    opacity: 0.5;
}

/* 公告详情弹窗 */
.announcement-detail-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10001;
}

.announcement-detail-modal.show {
    display: block;
}

.announcement-detail-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.announcement-detail-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 700px;
    max-height: 85vh;
    background: var(--card-bg);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    animation: slideUp 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

body.light-mode .announcement-detail-content {
    background: var(--light-card);
    border-color: var(--light-card-border);
}

.announcement-detail-header {
    padding: 20px 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

body.light-mode .announcement-detail-header {
    background: linear-gradient(135deg, #0066ff, #00aaff);
    border-bottom-color: rgba(0, 0, 0, 0.1);
}

.announcement-detail-header h3 {
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
    font-family: 'Orbitron', sans-serif;
    flex: 1;
    padding-right: 20px;
}

.announcement-detail-close {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.announcement-detail-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.announcement-detail-body {
    padding: 25px;
    overflow-y: auto;
    flex: 1;
    color: var(--light);
    line-height: 1.8;
}

body.light-mode .announcement-detail-body {
    color: var(--light-text);
}

.announcement-detail-body p {
    margin-bottom: 15px;
    font-size: 1rem;
}

.announcement-detail-body p:last-child {
    margin-bottom: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translate(-50%, -40%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: inline-flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .header-actions {
        gap: 10px;
    }

    .notification-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .notification-badge {
        min-width: 18px;
        height: 18px;
        font-size: 0.7rem;
        top: -3px;
        right: -3px;
    }
    
    .announcements-modal-content,
    .announcement-detail-content {
        width: 95%;
        max-height: 90vh;
    }
    
    .announcements-modal-header h3,
    .announcement-detail-header h3 {
        font-size: 1.1rem;
    }
    
    .announcement-list-item {
        padding: 12px;
    }
    
    .announcement-list-item-title {
        font-size: 1rem;
    }
    
    .header-actions {
        gap: 10px;
    }
}

/* 首页横幅 */
.hero {
    min-height: 100vh;
    padding-top: 120px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(5, 8, 17, 0.8), rgba(10, 14, 23, 0.7));
    z-index: 0;
}

body.light-mode .hero::after {
    background: linear-gradient(45deg, rgba(248, 251, 255, 0.7), rgba(235, 241, 252, 0.8));
}

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

.hero h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 4.2rem;
    line-height: 1.15;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
    color: var(--light);
}

body.light-mode .hero h1 {
    color: #1a1a1a;
}

.hero h1 span {
    background: linear-gradient(to right, #fff, var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.25rem;
    color: var(--gray);
    margin-bottom: 40px;
    max-width: 90%;
    font-weight: 300;
    line-height: 1.8;
}

body.light-mode .hero p {
    color: var(--light-gray);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.cta-btn, .btn {
    background: var(--card-bg);
    color: var(--secondary);
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 102, 255, 0.5);
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.cta-btn i, .btn i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.cta-btn:hover i, .btn:hover i {
    transform: translateX(3px);
}

body.light-mode .cta-btn,
body.light-mode .btn {
    background: rgba(255, 255, 255, 0.85);
    color: #0066ff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

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

.cta-btn:hover,
.btn:hover {
    background: rgba(15, 25, 42, 0.9);
    transform: translateY(-5px);
    box-shadow: var(--glow);
    border-color: var(--primary);
}

body.light-mode .cta-btn:hover,
body.light-mode .btn:hover {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 5px 15px rgba(0, 102, 255, 0.2);
    border-color: #0066ff;
}

.cta-btn:hover::before,
.btn:hover::before {
    left: 100%;
}

.outline-btn {
    background: transparent;
    color: var(--secondary);
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 102, 255, 0.5);
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.outline-btn i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.outline-btn:hover i {
    transform: translateX(3px);
}

body.light-mode .outline-btn {
    color: #0066ff;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.outline-btn:hover {
    background: rgba(0, 102, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: var(--glow);
    border-color: var(--primary);
}

body.light-mode .outline-btn:hover {
    background: rgba(0, 102, 255, 0.1);
    box-shadow: 0 5px 15px rgba(0, 102, 255, 0.2);
}

/* 内容区块 */
.section,
.team-section,
.contact-section,
#home,
#services,
#cases,
#team,
#contact {
    scroll-margin-top: 100px;
}

.section {
    padding: 150px 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 120px;
    position: relative;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.4rem;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
    color: var(--light);
}

body.light-mode .section-title {
    color: #1a1a1a;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient);
    border-radius: 4px;
}

body.light-mode .section-title::after {
    background: linear-gradient(to right, #0066ff, #00aaff);
}

.section-subtitle {
    color: var(--gray);
    font-size: 1.3rem;
    line-height: 1.7;
}

body.light-mode .section-subtitle {
    color: var(--light-gray);
}

/* 服务项目样式 */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
}

.service-card {
    background: var(--card-bg);
    border: 1px solid rgba(0, 102, 255, 0.25);
    border-radius: 15px;
    padding: 50px 40px;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

body.light-mode .service-card {
    background: var(--light-card);
    border: 1px solid var(--light-card-border);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-15px);
    border-color: var(--primary);
    box-shadow: var(--glow), 0 20px 40px rgba(0, 0, 0, 0.3);
}

body.light-mode .service-card:hover {
    box-shadow: 0 10px 25px rgba(0, 102, 255, 0.2), 0 15px 30px rgba(0, 0, 0, 0.05);
}

.service-icon-wrapper {
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.2), rgba(0, 255, 204, 0.2));
    border-radius: 15px;
    border: 2px solid rgba(0, 102, 255, 0.3);
}

body.light-mode .service-icon-wrapper {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1), rgba(0, 170, 255, 0.1));
    border: 2px solid rgba(0, 102, 255, 0.2);
}

.service-card-icon {
    font-size: 2.5rem;
    color: var(--secondary);
    transition: all 0.3s ease;
}

body.light-mode .service-card-icon {
    color: #0066ff;
}

.service-card:hover .service-card-icon {
    transform: scale(1.2) rotate(10deg);
}

.service-card h3 {
    font-size: 1.9rem;
    margin-bottom: 20px;
    font-family: 'Orbitron', sans-serif;
    color: var(--light);
}

body.light-mode .service-card h3 {
    color: #1a1a1a;
}

.service-card .brief {
    color: var(--gray);
    margin-bottom: 30px;
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.7;
}

body.light-mode .service-card .brief {
    color: var(--light-gray);
}

.service-items {
    list-style: none;
    margin-top: 25px;
}

.service-items li {
    margin-bottom: 16px;
    position: relative;
    padding-left: 32px;
    font-weight: 300;
    font-size: 1.05rem;
    color: var(--gray);
}

body.light-mode .service-items li {
    color: var(--light-gray);
}

.service-items li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    color: var(--secondary);
    font-size: 1.1rem;
}

body.light-mode .service-items li::before {
    color: #0066ff;
}

/* 案例演示样式 */
.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 40px;
}

.case-card {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease;
    text-decoration: none;
    color: inherit;
    display: block;
    border: 1px solid rgba(0, 102, 255, 0.25);
    backdrop-filter: blur(10px);
}

body.light-mode .case-card {
    background: var(--light-card);
    border: 1px solid var(--light-card-border);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.case-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--glow), 0 15px 35px rgba(0, 0, 0, 0.3);
    border-color: var(--primary);
}

body.light-mode .case-card:hover {
    box-shadow: 0 10px 25px rgba(0, 102, 255, 0.2), 0 15px 30px rgba(0, 0, 0, 0.05);
}

.case-cover {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.case-card:hover .case-cover {
    transform: scale(1.1);
}

.case-info {
    padding: 30px;
    min-height: 120px;
    display: flex;
    flex-direction: column;
}

.case-info h3 {
    color: var(--light);
    margin-bottom: 15px;
    font-size: 1.6rem;
    font-weight: 600;
    font-family: 'Orbitron', sans-serif;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    flex: 1;
}

body.light-mode .case-info h3 {
    color: #1a1a1a;
}

.case-external-icon {
    font-size: 1rem;
    opacity: 0.6;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.case-card:hover .case-external-icon {
    opacity: 1;
    transform: translate(3px, -3px);
}

.case-card:hover .case-info h3 {
    background: linear-gradient(135deg, var(--primary-light), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.case-card:hover .case-info h3 .case-external-icon {
    color: var(--secondary);
    -webkit-text-fill-color: var(--secondary);
}

.case-info p {
    color: var(--gray);
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
    flex: 1;
}

body.light-mode .case-info p {
    color: var(--light-gray);
}

/* 团队成员样式 */
.team-section {
    background: linear-gradient(to top, var(--darker), rgba(15, 25, 42, 0.7));
    padding: 130px 0;
    border-top: 1px solid rgba(0, 102, 255, 0.1);
    border-bottom: 1px solid rgba(0, 102, 255, 0.1);
    position: relative;
    overflow: hidden;
}

body.light-mode .team-section {
    background: linear-gradient(to top, #f0f5ff, rgba(240, 245, 255, 0.8));
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
}

.team-card {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease;
    border: 1px solid rgba(0, 102, 255, 0.25);
    position: relative;
    backdrop-filter: blur(10px);
    text-align: center;
    padding: 40px 30px;
}

body.light-mode .team-card {
    background: var(--light-card);
    border: 1px solid var(--light-card-border);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--glow), 0 15px 35px rgba(0, 0, 0, 0.3);
    border-color: var(--primary);
}

body.light-mode .team-card:hover {
    box-shadow: 0 10px 25px rgba(0, 102, 255, 0.2), 0 15px 30px rgba(0, 0, 0, 0.05);
}

.team-avatar {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 25px;
    display: block;
    border: 5px solid transparent;
    background: linear-gradient(135deg, #0066ff, #00ffcc);
    padding: 5px;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.team-card:hover .team-avatar {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--glow);
}

.team-card h3 {
    color: var(--light);
    margin-bottom: 12px;
    font-size: 1.6rem;
    font-weight: 700;
    font-family: 'Orbitron', sans-serif;
    position: relative;
    z-index: 1;
}

body.light-mode .team-card h3 {
    color: #1a1a1a;
}

.team-position {
    background: linear-gradient(135deg, var(--primary-light), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.1rem;
    font-family: 'Orbitron', sans-serif;
    position: relative;
    z-index: 1;
}

body.light-mode .team-position {
    background: linear-gradient(135deg, #0066ff, #00aaff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.team-skills {
    color: var(--gray);
    font-size: 1.05rem;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

body.light-mode .team-skills {
    color: var(--light-gray);
}

.team-homepage {
    margin-top: 20px;
    position: relative;
    z-index: 1;
}

.team-homepage-link {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(0, 102, 255, 0.1);
    border-radius: 25px;
    border: 1px solid rgba(0, 102, 255, 0.3);
}

body.light-mode .team-homepage-link {
    color: #0066ff;
    background: rgba(0, 102, 255, 0.05);
    border: 1px solid rgba(0, 102, 255, 0.2);
}

.team-homepage-link:hover {
    transform: translateY(-3px);
    background: rgba(0, 102, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
    text-decoration: none;
}

body.light-mode .team-homepage-link:hover {
    background: rgba(0, 102, 255, 0.1);
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.2);
}

.team-homepage-link i {
    transition: transform 0.3s ease;
}

.team-homepage-link:hover i {
    transform: translateX(3px);
}

/* 联系我们样式 */
.contact-section {
    padding: 130px 0;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    background: var(--card-bg);
    border-radius: 20px;
    padding: 70px;
    border: 1px solid rgba(0, 102, 255, 0.25);
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    max-width: 900px;
    margin: 0 auto;
    backdrop-filter: blur(10px);
}

body.light-mode .contact-container {
    background: var(--light-card);
    border: 1px solid var(--light-card-border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-info h3 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    position: relative;
    font-family: 'Orbitron', sans-serif;
    color: var(--light);
}

body.light-mode .contact-info h3 {
    color: #1a1a1a;
}

.contact-info h3::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 70px;
    height: 3px;
    background: var(--gradient);
    border-radius: 3px;
}

body.light-mode .contact-info h3::after {
    background: linear-gradient(to right, #0066ff, #00aaff);
}

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

.contact-method {
    background: rgba(15, 25, 42, 0.6);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 102, 255, 0.2);
}

body.light-mode .contact-method {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-method:hover {
    transform: translateY(-5px);
    box-shadow: var(--glow);
    border-color: var(--primary);
}

body.light-mode .contact-method:hover {
    box-shadow: 0 5px 15px rgba(0, 102, 255, 0.2);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--secondary);
}

body.light-mode .contact-icon {
    color: #0066ff;
}

.contact-method h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--light);
}

body.light-mode .contact-method h4 {
    color: #1a1a1a;
}

.contact-method p {
    color: var(--gray);
    margin-bottom: 15px;
    font-size: 1.1rem;
    min-height: 50px;
}

body.light-mode .contact-method p {
    color: var(--light-gray);
}

.contact-method .btn {
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    width: 100%;
}

.contact-image-wrapper {
    width: 100%;
    height: 200px;
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

body.light-mode .contact-image-wrapper {
    background: rgba(0, 0, 0, 0.05);
}

.contact-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.contact-image:hover {
    transform: scale(1.05);
}

/* 图片查看器弹窗 */
.image-viewer-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10002;
}

.image-viewer-modal.show {
    display: block;
}

.image-viewer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.image-viewer-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: slideUp 0.3s ease;
}

.image-viewer-content img {
    max-width: 800px;
    max-height: 600px;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.image-viewer-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    z-index: 10003;
}

.image-viewer-close:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: rotate(90deg);
}

.contact-item {
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(15, 25, 42, 0.6);
    border-radius: 12px;
    border-left: 4px solid var(--primary);
    transition: all 0.3s ease;
}

body.light-mode .contact-item {
    background: rgba(255, 255, 255, 0.7);
    border-left-color: #0066ff;
}

.contact-item:hover {
    transform: translateX(5px);
    box-shadow: var(--glow);
}

body.light-mode .contact-item:hover {
    box-shadow: 0 5px 15px rgba(0, 102, 255, 0.2);
}

.contact-item strong {
    color: var(--light);
    display: block;
    margin-bottom: 10px;
    font-size: 1.1rem;
    font-weight: 700;
}

body.light-mode .contact-item strong {
    color: #1a1a1a;
}

.contact-item p {
    color: var(--gray);
    font-size: 1.05rem;
    line-height: 1.8;
}

body.light-mode .contact-item p {
    color: var(--light-gray);
}

.contact-item a {
    color: var(--secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

body.light-mode .contact-item a {
    color: #0066ff;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* 底部样式 */
.site-footer {
    background: rgba(5, 8, 17, 0.95);
    padding: 100px 0 60px;
    border-top: 1px solid rgba(0, 102, 255, 0.2);
    position: relative;
}

body.light-mode .site-footer {
    background: rgba(245, 248, 255, 0.95);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Orbitron', sans-serif;
    color: var(--light);
    flex-wrap: wrap;
}

.footer-info h3 i {
    color: var(--secondary);
    font-size: 1.6rem;
}

body.light-mode .footer-info h3 i {
    color: #0066ff;
}

body.light-mode .footer-info h3 {
    color: #1a1a1a;
}

.footer-info p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 30px;
    font-weight: 300;
}

body.light-mode .footer-info p {
    color: #666;
}

.footer-contact h4 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
    font-family: 'Orbitron', sans-serif;
    color: var(--light);
    display: flex;
    align-items: center;
    gap: 10px;
}

body.light-mode .footer-contact h4 {
    color: #1a1a1a;
}

.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gradient);
    border-radius: 2px;
}

body.light-mode .footer-contact h4::after {
    background: linear-gradient(to right, #0066ff, #00aaff);
}

.footer-contact p {
    margin-bottom: 12px;
    color: var(--gray);
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

body.light-mode .footer-contact p {
    color: #666;
}

.footer-contact p i {
    color: var(--secondary);
    font-size: 1rem;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

body.light-mode .footer-contact p i {
    color: #0066ff;
}

.footer-links {
    display: flex;
    flex-direction: column;
}

.footer-links h4 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
    font-family: 'Orbitron', sans-serif;
    color: var(--light);
    display: flex;
    align-items: center;
    gap: 10px;
}

body.light-mode .footer-links h4 {
    color: #1a1a1a;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gradient);
    border-radius: 2px;
}

body.light-mode .footer-links h4::after {
    background: linear-gradient(to right, #0066ff, #00aaff);
}

.friend-links-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.friend-link-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 15px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    text-decoration: none;
    color: var(--gray);
    transition: all 0.3s ease;
    font-size: 0.9rem;
    min-height: 40px;
}

body.light-mode .friend-link-item {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #666;
}

.friend-link-item:hover {
    background: rgba(0, 102, 255, 0.2);
    border-color: rgba(0, 102, 255, 0.5);
    transform: translateY(-2px);
    color: var(--secondary);
}

body.light-mode .friend-link-item:hover {
    background: rgba(0, 102, 255, 0.1);
    border-color: rgba(0, 102, 255, 0.3);
    color: #0066ff;
}

.friend-link-item img {
    max-height: 30px;
    max-width: 120px;
    object-fit: contain;
    display: block;
}

.friend-link-item span {
    white-space: nowrap;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(0, 102, 255, 0.2);
    color: var(--gray);
    font-size: 1rem;
}

body.light-mode .footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    color: #666;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .section-title {
        font-size: 2.8rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
    }
}

/* 移动端侧边栏遮罩 */
.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9998;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.nav-overlay.is-active {
    display: block;
    opacity: 1;
    pointer-events: auto;
}

/* PC端优化：确保导航栏不换行 */
@media (min-width: 769px) {
    .header-content {
        flex-wrap: nowrap;
    }
    
    .main-nav {
        flex-wrap: nowrap;
        overflow: visible;
        gap: 18px;
    }
    
    .main-nav a,
    .main-nav .nav-link {
        font-size: 0.9rem;
        gap: 5px;
        padding: 8px 4px;
    }
    
    .main-nav a i,
    .main-nav .nav-link i {
        font-size: 0.8rem;
    }
    
    .logo {
        font-size: 1.5rem;
        flex-shrink: 0;
    }
    
    .header-actions {
        flex-shrink: 0;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: center;
        gap: 12px;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -320px;
        width: 280px;
        height: 100vh;
        background: linear-gradient(135deg, rgba(10, 14, 23, 1) 0%, rgba(15, 20, 35, 1) 100%) !important;
        border-left: 2px solid rgba(0, 102, 255, 0.4);
        display: flex;
        flex-direction: column;
        gap: 0;
        padding: 80px 0 20px;
        margin: 0;
        z-index: 10001 !important;
        overflow-y: auto;
        transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.6);
        will-change: right;
        pointer-events: auto !important;
        -webkit-tap-highlight-color: transparent;
    }

    body.light-mode .main-nav {
        background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(248, 250, 255, 1) 100%) !important;
        border-left-color: rgba(0, 102, 255, 0.3);
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.2);
    }

    .main-nav.is-open {
        right: 0 !important;
    }
    
    .main-nav a,
    .main-nav .nav-link {
        font-size: 1rem;
        padding: 16px 25px;
        border-bottom: 1px solid rgba(0, 102, 255, 0.15);
        width: 100%;
        justify-content: flex-start;
        color: var(--light);
        font-weight: 500;
        transition: all 0.3s ease;
        position: relative;
        pointer-events: auto !important;
        cursor: pointer;
        z-index: 10002 !important;
        -webkit-tap-highlight-color: rgba(0, 102, 255, 0.3);
        touch-action: manipulation;
    }
    
    .main-nav.is-open {
        pointer-events: auto !important;
    }
    
    .main-nav.is-open * {
        pointer-events: auto !important;
    }

    body.light-mode .main-nav a,
    body.light-mode .main-nav .nav-link {
        border-bottom-color: rgba(0, 0, 0, 0.08);
        color: #333;
    }
    
    .main-nav a:hover,
    .main-nav .nav-link:hover {
        background: linear-gradient(90deg, rgba(0, 102, 255, 0.15) 0%, rgba(0, 255, 204, 0.1) 100%);
        color: var(--secondary);
        padding-left: 30px;
    }
    
    .main-nav a:hover::before,
    .main-nav .nav-link:hover::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 4px;
        background: linear-gradient(180deg, var(--primary) 0%, var(--secondary) 100%);
    }
    
    body.light-mode .main-nav a:hover,
    body.light-mode .main-nav .nav-link:hover {
        background: linear-gradient(90deg, rgba(0, 102, 255, 0.1) 0%, rgba(0, 170, 255, 0.08) 100%);
        color: #0066ff;
    }
    
    body.light-mode .main-nav a:hover::before,
    body.light-mode .main-nav .nav-link:hover::before {
        background: linear-gradient(180deg, #0066ff 0%, #00aaff 100%);
    }
    
    .main-nav a i,
    .main-nav .nav-link i {
        transition: all 0.3s ease;
    }
    
    .main-nav a:hover i,
    .main-nav .nav-link:hover i {
        transform: scale(1.15);
        color: var(--secondary);
    }
    
    body.light-mode .main-nav a:hover i,
    body.light-mode .main-nav .nav-link:hover i {
        color: #0066ff;
    }

    .main-nav a::after,
    .main-nav .nav-link::after {
        display: none;
    }
    
    .main-nav a i,
    .main-nav .nav-link i {
        font-size: 1rem;
        margin-right: 12px;
        width: 20px;
        text-align: center;
    }
    
    .header-actions {
        gap: 8px;
    }
    
    .cta-btn {
        display: none !important;
    }
    
    /* 确保汉堡按钮始终显示 */
    .nav-toggle {
        display: inline-flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        z-index: 10002 !important;
    }
    
    .hero {
        padding-top: 100px;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .cta-btn,
    .hero-buttons .outline-btn {
        width: 100%;
        justify-content: center;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .services-grid,
    .cases-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-container {
        padding: 30px;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
    }
}

/* 滚动条美化 */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--darker);
}

body.light-mode ::-webkit-scrollbar-track {
    background: var(--light-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #0052cc, #00ccaa);
}

/* 平滑滚动 */
html {
    scroll-behavior: smooth;
}

/* 动画效果 */
@keyframes float {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
    100% { transform: translateY(0) rotate(0deg); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Toast通知样式 */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 15px;
    pointer-events: none;
}

.toast {
    background: var(--card-bg);
    border: 1px solid rgba(0, 102, 255, 0.3);
    border-radius: 12px;
    padding: 18px 24px;
    min-width: 320px;
    max-width: 400px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 15px;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    pointer-events: auto;
    backdrop-filter: blur(10px);
}

body.light-mode .toast {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.toast.show {
    opacity: 1;
    transform: translateX(0);
}

.toast-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.toast-success .toast-icon {
    color: #00ffcc;
}

.toast-error .toast-icon {
    color: #ff3366;
}

.toast-warning .toast-icon {
    color: #ffaa00;
}

.toast-info .toast-icon {
    color: #0066ff;
}

.toast-message {
    flex: 1;
    color: var(--light);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.5;
}

body.light-mode .toast-message {
    color: #333;
}

.toast-close {
    background: transparent;
    border: none;
    color: var(--gray);
    cursor: pointer;
    padding: 5px;
    font-size: 16px;
    transition: all 0.2s ease;
    border-radius: 4px;
    flex-shrink: 0;
}

.toast-close:hover {
    color: var(--light);
    background: rgba(255, 255, 255, 0.1);
}

body.light-mode .toast-close:hover {
    color: #333;
    background: rgba(0, 0, 0, 0.05);
}

/* 确认对话框样式 */
.confirm-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10001;
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.confirm-overlay.show {
    opacity: 1;
}

.confirm-dialog {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 0;
    max-width: 480px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 102, 255, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.confirm-overlay.show .confirm-dialog {
    transform: scale(1);
}

body.light-mode .confirm-dialog {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.confirm-dialog-header {
    padding: 30px 30px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid rgba(0, 102, 255, 0.2);
}

body.light-mode .confirm-dialog-header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.confirm-dialog-header i {
    font-size: 32px;
    color: #0066ff;
}

.confirm-dialog-header h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 22px;
    color: var(--light);
    margin: 0;
}

body.light-mode .confirm-dialog-header h3 {
    color: #1a1a1a;
}

.confirm-dialog-body {
    padding: 30px;
}

.confirm-dialog-body p {
    color: var(--gray);
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

body.light-mode .confirm-dialog-body p {
    color: #666;
}

.confirm-dialog-footer {
    padding: 20px 30px;
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    border-top: 1px solid rgba(0, 102, 255, 0.2);
    background: rgba(15, 25, 42, 0.5);
}

body.light-mode .confirm-dialog-footer {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    background: rgba(0, 0, 0, 0.02);
}

.confirm-dialog-footer .btn {
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 0.5px;
}

.confirm-dialog-footer .btn-cancel {
    background: rgba(139, 157, 181, 0.2);
    color: var(--gray);
    border: 1px solid rgba(139, 157, 181, 0.3);
}

body.light-mode .confirm-dialog-footer .btn-cancel {
    background: rgba(0, 0, 0, 0.05);
    color: #666;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.confirm-dialog-footer .btn-cancel:hover {
    background: rgba(139, 157, 181, 0.3);
    transform: translateY(-2px);
}

body.light-mode .confirm-dialog-footer .btn-cancel:hover {
    background: rgba(0, 0, 0, 0.1);
}

.confirm-dialog-footer .btn-confirm {
    background: linear-gradient(135deg, #0066ff, #00ffcc);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
}

.confirm-dialog-footer .btn-confirm:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 255, 0.4);
}
/* 首页响应式设计补充 */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
        gap: 30px !important;
    }
    
    .service-card {
        padding: 30px 25px !important;
    }
    
    .cases-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
        gap: 25px !important;
    }
    
    .case-cover {
        height: 220px !important;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
        gap: 25px !important;
    }
    
    .team-card {
        padding: 30px 20px !important;
    }
    
    .contact-methods {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)) !important;
        gap: 20px !important;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }
    
    .section-header {
        padding: 0 15px;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    /* 首页横幅响应式 */
    .hero {
        min-height: auto;
        padding: 80px 0 60px;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2.2rem !important;
        line-height: 1.3 !important;
        margin-bottom: 20px !important;
    }
    
    .hero p {
        font-size: 1rem !important;
        max-width: 100% !important;
        margin-bottom: 25px !important;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .hero-buttons .cta-btn,
    .hero-buttons .outline-btn,
    .hero-buttons .btn {
        width: 100% !important;
        padding: 14px 20px !important;
        font-size: 0.95rem !important;
        display: inline-block;
    }
    
    /* 服务卡片 */
    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .service-card {
        padding: 25px !important;
    }
    
    .service-card h3 {
        font-size: 1.3rem !important;
        margin-bottom: 15px !important;
    }
    
    .service-icon-wrapper {
        width: 60px !important;
        height: 60px !important;
        margin-bottom: 15px !important;
    }
    
    .service-card-icon {
        font-size: 2rem !important;
    }
    
    .service-items {
        gap: 8px !important;
    }
    
    .service-items li {
        font-size: 0.9rem !important;
    }
    
    /* 案例卡片 */
    .cases-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .case-card {
        display: flex !important;
        flex-direction: column !important;
    }
    
    .case-cover {
        height: 200px !important;
        min-height: 200px !important;
    }
    
    .case-info {
        padding: 20px !important;
        min-height: auto !important;
    }
    
    .case-info h3 {
        font-size: 1.1rem !important;
        margin-bottom: 10px !important;
    }
    
    .case-info p {
        font-size: 0.9rem !important;
    }
    
    /* 团队卡片 */
    .team-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)) !important;
        gap: 20px !important;
    }
    
    .team-card {
        padding: 20px 15px !important;
    }
    
    .team-avatar {
        width: 100px !important;
        height: 100px !important;
        margin-bottom: 12px !important;
    }
    
    .team-card h3 {
        font-size: 1.1rem !important;
        margin-bottom: 8px !important;
    }
    
    .team-position {
        font-size: 0.85rem !important;
        margin-bottom: 10px !important;
    }
    
    .team-skills {
        font-size: 0.8rem !important;
    }
    
    .team-homepage-link {
        font-size: 0.8rem !important;
    }
    
    /* 联系方式 */
    .contact-methods {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .contact-method {
        padding: 20px !important;
    }
    
    .contact-icon {
        font-size: 2.5rem !important;
        margin-bottom: 15px !important;
    }
    
    .contact-method h4 {
        font-size: 1.1rem !important;
    }
    
    .contact-action-btn {
        width: 100% !important;
        padding: 10px !important;
        font-size: 0.9rem !important;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 40px 0;
    }
    
    .hero {
        padding: 60px 0 40px;
    }
    
    .hero h1 {
        font-size: 1.6rem !important;
        line-height: 1.2 !important;
    }
    
    .hero p {
        font-size: 0.85rem !important;
    }
    
    .btn {
        font-size: 0.85rem !important;
        padding: 10px 15px !important;
    }
    
    .section-title {
        font-size: 1.4rem !important;
    }
    
    .section-subtitle {
        font-size: 0.85rem !important;
    }
    
    .service-card {
        padding: 15px !important;
    }
    
    .service-card h3 {
        font-size: 1.1rem !important;
    }
    
    .service-icon-wrapper {
        width: 50px !important;
        height: 50px !important;
    }
    
    .service-card-icon {
        font-size: 1.5rem !important;
    }
    
    .service-items li {
        font-size: 0.75rem !important;
    }
    
    .case-cover {
        height: 150px !important;
    }
    
    .case-info {
        padding: 15px !important;
    }
    
    .case-info h3 {
        font-size: 1rem !important;
    }
    
    .case-info p {
        font-size: 0.8rem !important;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }
    
    .team-card {
        padding: 12px !important;
    }
    
    .team-avatar {
        width: 70px !important;
        height: 70px !important;
        margin-bottom: 8px !important;
    }
    
    .team-card h3 {
        font-size: 0.95rem !important;
        margin-bottom: 5px !important;
    }
    
    .team-position {
        font-size: 0.75rem !important;
        margin-bottom: 8px !important;
    }
    
    .team-homepage {
        margin-top: 8px !important;
    }
    
    .contact-methods {
        gap: 15px !important;
    }
    
    .contact-method {
        padding: 15px !important;
    }
    
    .contact-icon {
        font-size: 2rem !important;
        margin-bottom: 10px !important;
    }
    
    .contact-method h4 {
        font-size: 1rem !important;
    }
    
    .contact-action-btn {
        font-size: 0.8rem !important;
        padding: 8px !important;
    }
}