/* 鍏ㄥ眬鏍峰紡 */
:root {
    --primary-color: #0066FF;
    --primary-dark: #0052CC;
    --secondary-color: #00F2FF;
    --accent-color: #00F2FF;
    --dark-color: #0A192F;
    --darker-color: #050C1A;
    --light-color: #F8FAFF;
    --white: #FFFFFF;
    --text-color: #1A202C;
    --text-light: #4A5568;
    --border-radius: 16px;
    --border-radius-lg: 24px;
    --shadow-sm: 0 4px 12px rgba(0, 102, 255, 0.05);
    --shadow-md: 0 8px 24px rgba(0, 102, 255, 0.08);
    --shadow-lg: 0 20px 48px rgba(0, 102, 255, 0.12);
    --gradient-primary: linear-gradient(135deg, #0066FF 0%, #00F2FF 100%);
    --gradient-dark: linear-gradient(135deg, #0A192F 0%, #050C1A 100%);
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: 'Inter', 'PingFang SC', 'Microsoft YaHei', sans-serif;
    color: var(--text-color);
    line-height: 1.7;
    overflow-x: hidden;
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
}

/* 鍔犺浇鍔ㄧ敾 */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s, visibility 0.5s;
}

.loader-wrapper.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    text-align: center;
}

.loader-text {
    font-size: 4rem;
    font-weight: 900;
    font-family: 'Outfit', sans-serif;
    color: var(--primary-color);
    margin-bottom: 2rem;
    animation: pulse 1.5s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(0, 102, 255, 0.4);
}

.loader-bar {
    width: 200px;
    height: 4px;
    background: rgba(255,255,255,0.2);
    border-radius: 2px;
    overflow: hidden;
}

.loader-bar::after {
    content: '';
    display: block;
    width: 50%;
    height: 100%;
    background: var(--gradient-primary);
    animation: loading 1s ease-in-out infinite;
}

@keyframes loading {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(300%); }
}

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

/* 瀵艰埅鏍?*/
.navbar {
    background: transparent;
    padding: 1.2rem 0;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.8rem 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.2);
}

.navbar-brand {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.3rem;
}

.brand-icon {
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-right: 12px;
    font-size: 1.3rem;
    font-weight: 900;
    box-shadow: 0 4px 15px rgba(255,167,38,0.4);
}

.brand-text {
    color: white;
    font-weight: 700;
}

.nav-link {
    color: rgba(255,255,255,0.85) !important;
    font-weight: 500;
    margin: 0 8px;
    padding: 0.5rem 1rem !important;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

/* New Hero Section - Sophisticated Tech Style */
.hero-video-bg {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: #050c1a;
}

/* Video Background */
.hero-video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(10, 25, 47, 0.92) 0%,
        rgba(10, 25, 47, 0.8) 40%,
        rgba(10, 25, 47, 0.4) 70%,
        rgba(10, 25, 47, 0.1) 100%
    );
}

/* Content Wrapper */
.hero-content-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 140px 0 100px;
}

.hero-text-content {
    max-width: 720px;
}

/* Badge Line - Crystal Tech Style */
.hero-badge-line {
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.hero-badge-text {
    display: inline-block;
    color: var(--secondary-color);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    padding: 6px 16px;
    background: rgba(0, 242, 255, 0.1);
    border-left: 3px solid var(--secondary-color);
    backdrop-filter: blur(5px);
}

/* Main Title - Impactful & Modern */
.hero-main-title {
    font-size: 5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 2rem;
    line-height: 1.1;
    letter-spacing: -2px;
    position: relative;
}

.hero-main-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100px;
    height: 8px;
    background: var(--gradient-primary);
    border-radius: 4px;
}

/* Description - Readable & Hierarchy */
.hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 3.5rem;
    max-width: 620px;
    font-weight: 400;
}

.hero-description strong {
    color: var(--secondary-color);
    font-weight: 700;
}

/* Buttons - Premium Modern Style */
.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 45px;
    background: var(--gradient-primary);
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.3);
    border: none;
}

.hero-btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 102, 255, 0.4);
    filter: brightness(1.1);
}

.hero-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 4px;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hero-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-5px);
}

/* Feature Items - Grid Layout */
.hero-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 650px;
}

.hero-feature-item {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.hero-feature-item i {
    color: var(--secondary-color);
    font-size: 1.25rem;
    margin-bottom: 0.2rem;
}

.hero-feature-item span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Responsive - Hero Section */
@media (max-width: 1200px) {
    .hero-main-title {
        font-size: 4rem;
    }
    
    .hero-text-content {
        max-width: 650px;
    }
}

@media (max-width: 992px) {
    .hero-main-title {
        font-size: 3.5rem;
    }
    
    .hero-description {
        font-size: 1.15rem;
        max-width: 100%;
    }
    
    .hero-features {
        grid-template-columns: repeat(2, 1fr);
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .hero-content-wrapper {
        padding: 120px 0 60px;
    }
    
    .hero-main-title {
        font-size: 2.8rem;
        letter-spacing: -1px;
    }
    
    .hero-badge-text {
        font-size: 0.85rem;
        letter-spacing: 2px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-btn-primary,
    .hero-btn-outline {
        width: 100%;
        justify-content: center;
        padding: 15px 30px;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .hero-feature-item {
        flex-direction: row;
        align-items: center;
    }
}

@media (max-width: 576px) {
    .hero-main-title {
        font-size: 2.4rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
}

/* Hero Image */
.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.hero-circle-frame {
    width: 350px;
    height: 350px;
    border-radius: 50%;
    border: 4px solid #1a1a1a;
    padding: 15px;
    position: relative;
}

.hero-image-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #1a1a1a;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-placeholder {
    text-align: center;
    color: #F5A623;
}

.hero-image-placeholder i {
    font-size: 5rem;
    display: block;
    margin-bottom: 1rem;
}

.hero-image-placeholder span {
    font-size: 1.5rem;
    font-weight: 700;
}

.hero-focus-tag {
    position: absolute;
    bottom: 20px;
    right: -20px;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.focus-label {
    font-size: 0.75rem;
    color: #999;
    letter-spacing: 2px;
    margin-bottom: 0.3rem;
}

.focus-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
}

/* Marquee Scrolling Bar */
.hero-marquee {
    background: #1a1a1a;
    padding: 1rem 0;
    overflow: hidden;
    white-space: nowrap;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
}

.marquee-track {
    display: flex;
    animation: marquee 30s linear infinite;
}

.marquee-content {
    display: flex;
    gap: 2rem;
    padding-right: 2rem;
}

.marquee-content span {
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Dark Transparent Navbar */
/* Updated Navbar Tech Style - Gradient Button Group Aesthetic */
.navbar-tech {
    background: transparent;
    padding: 1.5rem 0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.navbar-tech.scrolled {
    background: rgba(10, 25, 47, 0.85);
    backdrop-filter: blur(20px);
    padding: 1rem 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(0, 102, 255, 0.1);
}

.navbar-tech .navbar-nav {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    padding: 4px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    gap: 2px;
    transition: all 0.4s ease;
}

.navbar-tech.scrolled .navbar-nav {
    background: rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.05);
}

.navbar-tech .nav-item {
    display: flex;
}

.navbar-tech .nav-link {
    color: rgba(255, 255, 255, 0.6) !important;
    font-size: 1.1rem;
    font-weight: 600 !important;
    padding: 10px 18px !important;
    border-radius: 100px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1) !important;
    position: relative;
    border: 1px solid transparent;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.navbar-tech .nav-link:hover {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.08);
}

.navbar-tech .nav-link.active {
    color: #ffffff !important;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.25), rgba(0, 242, 255, 0.15));
    border: 1px solid rgba(0, 242, 255, 0.4);
    box-shadow: 0 0 25px rgba(0, 102, 255, 0.25);
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

.navbar-tech .nav-link::after {
    display: none !important; /* Remove old underline */
}

.navbar-yellow .nav-link:hover {
    color: #F5A623 !important;
}

.navbar-yellow .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.5);
}

.navbar-yellow .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Navbar Brand - Exquisite Tech Style */
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 0;
}

.brand-logo-wrapper {
    position: relative;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-tech-ring {
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 1px solid rgba(0, 242, 255, 0.3);
    border-radius: 50%;
    border-top: 1px solid var(--secondary-color);
    border-right: 1px solid transparent;
    animation: ringRotate 4s linear infinite;
}

.logo-tech-ring::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: var(--secondary-color);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--secondary-color);
}

@keyframes ringRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.brand-logo-img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.1);
    background: white;
    z-index: 2;
    transition: all 0.4s ease;
}

.navbar-brand:hover .brand-logo-img {
    transform: scale(1.1) rotate(5deg);
    border-color: var(--secondary-color);
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.4);
}

.brand-text-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.brand-text-new {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    letter-spacing: 1.5px;
    line-height: 1.2;
    transition: all 0.3s ease;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.navbar-brand:hover .brand-text-new {
    color: var(--secondary-color);
}

.brand-tag {
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-top: 2px;
}

.navbar-brand:hover .brand-tag {
    color: rgba(255, 255, 255, 0.7);
}

.btn-primary {
    background: #1a1a1a;
    border: none;
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    background: #333;
}

.btn-outline-dark {
    border: 2px solid #1a1a1a;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    color: #1a1a1a;
}

.btn-outline-dark:hover {
    background: #1a1a1a;
    color: white;
}

/* Responsive Hero */
@media (max-width: 992px) {
    .hero-title-new {
        font-size: 4rem;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .hero-circle-frame {
        width: 280px;
        height: 280px;
    }
    
    .hero-image-wrapper {
        margin-top: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-title-new {
        font-size: 3rem;
    }
    
    .hero-slogan {
        font-size: 1.2rem;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    
    .hero-stat-number {
        font-size: 2rem;
    }
    
    .hero-circle-frame {
        width: 220px;
        height: 220px;
    }
    
    .hero-focus-tag {
        right: 0;
        bottom: -10px;
    }
}

@media (max-width: 576px) {
    .hero-title-new {
        font-size: 2.5rem;
    }
    
    .hero-school {
        font-size: 0.8rem;
    }
    
    .hero-main-content {
        padding-top: 80px;
    }
}





/* Section Styles */
.content-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.section-badge {
    display: inline-block;
    background: rgba(255,167,38,0.1);
    color: var(--primary-color);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 0.95rem;
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: 4px;
    margin-bottom: 1rem;
}

.section-line {
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    margin: 0 auto;
    border-radius: 2px;
}

/* New Intro Section - Exquisite Tech Style */
.intro-section-new {
    background: #ffffff;
    padding: 0;
    min-height: auto;
    position: relative;
    overflow: hidden;
}

/* Tech Background Elements */
.intro-tech-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

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

.tech-glow {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
}

.intro-layout {
    display: flex;
    min-height: auto;
    position: relative;
    z-index: 2;
}

/* 宸︿晶绔栨帓鏂囧瓧 - Re-designed */
.intro-sidebar {
    width: 120px;
    background: var(--dark-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 4rem 0;
    flex-shrink: 0;
    position: relative;
    border-right: 1px solid rgba(0, 102, 255, 0.1);
}

.sidebar-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sidebar-text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 1.8rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    color: rgba(255, 255, 255, 0.1);
    letter-spacing: 15px;
    transform: rotate(180deg);
    transition: all 0.5s ease;
}

.intro-section-new:hover .sidebar-text {
    color: var(--primary-color);
    text-shadow: 0 0 20px rgba(0, 102, 255, 0.4);
}

.sidebar-number {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-top: 2rem;
    position: relative;
}

.sidebar-number::after {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--primary-color);
}

.sidebar-line {
    width: 1px;
    height: 100px;
    background: linear-gradient(to bottom, var(--primary-color), transparent);
}

/* 涓棿鍥剧墖鍖哄煙 - Enhanced */
.intro-image-area {
    flex: 1.2;
    position: relative;
    background: #f8f9fa;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.intro-main-image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.intro-scene-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.image-tech-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 102, 255, 0.1) 0%, transparent 100%);
    mix-blend-mode: overlay;
    pointer-events: none;
}

.intro-section-new:hover .intro-scene-img {
    transform: scale(1.05);
}

/* 鎮诞鍗＄墖 - Glassmorphism Re-design */
.intro-float-card.glass-card {
    position: absolute;
    bottom: 80px;
    left: 20px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 2.5rem;
    width: 360px;
    border-radius: 2px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
    z-index: 10;
    overflow: hidden;
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(0, 102, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.float-card-header {
    font-size: 0.8rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.float-card-title {
    font-size: 2rem;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 0.8rem;
    line-height: 1.2;
}

.float-card-desc {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 1.8rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    font-weight: 500;
}

.float-card-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.float-stat-number {
    font-size: 2.22rem;
    font-weight: 900;
    font-family: 'Outfit', sans-serif;
    color: var(--primary-color);
    line-height: 1;
}

.float-stat-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: #888;
    margin-top: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.float-stat-divider {
    width: 1px;
    height: 30px;
    background: rgba(0,0,0,0.08);
}

/* 鍙充晶鍐呭鍖哄煙 - Re-designed Typography */
.intro-content-area {
    flex: 1;
    padding: 40px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: white;
}

.intro-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary-color);
}

.badge-text {
    font-size: 0.85rem;
    color: #888;
    font-weight: 700;
    letter-spacing: 3px;
}

.intro-title {
    font-size: 3.8rem;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.title-accent {
    width: 80px;
    height: 6px;
    background: var(--primary-color);
    margin-bottom: 3rem;
}

.intro-text-content {
    max-width: 650px;
    width: 100%;
}

.intro-video-container {
    max-width: 650px;
    width: 100%;
    margin-bottom: 2rem;
}

.intro-quote-box {
    position: relative;
    padding-left: 0;
    margin-bottom: 2.5rem;
}

.intro-quote-box i {
    font-size: 2.5rem;
    color: rgba(0, 102, 255, 0.1);
    position: absolute;
    top: -20px;
    left: -10px;
    z-index: -1;
}

.intro-main-text {
    font-size: 1.25rem;
    color: #1a1a1a;
    font-weight: 600;
    line-height: 1.8;
}

.intro-detail-box {
    display: flex;
    gap: 20px;
    margin-bottom: 3rem;
}

.detail-line {
    width: 3px;
    background: #f0f0f0;
    flex-shrink: 0;
}

.intro-sub-text {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.9;
}

/* Capabilities */
.intro-capabilities {
    display: flex;
    gap: 1.5rem;
}

.capability-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.2rem;
    background: #f8f9ff;
    border-radius: 4px;
    border: 1px solid #eef2ff;
    transition: all 0.3s ease;
}

.capability-item:hover {
    background: white;
    box-shadow: 0 10px 20px rgba(0, 102, 255, 0.05);
    transform: translateY(-3px);
    border-color: var(--primary-color);
}

.cap-icon {
    color: var(--primary-color);
    font-size: 1rem;
}

.cap-text {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1a1a1a;
}

/* Responsive - Intro Section Enahnced */
@media (max-width: 1400px) {
    .intro-title {
        font-size: 3.2rem;
    }
    
    .intro-content-area {
        padding: 80px 40px;
    }
}

@media (max-width: 1200px) {
    .intro-float-card.glass-card {
        width: 320px;
        padding: 1.8rem;
    }
    
    .intro-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 992px) {
    .intro-layout {
        flex-direction: column;
    }
    
    .intro-sidebar {
        width: 100%;
        height: 80px;
        flex-direction: row;
        padding: 0 3rem;
        border-right: none;
        border-bottom: 1px solid rgba(0, 102, 255, 0.1);
    }
    
    .sidebar-wrapper {
        flex-direction: row;
        gap: 1.5rem;
    }
    
    .sidebar-text {
        writing-mode: horizontal-tb;
        transform: none;
        font-size: 1.2rem;
        letter-spacing: 8px;
    }
    
    .sidebar-number {
        margin-top: 0;
    }
    
    .sidebar-number::after {
        display: none;
    }
    
    .sidebar-line {
        width: 80px;
        height: 1px;
        background: linear-gradient(to right, var(--primary-color), transparent);
    }
    
    .intro-image-area {
        min-height: 500px;
        padding: 40px;
    }
    
    .intro-float-card.glass-card {
        bottom: 40px;
        left: 40px;
    }
    
    .intro-content-area {
        max-width: 100%;
        padding: 60px 40px;
    }
}

@media (max-width: 768px) {
    .intro-image-area {
        min-height: 400px;
    }
    
    .intro-float-card.glass-card {
        position: relative;
        bottom: auto;
        left: auto;
        width: calc(100% - 40px);
        margin: -60px 20px 20px;
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    }
    
    .intro-title {
        font-size: 2.3rem;
    }
    
    .intro-main-text {
        font-size: 1.15rem;
    }
    
    .intro-capabilities {
        flex-wrap: wrap;
    }
}

@media (max-width: 576px) {
    .intro-sidebar {
        padding: 0 1.5rem;
    }
    
    .sidebar-text {
        font-size: 1rem;
        letter-spacing: 4px;
    }
    
    .intro-image-area {
        padding: 20px;
        min-height: 300px;
    }
    
    .intro-content-area {
        padding: 40px 20px;
    }
    
    .intro-title {
        font-size: 2rem;
    }
    
    .intro-quote-box i {
        font-size: 2rem;
    }
    
    .float-stat-number {
        font-size: 1.8rem;
    }
}

/* New Training Section - Clean Card Style */
/* New Training Section - Premium Card Style */
.training-section-new {
    background: linear-gradient(to bottom, #f8faff 0%, #ffffff 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.training-section-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 102, 255, 0.1), transparent);
}

.training-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 80px;
}

.training-header-left {
    flex: 1;
}

.training-label {
    font-size: 0.9rem;
    color: var(--primary-color);
    letter-spacing: 5px;
    margin-bottom: 1.2rem;
    font-weight: 800;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 15px;
}

.training-label::before {
    content: '';
    width: 30px;
    height: 2px;
    background: var(--primary-color);
}

.training-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: #050c1a;
    letter-spacing: -1px;
}

.training-header-right {
    display: flex;
    align-items: center;
}

.training-accent-line {
    width: 120px;
    height: 6px;
    background: var(--gradient-primary);
    border-radius: 3px;
    box-shadow: 0 0 20px rgba(0, 102, 255, 0.3);
}

/* Training Cards Grid */
.training-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.training-card-item {
    background: white;
    padding: 0;
    border-radius: 24px;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 102, 255, 0.05);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.03);
}

.card-image-new {
    position: relative;
    height: 240px;
    overflow: hidden;
    background: #f0f4ff;
}

.card-image-new img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 0, 0.2, 1);
}

.card-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 60%, rgba(255,255,255,1) 100%);
    pointer-events: none;
}

.card-number {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(0, 102, 255, 0.06);
    line-height: 1;
    font-family: 'Outfit', sans-serif;
    transition: all 0.4s ease;
    user-select: none;
}

.card-content-new {
    padding: 1.5rem 2.5rem 3rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-title-new {
    font-size: 1.5rem;
    font-weight: 800;
    color: #050c1a;
    margin-bottom: 1.2rem;
    position: relative;
}

.card-title-new::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: width 0.4s ease;
}

.card-desc-new {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a5568;
    margin: 0;
}

/* Training Card Hover Effects */
.training-card-item:hover {
    transform: translateY(-20px);
    box-shadow: 0 40px 80px rgba(0, 102, 255, 0.12);
    border-color: rgba(0, 102, 255, 0.2);
}

.training-card-item:hover .card-image-new img {
    transform: scale(1.15) rotate(2deg);
}

.training-card-item:hover .card-number {
    color: rgba(0, 102, 255, 0.12);
    transform: scale(1.1) translateY(-5px);
}

.training-card-item:hover .card-title-new::after {
    width: 60px;
}

/* Responsive - Training Section */
@media (max-width: 1200px) {
    .training-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .training-header {
        flex-direction: column;
        gap: 1rem;
    }
    
    .training-header-right {
        padding-top: 0;
    }
    
    .training-title {
        font-size: 2.5rem;
    }
    
    .training-cards {
        grid-template-columns: 1fr;
    }
    
    .training-card-item {
        padding: 0;
    }
    
    .card-image-new {
        height: 200px;
    }
    
    .card-content-new {
        padding: 2rem;
    }
}

@media (max-width: 576px) {
    .training-section-new {
        padding: 60px 0;
    }
    
    .training-title {
        font-size: 2rem;
    }
}

/* Mentors Section - Horizontal Flexbox Accordion */
.mentors-section {
    position: relative;
    padding: 120px 0;
    background: #050c1a;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mentors-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 15vw;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    white-space: nowrap;
    z-index: 1;
    pointer-events: none;
    letter-spacing: 20px;
}

.mentors-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

/* Mentors Header Styling */
.mentors-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
}

.mentors-header-left {
    flex: 1;
}

.mentors-label {
    font-size: 0.9rem;
    color: var(--secondary-color);
    letter-spacing: 5px;
    margin-bottom: 1.2rem;
    font-weight: 800;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 15px;
}

.mentors-label::before {
    content: '';
    width: 30px;
    height: 2px;
    background: var(--secondary-color);
}

.mentors-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    letter-spacing: -1px;
}

.mentors-header-right {
    display: flex;
    align-items: center;
}

.mentors-accent-line {
    width: 120px;
    height: 6px;
    background: var(--gradient-primary);
    border-radius: 3px;
    box-shadow: 0 0 20px rgba(0, 102, 255, 0.3);
}

.mentor-accordion {
    display: flex;
    width: 100%;
    height: 600px;
    gap: 15px;
}

.mentor-card {
    position: relative;
    flex: 1;
    height: 100%;
    overflow: hidden;
    cursor: pointer;
    border-radius: 12px;
    transition: all 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.mentor-card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: all 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
    filter: brightness(0.85) saturate(0.9);
}

.mentor-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 40%, rgba(5, 12, 26, 0.95) 100%);
    opacity: 0.8;
    transition: all 0.5s ease;
}

.mentor-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    z-index: 3;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.mentor-info {
    transform: translateY(120px);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    max-width: 0;
    overflow: hidden;
    white-space: nowrap;
}

.mentor-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--secondary-color);
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.mentor-name {
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    margin-bottom: 15px;
    white-space: nowrap;
}

.mentor-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
    margin: 0;
    white-space: normal;
    min-width: 450px;
}

.mentor-plus {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.5s ease;
    flex-shrink: 0;
}

/* Hover State */
.mentor-card:hover {
    flex: 5;
    border-color: rgba(0, 242, 255, 0.4);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

.mentor-card:hover .mentor-card-image {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.05);
}

.mentor-card:hover .mentor-card-overlay {
    opacity: 0.5;
    background: linear-gradient(to bottom, transparent 20%, rgba(10, 25, 47, 0.9) 100%);
}

.mentor-card:hover .mentor-info {
    transform: translateY(0);
    opacity: 1;
    max-width: 85%;
}

.mentor-card:hover .mentor-plus {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: rotate(45deg);
    color: #050c1a;
}

/* Responsive Mentors */
@media (max-width: 1200px) {
    .mentor-accordion {
        height: 500px;
    }
    .mentor-name { font-size: 1.5rem; }
    .mentor-desc { min-width: 350px; }
}

@media (max-width: 992px) {
    .mentors-section { padding: 80px 0; }
    .mentors-header { margin-bottom: 40px; }
    .mentors-title { font-size: 2.8rem; }
    .mentors-accent-line { width: 80px; }
    .mentor-accordion {
        flex-direction: column;
        height: auto;
    }
    
    .mentor-card {
        height: 120px;
        flex: none;
    }
    
    .mentor-card:hover {
        height: 400px;
        flex: none;
    }
    
    .mentor-card-content { padding: 25px; }
    
    .mentor-info {
        max-width: 100% !important;
        white-space: normal;
    }
    
    .mentor-desc { min-width: auto; }
}

@media (max-width: 576px) {
    .mentors-section { padding: 60px 0; }
    .mentors-title { font-size: 2.2rem; }
    .mentors-header { margin-bottom: 30px; }
    .mentor-card { height: 100px; }
    .mentor-card:hover { height: 350px; }
    .mentor-name { font-size: 1.3rem; }
}

/* New Direction Section - Yellow Background */
/* New Direction Section - Premium Style */
.direction-section-new {
    background: #ffffff;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

/* Direction Section Header */
.direction-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.direction-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.dir-glow {
    position: absolute;
    filter: blur(90px);
    opacity: 0.9;
    transform: translate3d(0, 0, 0);
}

.dir-glow-1 {
    width: 520px;
    height: 520px;
    top: -180px;
    left: -140px;
    background: radial-gradient(circle, rgba(0, 179, 255, 0.22) 0%, transparent 68%);
}

.dir-glow-2 {
    width: 640px;
    height: 640px;
    bottom: -260px;
    right: -220px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.18) 0%, transparent 70%);
}

.dir-grid {
    position: absolute;
    inset: 0;
    opacity: 0.35;
    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: 56px 56px;
    mask-image: radial-gradient(circle at 50% 25%, black 0%, transparent 68%);
    -webkit-mask-image: radial-gradient(circle at 50% 25%, black 0%, transparent 68%);
}

.direction-section-new .container {
    position: relative;
    z-index: 1;
}

.direction-section-header .section-title {
    margin-top: 10px;
}

.direction-section-header p {
    font-size: 1.05rem;
}

.direction-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 34px;
    max-width: 1400px;
    margin: 0 auto;
}

.direction-card-new {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 102, 255, 0.12);
    display: flex;
    flex-direction: column;
    box-shadow: 0 14px 44px rgba(0, 102, 255, 0.08);
    height: 100%;
    position: relative;
}

.direction-image-wrapper {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.direction-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.direction-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255,255,255,0.0) 35%, rgba(255,255,255,0.92) 100%);
}

/* 图标徽章 */
.direction-icon-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #0066FF;
    box-shadow: 0 8px 20px rgba(0, 102, 255, 0.2);
    transition: all 0.4s ease;
    z-index: 2;
}

.direction-card-new:hover .direction-icon-badge {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 12px 30px rgba(0, 102, 255, 0.3);
}

.direction-content {
    padding: 2rem 2.5rem 2.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.direction-tags-new {
    display: flex;
    gap: 10px;
    margin-bottom: 1.2rem;
    flex-wrap: wrap;
}

.tag-badge {
    padding: 6px 14px;
    background: rgba(0, 102, 255, 0.08);
    border: 1px solid rgba(0, 102, 255, 0.15);
    border-radius: 50px;
    font-size: 0.8rem;
    color: #0066FF;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.direction-card-new:hover .tag-badge {
    background: rgba(0, 102, 255, 0.12);
    border-color: rgba(0, 102, 255, 0.25);
}

.direction-card-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: #050c1a;
    margin-bottom: 1rem;
    font-family: 'Outfit', sans-serif;
}

.direction-card-desc {
    font-size: 1rem;
    line-height: 1.7;
    color: #64748b;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

/* 数据统计 */
.direction-stats {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 1.2rem 0;
    margin-bottom: 1rem;
    border-top: 1px solid rgba(0, 102, 255, 0.08);
    border-bottom: 1px solid rgba(0, 102, 255, 0.08);
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 900;
    color: #0066FF;
    font-family: 'Outfit', sans-serif;
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    color: #94a3b8;
    font-weight: 600;
}

.stat-divider {
    width: 1px;
    height: 30px;
    background: rgba(0, 102, 255, 0.15);
}

.direction-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.direction-status {
    font-size: 0.85rem;
    font-weight: 700;
    color: #10b981;
    display: flex;
    align-items: center;
    gap: 8px;
}

.direction-status i {
    font-size: 0.7rem;
}

.direction-btn-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(0, 102, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0066FF;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

/* Hover Effects */
.direction-card-new:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0, 102, 255, 0.15);
    border-color: rgba(0, 102, 255, 0.2);
}

.direction-card-new:hover .direction-img {
    transform: scale(1.08);
}

.direction-card-new:hover .direction-btn-circle {
    background: #0066FF;
    color: white;
    transform: rotate(-45deg) scale(1.1);
}

/* Responsive - Direction Section */
@media (max-width: 992px) {
    .direction-cards {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .direction-section-new {
        padding: 80px 0;
    }
    
    .direction-image-wrapper {
        height: 220px;
    }
    
    .direction-content {
        padding: 1.5rem 2rem 2rem;
    }
    
    .direction-card-title {
        font-size: 1.4rem;
    }
    
    .direction-icon-badge {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
}
        padding: 2rem;
    }
}

@media (max-width: 576px) {
    .direction-card-title {
        font-size: 1.4rem;
    }
    
    .tag-badge {
        padding: 4px 12px;
        font-size: 0.75rem;
    }
}

/* New Projects Section - Dark Theme */
.projects-section-new {
    background: var(--dark-color);
    padding: 120px 0;
    color: white;
}

.projects-header {
    text-align: center;
    margin-bottom: 80px;
}

.projects-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.title-bold {
    font-weight: 900;
}

.title-light {
    font-weight: 300;
    color: rgba(255,255,255,0.7);
}

.projects-subtitle {
    font-size: 1rem;
    color: rgba(255,255,255,0.5);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Project Showcase */
.projects-showcase {
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.project-item {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.project-item.reverse {
    grid-template-columns: 1fr 1.2fr;
}

.project-item.reverse .project-info {
    order: 1;
}

.project-item.reverse .project-image {
    order: 2;
}

/* Project Card Wrapper - New Design */
.project-card-wrapper {
    position: relative;
}

.project-card-frame {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.4);
    background: #2a2a2a;
}

.project-screenshot {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.project-card-frame:hover .project-screenshot {
    transform: scale(1.03);
}

.project-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(0,0,0,0) 60%,
        rgba(0,0,0,0.3) 100%
    );
    pointer-events: none;
}

/* Project Card Badge */
.project-card-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(26, 26, 26, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255,255,255,0.9);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #F5A623;
    border-radius: 50%;
    animation: badgePulse 2s ease-in-out infinite;
}

.project-card-badge.active .badge-dot {
    background: #4CAF50;
}

@keyframes badgePulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Project Info - Enhanced */
.project-info {
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.project-version {
    display: inline-block;
    font-size: 0.75rem;
    color: #F5A623;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}

.project-info-line {
    width: 40px;
    height: 3px;
    background: #F5A623;
    margin-bottom: 1.5rem;
}

.project-name {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.project-desc {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.6);
    margin-bottom: 1.5rem;
}

.project-tags {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.project-tag {
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 4px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
    transition: all 0.3s ease;
    background: rgba(255,255,255,0.05);
}

.project-tag:hover {
    border-color: #F5A623;
    color: #F5A623;
    background: rgba(245, 166, 35, 0.1);
}

/* Project Link */
.project-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--secondary-color);
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.project-link:hover {
    color: white;
    gap: 16px;
}

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

.project-link:hover i {
    transform: translateX(4px);
}

/* Responsive - Projects Section */
@media (max-width: 992px) {
    .project-item,
    .project-item.reverse {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .project-item.reverse .project-info {
        order: 2;
    }
    
    .project-item.reverse .project-image {
        order: 1;
    }
    
    .projects-title {
        font-size: 2.5rem;
    }
    
    .project-card-frame {
        border-radius: 12px;
    }
}

@media (max-width: 768px) {
    .project-name {
        font-size: 1.5rem;
    }
    
    .project-desc {
        font-size: 0.95rem;
    }
    
    .project-card-badge {
        top: 15px;
        left: 15px;
        padding: 6px 12px;
        font-size: 0.75rem;
    }
}

@media (max-width: 768px) {
    .projects-section-new {
        padding: 60px 0;
    }
    
    .projects-showcase {
        gap: 60px;
    }
    
    .projects-title {
        font-size: 2rem;
    }
    
    .project-name {
        font-size: 1.5rem;
    }
    
    .browser-content, .phone-content {
        height: 220px;
    }
}

@media (max-width: 576px) {
    .projects-header {
        margin-bottom: 50px;
    }
    
    .project-tags {
        gap: 0.5rem;
    }
    
    .project-tag {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
}

/* Goals Section */
.goal-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    height: 100%;
    text-align: center;
    border-top: 4px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.goal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.goal-card:hover::before {
    transform: scaleX(1);
}

.goal-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.goal-icon {
    margin-bottom: 1.5rem;
}

.goal-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.goal-text {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Mechanism Section */
.mechanism-item {
    background: white;
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    margin-bottom: 2rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border-left: 5px solid transparent;
}

.mechanism-item:hover {
    box-shadow: var(--shadow-lg);
    border-left-color: var(--primary-color);
}

.mechanism-item.highlight {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.03) 0%, #ffffff 100%);
    border: 2px solid var(--primary-color);
    border-left: 5px solid var(--primary-color);
}

.mechanism-number {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.mechanism-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.mechanism-subtitle {
    color: var(--text-light);
    font-size: 0.95rem;
}

.mechanism-content {
    padding-left: 2rem;
}

.info-box {
    background: var(--light-color);
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-left: 4px solid var(--primary-color);
}

.info-label {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1rem;
}

.info-value {
    font-size: 1rem;
    color: var(--text-color);
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.2rem;
    background: var(--light-color);
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

.step:hover {
    background: rgba(0, 102, 255, 0.08);
    transform: translateX(10px);
}

.step-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

.step-text {
    flex: 1;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
    padding-top: 0.5rem;
}

.guarantee-box {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 2px solid var(--primary-color);
}

.guarantee-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.guarantee-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--light-color);
    border-radius: var(--border-radius);
}

.guarantee-icon {
    flex-shrink: 0;
    width: 55px;
    height: 55px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.guarantee-text {
    flex: 1;
    font-size: 1.1rem;
    color: var(--text-color);
}

/* Platform Section */
.platform-section {
    background: var(--light-color);
}

.platform-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    height: 100%;
    position: relative;
    transition: all 0.4s ease;
}

.platform-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.platform-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
}

.platform-badge.completed {
    background: linear-gradient(135deg, #4CAF50 0%, #66BB6A 100%);
}

.platform-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.platform-preview {
    margin: 2rem 0;
}

.preview-box {
    background: var(--light-color);
    padding: 3rem 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    border: 2px dashed #ddd;
}

.preview-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.preview-box p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin: 0;
}

.platform-desc {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
}

/* Contact Section */
.contact-section {
    background: var(--gradient-dark);
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at 70% 50%, rgba(0, 242, 255, 0.1) 0%, transparent 60%);
}

.contact-content {
    padding: 2rem 0;
    position: relative;
}

.contact-title {
    font-size: 3.5rem;
    font-weight: 900;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-desc {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.85);
    margin-bottom: 3rem;
}

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

.info-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.info-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.info-text h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.info-text p {
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
    margin: 0;
}

.qr-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    position: relative;
}

.qr-box {
    background: white;
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    text-align: center;
}

.qr-placeholder {
    margin-bottom: 1rem;
}

.qr-text {
    font-size: 1rem;
    color: var(--text-color);
    margin: 0;
    font-weight: 600;
}

.join-logo {
    display: flex;
    justify-content: center;
}

.logo-box-small {
    background: var(--gradient-primary);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 102, 255, 0.3);
}

.logo-text-small {
    font-size: 2.8rem;
    font-weight: 900;
    font-family: 'Outfit', sans-serif;
    color: white;
    line-height: 1;
    margin-bottom: 0.3rem;
}

.logo-subtitle-small {
    font-size: 1rem;
    color: white;
    font-weight: 600;
    letter-spacing: 2px;
}

/* Footer */
.footer {
    background: #ffffff;
    border-top: 1px solid #f1f5f9;
    color: #1a1a1a;
    padding: 60px 0;
    margin-top: 0;
}

.footer-title {
    font-size: 1.6rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 0.5rem;
    color: #050c1a;
}

.footer-text {
    color: #64748b;
    margin-bottom: 0;
}

.footer-copyright {
    color: #94a3b8;
    margin-bottom: 0;
}

/* Content Card */
.content-card {
    background: white;
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--gradient-primary);
}

.card-icon {
    margin-bottom: 2rem;
}

.content-text {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-color);
}

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

/* Responsive Design */
@media (max-width: 1200px) {
    .org-centers {
        flex-direction: column;
    }
    
    .org-center-wrapper {
        flex-direction: column;
    }
    
    .org-incubator {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .org-connector-horizontal {
        display: none;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .hero-graphic {
        height: 350px;
        margin-top: 3rem;
    }
    
    .hero-3d-box {
        width: 150px;
        height: 150px;
    }
    
    .box-face {
        width: 150px;
        height: 150px;
        font-size: 3rem;
    }
    
    .mechanism-content {
        padding-left: 0;
        margin-top: 2rem;
    }
    
    .logo-box {
        transform: rotate(0deg);
    }
    
    .intro-logo {
        margin-bottom: 2rem;
    }
    
    .contact-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .content-section {
        padding: 70px 0;
    }
    
    .content-card,
    .mechanism-item {
        padding: 2rem;
    }
    
    .guarantee-item {
        flex-direction: column;
        text-align: center;
    }
    
    .org-departments {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .org-departments-wide {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .logo-text {
        font-size: 3.5rem;
    }
    
    .logo-subtitle {
        font-size: 1.1rem;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .training-card-new {
        padding: 2rem;
    }
    
    .direction-card {
        padding: 2rem;
    }
    
    .focus-work {
        padding: 2rem;
    }
    
    .focus-title {
        font-size: 1.5rem;
    }
    
    .contact-title {
        font-size: 2rem;
    }
    
    .qr-section {
        margin-top: 3rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .brand-text {
        font-size: 0.9rem;
    }
    
    .mechanism-title {
        font-size: 1.4rem;
    }
    
    .goal-card {
        padding: 2rem 1.5rem;
    }
    
    .org-departments {
        grid-template-columns: 1fr;
    }
    
    .org-departments-wide {
        grid-template-columns: 1fr;
    }
    
    .org-chart {
        padding: 2rem 0.5rem;
    }
    
    .logo-text {
        font-size: 3rem;
    }
    
    .intro-text {
        font-size: 1rem;
    }
    
    .direction-tags {
        justify-content: center;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection Color */
::selection {
    background: var(--primary-color);
    color: white;
}

::-moz-selection {
    background: var(--primary-color);
    color: white;
}

/* Footer Enhanced */
.footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.5rem;
    font-weight: 900;
}

/* Platform Section Enhanced */
.platform-section {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

/* Back to Top Button Style Fix */
.back-to-top {
    background: var(--gradient-primary) !important;
    box-shadow: 0 10px 20px rgba(0, 102, 255, 0.3) !important;
}

/* Nav Active State */
.nav-link.active {
    color: var(--primary-color) !important;
}

/* Mobile Menu */
@media (max-width: 991px) {
    .navbar-collapse {
        background: rgba(26, 26, 46, 0.98);
        padding: 1rem;
        border-radius: var(--border-radius);
        margin-top: 1rem;
    }
    
    .nav-link {
        padding: 0.8rem 1rem !important;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
}

/* Hover Effects Enhancement */
.training-card-new:hover .card-icon-wrapper i {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.direction-card:hover .direction-icon svg {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

/* Gradient Text */
.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Glass Effect */
.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Pulse Animation for Icons */
@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.stat-icon i {
    animation: iconPulse 2s ease-in-out infinite;
}

/* Shimmer Effect */
@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.shimmer {
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
}

/* Goals Section */
.goals-section {
    background: var(--light-color);
    position: relative;
}

/* Mechanism Section */
.mechanism-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

/* Goal Cards with AOS */
.goal-card[data-aos] {
    transition-property: transform, opacity, box-shadow;
}

/* Enhanced Stat Cards */
.stat-card {
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 102, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.stat-card:hover::before {
    left: 100%;
}

/* Org Chart Animation */
.org-chart {
    animation: fadeIn 1s ease;
}

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

/* Enhanced Platform Cards */
.platform-card {
    position: relative;
    overflow: hidden;
}

.platform-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.platform-card:hover::after {
    transform: scaleX(1);
}

/* Contact Section Enhanced */
.contact-section .info-item {
    padding: 1.5rem;
    background: rgba(255,255,255,0.05);
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

.contact-section .info-item:hover {
    background: rgba(255,167,38,0.1);
    transform: translateX(10px);
}

/* QR Box Enhanced */
.qr-box {
    position: relative;
    overflow: hidden;
}

.qr-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(0, 102, 255, 0.1), transparent);
    animation: rotate 4s linear infinite;
    z-index: -1;
}

/* Responsive Enhancements */
@media (max-width: 768px) {
    .stat-card {
        padding: 1.5rem 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .hero-badge {
        font-size: 0.85rem;
        padding: 0.4rem 1rem;
    }
    
    .section-badge {
        font-size: 0.8rem;
        padding: 0.3rem 1rem;
    }
}

/* Print Styles */
@media print {
    .navbar, .scroll-indicator, .back-to-top, .loader-wrapper {
        display: none !important;
    }
    
    .hero-section {
        min-height: auto;
        padding: 2rem 0;
    }
    
    .content-section {
        padding: 2rem 0;
    }
}

/* Background Section */
.background-section {
    background: var(--light-color);
}

.background-card {
    text-align: center;
    padding: 4rem 3rem;
}

.background-card .card-icon {
    margin-bottom: 2rem;
}

.background-card::before {
    display: none;
}

.background-card {
    border-top: 5px solid var(--primary-color);
}

.background-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.bg-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: rgba(0, 102, 255, 0.08);
    border-radius: 50px;
    color: var(--primary-color);
    font-weight: 600;
}

.bg-feature i {
    font-size: 1.2rem;
}

/* Text Highlight */
.text-highlight {
    color: var(--primary-color);
    font-weight: 700;
}

/* Enhanced Content Card */
.content-card {
    position: relative;
}

.content-card::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 20px;
    background: var(--gradient-primary);
    filter: blur(20px);
    opacity: 0.3;
    border-radius: 50%;
}

/* Typing Animation */
.typing-text {
    border-right: 2px solid var(--primary-color);
    animation: blink 0.7s step-end infinite;
}

@keyframes blink {
    from, to { border-color: transparent; }
    50% { border-color: var(--primary-color); }
}

/* Final Touches */
.section-number {
    display: none;
}

/* Smooth transitions for all interactive elements */
a, button, .card, .box {
    transition: all 0.3s ease;
}

/* Focus states for accessibility */
a:focus, button:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ========================================
   New Mechanism Section - Clean List Style
   ======================================== */
/* New Incubation Mechanism - Step-by-Step Curriculum Style (Optimized Height) */
.mechanism-section-new {
    background: #ffffff;
    padding: 40px 0;
}

.mechanism-header-new {
    text-align: center;
    margin-bottom: 50px;
}

.mechanism-steps {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding: 0 20px;
}

.mechanism-step {
    display: flex;
    gap: 30px;
    margin-bottom: 12px;
    position: relative;
}

.step-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 50px;
    flex-shrink: 0;
}

.step-number {
    width: 50px;
    height: 50px;
    background: #ffffff;
    border: 2px solid rgba(0, 102, 255, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary-color);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 2;
    box-shadow: 0 8px 15px rgba(0, 102, 255, 0.04);
}

.step-connector {
    width: 2px;
    flex-grow: 1;
    background: linear-gradient(to bottom, rgba(0, 102, 255, 0.2), rgba(0, 102, 255, 0.02));
    margin-top: 8px;
    margin-bottom: 8px;
}

.step-connector.hide {
    opacity: 0;
}

.step-info {
    flex-grow: 1;
    background: #ffffff;
    border: 1px solid rgba(0, 102, 255, 0.05);
    border-radius: 20px;
    padding: 1.2rem 2.2rem;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
}

.mechanism-step:hover .step-info {
    transform: translateX(10px);
    border-color: rgba(0, 102, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 102, 255, 0.06);
}

.mechanism-step:hover .step-number {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: rotate(-5deg) scale(1.05);
}

.step-header-new {
    margin-bottom: 0.8rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.step-badge-time {
    display: inline-block;
    padding: 3px 12px;
    background: rgba(0, 102, 255, 0.05);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.step-badge-time.active {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.step-title-new {
    font-size: 1.4rem;
    font-weight: 800;
    color: #050c1a;
    margin: 0;
    letter-spacing: -0.5px;
}

.step-list-new {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.step-list-new li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.list-icon {
    width: 24px;
    height: 24px;
    background: #f8fafc;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-size: 0.75rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.mechanism-step:hover .list-icon {
    background: rgba(0, 102, 255, 0.05);
    color: var(--primary-color);
}

.list-text {
    font-size: 0.95rem;
    color: #4a5568;
    line-height: 1.5;
}

.list-text strong {
    color: #1a202c;
    font-weight: 700;
}

/* Responsive Mechanism */
@media (max-width: 992px) {
    .mechanism-title-main {
        font-size: 2.5rem;
    }
    
    .step-info {
        padding: 1rem 1.8rem;
    }
}

@media (max-width: 768px) {
    .mechanism-section-new {
        padding: 50px 0;
    }
    
    .mechanism-step {
        gap: 15px;
    }
    
    .step-info {
        padding: 1.2rem 1.5rem;
    }
    
    .step-marker {
        width: 40px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        border-radius: 12px;
    }
    
    .step-title-new {
        font-size: 1.2rem;
    }

    .step-header-new {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}

@media (max-width: 576px) {
    .mechanism-step {
        gap: 10px;
        margin-bottom: 10px;
    }
    
    .step-marker {
        display: none;
    }
    
    .step-info {
        padding: 1.2rem;
        border-radius: 15px;
    }
}

@media (max-width: 576px) {
    .mechanism-header-new {
        margin-bottom: 40px;
    }
    
    .mechanism-title-main {
        font-size: 1.5rem;
    }
    
    .mechanism-row {
        grid-template-columns: 50px 1fr;
        padding: 18px 15px;
    }
    
    .mechanism-arrow-col {
        display: none;
    }
    
    .mechanism-icon-circle {
        width: 38px;
        height: 38px;
    }
    
    .mechanism-icon-circle i {
        font-size: 1rem;
    }
    
    .mechanism-row-title {
        font-size: 0.95rem;
    }
    
    .mechanism-detail-col {
        grid-column: 2 / 3;
    }
}




/* ========================================
   娴ｆ粌鎼х仦鏇犮仛 Section - Works Gallery
   ======================================== */

/* 浣滃搧灞曠ず - 鍥涘ぇ妯″潡灞曠ず鏍峰紡 */
.works-showcase-section {
    background: #ffffff;
    padding: 200px 0 100px;
    position: relative;
    overflow: hidden;
}

.works-showcase-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 102, 255, 0.2), transparent);
}

.works-showcase-header {
    text-align: center;
    margin-bottom: 70px;
}

.works-showcase-label {
    font-size: 0.85rem;
    color: var(--primary-color);
    letter-spacing: 4px;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.section-header-new {
    margin-bottom: 80px;
    position: relative;
    z-index: 10;
}

.section-title-new {
    font-size: 4rem;
    font-weight: 900;
    color: #050c1a;
    letter-spacing: -2px;
    margin: 1.5rem 0;
    line-height: 1.1;
    text-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.section-desc-new {
    font-size: 1.15rem;
    color: #666;
    max-width: 680px;
    margin: 1.5rem auto 0;
    line-height: 1.8;
}
/* Focus Card - Fashion Aesthetic Redesign */
/* Bento Puzzle Grid Layout */
/* Section Header Styles */
.works-section-header {
    text-align: center;
    margin-bottom: 20px;
    position: relative;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, rgba(0, 242, 255, 0.1) 100%);
    border: 1px solid rgba(0, 102, 255, 0.2);
    border-radius: 50px;
    color: #0066FF;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(0, 102, 255, 0.4);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(0, 102, 255, 0);
    }
}

.section-badge i {
    animation: sparkle 1.5s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.2) rotate(180deg); }
}

.section-main-title {
    font-size: 3.5rem;
    font-weight: 900;
    font-family: 'Outfit', sans-serif;
    background: linear-gradient(135deg, #0052CC 0%, #0066FF 50%, #00f2ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    font-weight: 500;
    margin-bottom: 30px;
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.divider-dot {
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #0066FF, #00f2ff);
    border-radius: 50%;
    animation: dotPulse 2s ease-in-out infinite;
}

.divider-dot:first-child {
    animation-delay: 0s;
}

.divider-dot:last-child {
    animation-delay: 0.5s;
}

@keyframes dotPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }
}

.divider-line {
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #0066FF, transparent);
}

/* 8 Modules - 整齐的网格布局 */
.works-modules-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 320px);
    gap: 30px;
    padding: 0;
    margin-top: 0;
    margin-bottom: 80px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

/* 添加背景装饰 */
.works-modules-row::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

/* 卡片布局 */
.works-module-focus {
    position: relative;
    width: 100%;
    height: 100%;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    animation: fadeInUp 0.8s ease-out backwards;
}

/* 添加渐入动画 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.works-module-focus:nth-child(1) { animation-delay: 0.1s; }
.works-module-focus:nth-child(2) { animation-delay: 0.2s; }
.works-module-focus:nth-child(3) { animation-delay: 0.3s; }
.works-module-focus:nth-child(4) { animation-delay: 0.4s; }
.works-module-focus:nth-child(5) { animation-delay: 0.5s; }
.works-module-focus:nth-child(6) { animation-delay: 0.6s; }
.works-module-focus:nth-child(7) { animation-delay: 0.7s; }
.works-module-focus:nth-child(8) { animation-delay: 0.8s; }

.works-module-focus:hover {
    transform: translateY(-15px) scale(1.03);
    z-index: 10 !important;
}

.focus-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    width: 100%;
    background: #ffffff;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.08),
        0 8px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    border: 2px solid rgba(0, 102, 255, 0.08);
    transform-style: preserve-3d;
    --mouse-x: 50%;
    --mouse-y: 50%;
}

/* PixelCanvas-like hover layer */
.focus-pixel-canvas {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0.4;
    transition: opacity 260ms ease, transform 260ms ease;
    mix-blend-mode: normal;
}

.focus-card:hover .focus-pixel-canvas {
    opacity: 1;
    transform: scale(1.01);
}

.focus-pixel-canvas canvas {
    width: 100%;
    height: 100%;
    display: block;
}

.focus-card-overlay::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    background:
        radial-gradient(220px 220px at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 255, 255, 0.28), transparent 70%),
        linear-gradient(120deg, rgba(255,255,255,0.04), rgba(255,255,255,0.0));
    opacity: 0.6;
    transition: opacity 220ms ease;
}

.focus-card:hover .focus-card-overlay::before {
    opacity: 0.9;
}

/* 添加鼠标跟随光晕 */
.focus-card::before {
    content: '';
    position: absolute;
    top: var(--mouse-y);
    left: var(--mouse-x);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.15) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 1;
}

.focus-card:hover::before {
    opacity: 1;
}

/* 添加光泽扫过效果 */
.focus-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
    z-index: 10;
    pointer-events: none;
}

.focus-card:hover::after {
    left: 150%;
}

.focus-card:hover {
    box-shadow: 
        0 30px 80px rgba(0, 102, 255, 0.15),
        0 12px 30px rgba(0, 102, 255, 0.1),
        0 0 0 1px rgba(0, 102, 255, 0.1);
    border-color: rgba(0, 102, 255, 0.2);
    transform: perspective(1000px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
}

.focus-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.focus-card-color-block {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
    opacity: 0;
}

.focus-card-module-name {
    font-size: 2rem;
    font-weight: 800;
    color: #050c1a;
    text-shadow: none;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 0.02em;
    z-index: 1;
}

.focus-card:hover .focus-card-color-block {
    transform: scale(1.05);
    opacity: 0;
}

.focus-card-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

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

.focus-card-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0.90) 100%);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    color: #050c1a;
    z-index: 3;
}

.focus-card:hover .focus-card-overlay {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.76) 0%, rgba(255, 255, 255, 0.86) 100%);
    padding: 2.2rem;
}

.focus-card:hover .focus-category-text {
    color: #0066FF;
}

.focus-card:hover .focus-category-line {
    background: #0066FF;
    width: 40px;
}

.focus-card:hover .focus-title {
    color: #050c1a;
}

.focus-card:hover .focus-title span {
    color: rgba(0, 102, 255, 0.3);
}

.focus-card:hover .focus-description {
    color: #475569;
    border-color: rgba(0, 102, 255, 0.2);
}

.focus-card:hover .focus-button {
    border-color: #0066FF;
    color: #0066FF;
}

.focus-card:hover .focus-button:hover {
    background: #0066FF;
    color: white;
}

.focus-content-section {
    position: relative;
    z-index: 2;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Specific Animations based on the snippet */
.focus-card:hover .focus-content-section {
    opacity: 1;
    transform: translateY(0);
}

/* Category Label */
.focus-category {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0;
    transition: all 0.3s ease;
}

.focus-category-line {
    width: 32px;
    height: 2px;
    background: #0066FF;
    transition: all 0.3s ease;
}

.focus-category-text {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: #0066FF;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
}

/* Large Heading - Huge Italic Style */
.focus-title {
    font-size: 2.5rem;
    font-weight: 900;
    font-style: italic;
    letter-spacing: -0.02em;
    line-height: 1;
    margin: 1rem 0;
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    color: #050c1a;
}

.focus-card:hover .focus-title {
    letter-spacing: 0.05em;
    transform: scale(1.05);
}

/* Response for Grid Layout */
@media (max-width: 1400px) {
    .works-modules-row {
        max-width: 1200px;
        gap: 25px;
        grid-template-rows: repeat(2, 300px);
    }
}

@media (max-width: 1200px) {
    .works-modules-row {
        max-width: 1000px;
        gap: 20px;
        grid-template-rows: repeat(2, 280px);
    }
}

@media (max-width: 992px) {
    .works-modules-row {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, 280px);
        gap: 20px;
        padding: 40px 20px;
    }
}

@media (max-width: 600px) {
    .works-modules-row {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(8, 300px);
        gap: 15px;
    }
    
    .focus-title { 
        font-size: 2.2rem; 
    }
}

.focus-title span {
    color: rgba(0, 102, 255, 0.25);
}

/* Description with Border-Left */
.focus-description {
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 400;
    line-height: 1.5;
    margin: 0.8rem 0 1.5rem 0;
    padding: 0;
    border: none;
    transition: all 0.3s ease;
}

/* Action Button */
.focus-button {
    width: 100%;
    height: 2.8rem;
    border: 2px solid #0066FF;
    background: linear-gradient(135deg, transparent 0%, rgba(0, 102, 255, 0.05) 100%);
    color: #0066FF;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 700;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

/* 按钮波纹效果 */
.focus-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(0, 102, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.focus-button:hover::before {
    width: 300px;
    height: 300px;
}

.focus-button:hover {
    background: linear-gradient(135deg, #0066FF 0%, #0052CC 100%);
    color: white;
    border-color: #0066FF;
    transform: translateY(-3px);
    box-shadow: 
        0 8px 20px rgba(0, 102, 255, 0.3),
        0 0 0 4px rgba(0, 102, 255, 0.1);
}

.focus-button i {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 1;
}

.focus-button:hover i {
    transform: translateX(4px) scale(1.1);
}

.focus-button span {
    position: relative;
    z-index: 1;
}

.focus-button:hover i {
    transform: translateX(5px);
}

/* 鏇村鎸夐挳 */


/* 作品详情弹窗优化 - Immersive Glassmorphism */
.works-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(1000px 600px at 15% 10%, rgba(0, 179, 255, 0.22), transparent 55%),
        radial-gradient(900px 540px at 85% 15%, rgba(232, 121, 249, 0.18), transparent 58%),
        radial-gradient(900px 640px at 60% 92%, rgba(0, 102, 255, 0.18), transparent 55%),
        rgba(5, 12, 26, 0.72);
    backdrop-filter: blur(26px) saturate(160%);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 28px;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.works-modal.active {
    display: flex;
    opacity: 1;
}

.works-modal-content {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.82));
    border-radius: 28px;
    max-width: 1320px;
    width: 100%;
    max-height: min(92vh, 980px);
    overflow: hidden;
    position: relative;
    box-shadow:
        0 50px 120px rgba(0, 0, 0, 0.35),
        0 18px 44px rgba(0, 102, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.40);
    animation: modalScaleUp 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.works-modal-content::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: inherit;
    background:
        radial-gradient(900px 420px at 10% 0%, rgba(0, 179, 255, 0.10), transparent 60%),
        radial-gradient(900px 420px at 90% 0%, rgba(232, 121, 249, 0.10), transparent 58%);
    opacity: 0.9;
}

.works-modal-content::after {
    content: "";
    position: absolute;
    inset: 1px;
    pointer-events: none;
    border-radius: calc(28px - 1px);
    border: 1px solid rgba(0, 102, 255, 0.10);
    opacity: 0.9;
}

@keyframes modalScaleUp {
    from {
        transform: scale(0.9) translateY(40px);
        opacity: 0;
    }
    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

.works-modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.55);
    background: rgba(255, 255, 255, 0.22);
    border-radius: 14px;
    color: rgba(15, 23, 42, 0.86);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.4s ease;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(14px) saturate(160%);
    -webkit-backdrop-filter: blur(14px) saturate(160%);
    box-shadow:
        0 10px 22px rgba(0, 0, 0, 0.10),
        inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.works-modal-close:hover {
    background: rgba(0, 102, 255, 0.16);
    border-color: rgba(0, 179, 255, 0.45);
    transform: translateY(-1px) scale(1.06);
}

.works-modal-body {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    min-height: 640px;
    max-height: min(92vh, 980px);
    position: relative;
    z-index: 1;
}

/* 弹窗左侧大图展示区 */
.modal-gallery {
    position: relative;
    background:
        radial-gradient(900px 420px at 40% 10%, rgba(0, 102, 255, 0.14), transparent 60%),
        linear-gradient(180deg, rgba(2, 6, 23, 0.94), rgba(15, 23, 42, 0.92));
    display: flex;
    flex-direction: column;
    padding: 22px;
    justify-content: space-between;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.modal-gallery-main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.05));
    border-radius: 18px;
    padding: 18px;
    min-height: 460px;
    max-height: 560px;
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.08),
        0 18px 60px rgba(0,0,0,0.35);
}

.modal-gallery-main::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
    background-size: 38px 38px;
    opacity: 0.25;
    mask-image: radial-gradient(circle at 50% 35%, black 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(circle at 50% 35%, black 0%, transparent 70%);
}

.modal-gallery-main img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.40);
    cursor: zoom-in;
    transition: transform 0.4s ease;
}

.modal-gallery-main img:hover {
    transform: scale(1.02);
}

.modal-gallery-thumbs {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 14px;
    padding: 8px 6px 2px;
    flex-wrap: wrap;
    max-height: 112px;
    overflow-x: auto;
    overflow-y: hidden;
}

.thumb-item {
    width: 60px;
    height: 45px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.16);
    opacity: 0.55;
    transition: all 0.3s ease;
    position: relative;
    background: rgba(255,255,255,0.06);
}

.thumb-item.active {
    border-color: rgba(0, 242, 255, 0.75);
    opacity: 1;
    transform: translateY(-1px) scale(1.08);
    box-shadow: 0 10px 24px rgba(0, 242, 255, 0.10);
}

.thumb-item img,
.thumb-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 导航按钮 */
.modal-gallery-prev, .modal-gallery-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: rgba(255,255,255,0.92);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    box-shadow: 0 10px 26px rgba(0,0,0,0.35);
}

.modal-gallery-prev:hover, .modal-gallery-next:hover {
    background: rgba(0, 242, 255, 0.18);
    border-color: rgba(0, 242, 255, 0.40);
}

.modal-gallery-prev { left: 16px; }
.modal-gallery-next { right: 16px; }

/* 右侧内容区 */
.modal-info {
    padding: 22px 24px 18px;
    display: flex;
    flex-direction: column;
    background: transparent;
    overflow-y: auto;
}

.modal-info-header {
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.modal-category {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: #0052cc;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    margin-bottom: 0.8rem;
    padding: 6px 16px;
    background: rgba(0, 102, 255, 0.08);
    border: 1px solid rgba(0, 102, 255, 0.14);
    border-radius: 100px;
}

.modal-title {
    font-size: 2.2rem;
    font-weight: 900;
    color: #050c1a;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.modal-title span {
    display: block;
    font-size: 1.8rem;
    font-weight: 400;
    color: #64748b;
    margin-top: 0.5rem;
    font-style: normal;
}

.modal-info-body {
    flex: 1;
    padding: 0.5rem 0;
    overflow-y: auto;
}

.modal-desc {
    font-size: 0.98rem;
    color: rgba(15, 23, 42, 0.72);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    border-left: 3px solid rgba(0, 102, 255, 0.55);
    text-align: justify;
}

.modal-desc strong {
    color: #050c1a;
    font-weight: 700;
}

.modal-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.modal-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.8rem;
    color: rgba(15, 23, 42, 0.78);
    font-weight: 600;
    padding: 0.7rem 1rem;
    background: rgba(255, 255, 255, 0.70);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(15, 23, 42, 0.08);
}

.modal-feature-item:hover {
    background: rgba(0, 102, 255, 0.06);
    border-color: rgba(0, 102, 255, 0.20);
    transform: translateY(-3px);
    box-shadow: 0 10px 22px rgba(0,0,0,0.06);
}

.modal-feature-item i {
    color: #0066FF;
    font-size: 0.85rem;
}

.modal-info-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    margin-top: 16px;
    border-top: 1px solid rgba(15, 23, 42, 0.10);
}

.modal-stats {
    display: flex;
    gap: 14px;
}

.modal-stat {
    display: flex;
    flex-direction: column;
    padding: 10px 12px;
    border-radius: 14px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: rgba(255, 255, 255, 0.72);
}

.modal-stat-num {
    font-size: 1.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, #050c1a 0%, #0066FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.2rem;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.05em;
}

.modal-stat-label {
    font-size: 0.7rem;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.modal-view-work-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    border-radius: 14px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 26px rgba(0, 102, 255, 0.24);
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.modal-view-work-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 102, 255, 0.35);
    color: white;
}

.modal-view-work-btn i {
    font-size: 0.95rem;
    transition: transform 0.3s ease;
}

.modal-view-work-btn:hover i {
    transform: translate(2px, -2px);
}

/* Intro & Global Video Shared Styles */
.intro-video-container {
    padding-bottom: 2rem;
}

.intro-video-wrapper {
    position: relative;
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    background: #000;
    aspect-ratio: 16 / 9;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 102, 255, 0.1);
}

.intro-video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.intro-video-wrapper::after {
    content: '\f028';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    bottom: 25px;
    right: 25px;
    background: #0066FF;
    color: white;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
    box-shadow: 0 10px 20px rgba(0, 102, 255, 0.3);
}

.intro-video-wrapper:hover::after {
    opacity: 1;
    transform: translateY(0);
}

.intro-video-wrapper.expanded {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    width: 90vw;
    max-width: 1200px;
    height: auto;
    z-index: 11000;
    border-radius: 30px;
    box-shadow: 0 50px 150px rgba(0, 0, 0, 0.6);
}

/* Global Fullscreen Video Player */
.video-full-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 12, 26, 0.95);
    backdrop-filter: blur(25px);
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.video-full-overlay.active {
    display: flex;
    opacity: 1;
}

.full-video-container {
    width: 90vw;
    max-width: 1200px;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.video-full-overlay.active .full-video-container {
    transform: scale(1);
}

.full-video-container video {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 50px 100px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.1);
}

.full-video-close {
    position: absolute;
    top: -60px;
    right: 0;
    background: white;
    color: #050c1a;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.full-video-close:hover {
    background: #0066FF;
    color: white;
    transform: rotate(90deg);
}

/* Modal Responsive */
@media (max-width: 992px) {
    .works-modal-body {
        grid-template-columns: 1fr;
        max-height: 85vh;
        overflow-y: auto;
    }
    .modal-gallery {
        padding: 2rem;
    }
    .modal-gallery-main img {
        max-height: 350px;
    }
    .modal-info {
        padding: 2.5rem;
    }
    .modal-title {
        font-size: 1.8rem;
    }
    .modal-info-footer {
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start;
    }
    .modal-view-work-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .works-modal {
        padding: 1rem;
    }
    .modal-stats {
        gap: 2rem;
    }
    .modal-view-work-btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}
    .works-modal {
        padding: 1rem;
    }
    .modal-gallery {
        padding: 1.5rem;
    }
    .modal-gallery-main img {
        max-height: 250px;
    }
    .modal-info {
        padding: 1.5rem;
    }
    .modal-title {
        font-size: 1.5rem;
    }
    .modal-stats {
        gap: 1.5rem;
    }
    .modal-stat-num {
        font-size: 1.5rem;
    }
    .modal-features {
        grid-template-columns: 1fr;
    }
}

/* 妯″潡鍗＄墖 */
.module-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.module-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

/* 娣辫壊鍗＄墖鍙樹綋 */
.module-card-dark {
    background: #1a1a1a;
    color: white;
}

.module-card-dark .module-title {
    color: white;
}

.module-card-dark .module-desc {
    color: rgba(255,255,255,0.7);
}

.module-card-dark .module-tags span {
    background: rgba(0, 102, 255, 0.15);
    color: var(--secondary-color);
    border-color: rgba(0, 102, 255, 0.3);
}

.module-card-dark .module-footer {
    border-top-color: rgba(255,255,255,0.1);
}

.module-card-dark .stat-label {
    color: rgba(255,255,255,0.5);
}

/* 寮鸿皟鑹插崱鐗囧彉浣?*/
.module-card-accent {
    background: var(--gradient-primary);
    color: white;
}

.module-card-accent .module-icon {
    background: rgba(255,255,255,0.2);
    color: white;
}

.module-card-accent .module-number {
    color: rgba(255,255,255,0.3);
}

.module-card-accent .module-title {
    color: white;
}

.module-card-accent .module-desc {
    color: rgba(255,255,255,0.9);
}

.module-card-accent .module-tags span {
    background: rgba(255,255,255,0.2);
    color: white;
    border-color: rgba(255,255,255,0.3);
}

.module-card-accent .module-footer {
    border-top-color: rgba(255,255,255,0.2);
}

.module-card-accent .stat-num {
    color: white;
}

.module-card-accent .stat-label {
    color: rgba(255,255,255,0.7);
}

.module-card-accent .module-arrow {
    background: white;
    color: var(--primary-color);
}

/* 妯″潡澶撮儴 */
.module-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 2rem 2rem 0;
}

.module-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.6rem;
    box-shadow: 0 8px 20px rgba(0, 102, 255, 0.3);
}

.module-number {
    font-size: 3rem;
    font-weight: 900;
    color: rgba(0,0,0,0.06);
    line-height: 1;
}

/* 濡€虫健閸愬懎顔?*/
.module-content {
    padding: 1.5rem 2rem;
    flex-grow: 1;
}

.module-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 0.8rem;
}

.module-desc {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.module-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.module-tags span {
    padding: 0.4rem 1rem;
    background: rgba(0, 102, 255, 0.08);
    border: 1px solid rgba(0, 102, 255, 0.15);
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--primary-color);
    font-weight: 600;
}

/* 妯″潡鍥惧簱 */
.module-gallery {
    padding: 0 2rem;
    margin-bottom: 1.5rem;
}

.gallery-main {
    position: relative;
    height: 180px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 0.8rem;
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.module-card:hover .gallery-main img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 1.2rem;
    opacity: 0;
    transition: all 0.3s ease;
}

.module-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-view-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.5rem;
    background: rgba(255,255,255,0.95);
    border: none;
    border-radius: 25px;
    color: #1a1a1a;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    transform: translateY(10px);
}

.module-card:hover .gallery-view-btn {
    transform: translateY(0);
}

.gallery-view-btn:hover {
    background: var(--primary-color);
    color: white;
}

.gallery-view-btn i {
    font-size: 0.9rem;
}

/* 缂╃暐鍥?*/
.gallery-thumbs {
    display: flex;
    gap: 0.5rem;
}

.gallery-thumbs img {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    object-fit: cover;
    opacity: 0.7;
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-thumbs img:hover {
    opacity: 1;
    transform: scale(1.05);
}

.thumb-more {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    background: rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 600;
    color: #999;
}

.thumb-placeholder {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 1.2rem;
}

/* 浠ｇ爜棰勮鏍峰紡 */
.gallery-code {
    background: #1e1e2e;
    display: flex;
    flex-direction: column;
}

.code-preview {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.code-header {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0.8rem 1rem;
    background: rgba(0,0,0,0.3);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.code-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.code-dot.red { background: #ff5f56; }
.code-dot.yellow { background: #ffbd2e; }
.code-dot.green { background: #27ca40; }

.code-title {
    margin-left: auto;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    font-family: 'Consolas', monospace;
}

.code-body {
    padding: 1rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.code-body code {
    font-family: 'Consolas', 'Monaco', monospace;
    font-size: 0.75rem;
    color: #a6e3a1;
    display: block;
}

.code-body code:nth-child(1) { color: #89b4fa; }
.code-body code:nth-child(2) { color: #f9e2af; padding-left: 1rem; }
.code-body code:nth-child(3) { color: #6c7086; padding-left: 1.5rem; }
.code-body code:nth-child(4) { color: #f9e2af; padding-left: 1rem; }
.code-body code:nth-child(5) { color: #89b4fa; }

/* 妯″潡搴曢儴 */
.module-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 2rem;
    border-top: 1px solid rgba(0,0,0,0.06);
    margin-top: auto;
}

.module-stat {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.stat-num {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.8rem;
    color: #999;
}

.module-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 102, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: all 0.3s ease;
    cursor: pointer;
}

.module-card:hover .module-arrow {
    background: var(--primary-color);
    color: white;
    transform: translateX(5px);
}

/* 鍥剧墖棰勮寮圭獥 */
.works-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

.works-lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.lightbox-close:hover {
    color: var(--secondary-color);
    transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 50%;
    background: transparent;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-prev {
    left: -80px;
}

.lightbox-next {
    right: -80px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.lightbox-image-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image-wrapper img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-counter {
    text-align: center;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* 鍝嶅簲寮?- 浣滃搧灞曠ず鍥涘ぇ妯″潡涓€琛?*/
@media (max-width: 1200px) {
    .works-modules-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .module-image-wrapper {
        height: 140px;
    }
}

@media (max-width: 992px) {
    .works-showcase-title {
        font-size: 2.5rem;
    }
    
    .module-image-wrapper {
        height: 160px;
    }
}

@media (max-width: 768px) {
    .works-showcase-section {
        padding: 60px 0;
    }
    
    .works-showcase-title {
        font-size: 2.2rem;
    }
    
    .works-showcase-header {
        margin-bottom: 40px;
    }
    
    .works-modules-row {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto 40px;
    }
    
    .module-image-wrapper {
        height: 180px;
    }
    
    .works-more-btn {
        padding: 0.9rem 2rem;
        font-size: 0.95rem;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
}

@media (max-width: 576px) {
    .works-showcase-title {
        font-size: 1.8rem;
    }
    
    .works-showcase-desc {
        font-size: 0.95rem;
    }
    
    .module-title-compact {
        font-size: 1.1rem;
    }
    
    .module-desc-compact {
        font-size: 0.8rem;
    }
    
    .module-info-compact {
        padding: 1rem 1.2rem 1.2rem;
    }
    
    .module-image-wrapper {
        height: 150px;
    }
    
    .works-more-btn {
        padding: 0.8rem 1.8rem;
        font-size: 0.9rem;
    }
}

/* ----------------------------------------------------------------
   Infinite Ribbon Section (Hero Background Decor - Single Horizontal Line)
---------------------------------------------------------------- */
.hero-ribbon-container {
    position: absolute;
    bottom: 20px; /* Position at the very bottom */
    left: 0;
    width: 100%;
    height: 60px;
    pointer-events: none;
    z-index: 2;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.ribbon-track {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.ribbon-content {
    display: flex;
    white-space: nowrap;
    animation: marquee-ribbon 40s linear infinite;
    will-change: transform;
}

.ribbon-content span {
    font-family: "Outfit", sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
    padding: 0 40px;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    text-transform: uppercase;
}

.ribbon-content span::after {
    content: "鈥?;
    margin-left: 80px;
    color: var(--primary-color);
    opacity: 0.3;
}

@keyframes marquee-ribbon {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Responsive Ribbon */
@media (max-width: 768px) {
    .hero-ribbon-container {
        bottom: 10px;
        height: 40px;
    }
    .ribbon-content span {
        font-size: 0.8rem;
        padding: 0 20px;
    }
}

/* 鑾峰灞曠ず Section */
.awards-section-new {
    padding: 100px 0;
    background: #050c1a;
    overflow: hidden;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.awards-section-new .training-title {
    color: white;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.awards-section-new .training-label {
    color: var(--secondary-color);
}

.awards-section-new .awards-desc {
    color: rgba(255, 255, 255, 0.9);
}

.awards-header {
    text-align: center;
    margin-bottom: 60px;
}

.awards-label {
    color: var(--secondary-color);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.awards-title {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.awards-desc {
    color: rgba(255, 255, 255, 0.6);
    margin: 0 auto;
    font-size: 1rem;
}

/* 3D Drifting Marquee */
.awards-marquee-wrapper {
    perspective: 5000px; /* High perspective per Satis UI exact spec */
    width: 100%;
    height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Added tech-themed stardust or soft glow background */
    background: radial-gradient(circle at center, rgba(0, 102, 255, 0.05) 0%, transparent 70%);
}

.awards-marquee-track {
    display: flex;
    width: max-content;
    transform-style: preserve-3d;
    /* Perfect replica of Satis UI camera angle */
    transform: rotateX(-15deg) rotateY(50deg);
    /* High velocity base speed */
    animation: driftMarquee 15s linear infinite;
}

.awards-marquee-track:hover {
    animation-play-state: paused;
}

.marquee-group {
    display: flex;
    transform-style: preserve-3d;
}

.award-card {
    width: 320px;
    height: 420px; /* 浼樺寲涓?3:4 姣斾緥锛屾洿閫傚悎瀹屾暣灞曠ず璇佷功鍐呭 */
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
    margin-left: -60px; /* 鍑忓皬閲嶅彔锛屼娇灞曠ず鏇村畬鏁?*/
    position: relative;
    transform-style: preserve-3d;
    transform: rotateY(-90deg) skewX(35deg);
    box-shadow: 15px 15px 40px rgba(0, 102, 255, 0.1); /* 娴滎喛澹婇梼鏉戝 */
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    background: rgba(255, 255, 255, 0.4); /* 閺勫簼瀵掗惃鍕偓蹇旀閼?*/
    cursor: pointer;
}


/* Enhancing hover interaction like interactive drag/stop focus */
.award-card:hover {
    /* Lift up and un-skew so the user can easily read the certificate */
    transform: rotateY(-90deg) skewX(0deg) scale(1.1) translateZ(80px);
    box-shadow: 35px 35px 70px rgba(0,0,0,0.95), inset 0 0 0 2px rgba(255,255,255,0.3);
    z-index: 50 !important;
}

.award-card img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* 淇濊瘉璇佷功瀹屾暣灞曠ず涓嶈瑁佸壀 */
    background: white; /* 璇佷功鑳屾櫙琛ョ櫧 */
    filter: brightness(1.0); /* 淇濇寔鏄庝寒锛屼笉浣跨敤鏆楄壊婊ら暅 */
    transition: all 0.5s ease;
    pointer-events: none;
}

.award-card:hover img {
    filter: brightness(1.1);
}

/* 浜壊閫忔槑娓愬彉鏁堟灉 */
.award-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.4) 0%, transparent 60%);
    pointer-events: none;
}

/* 鍏ㄩ儴璇佷功灞曠ず缃戞牸鏍峰紡 - Exquisite Design */
.awards-grid-container {
    padding: 80px 0 120px;
    position: relative;
    z-index: 10;
    background: radial-gradient(40% 40% at 50% 50%, rgba(0, 102, 255, 0.03) 0%, transparent 100%);
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 40px;
    perspective: 2000px;
}

.award-grid-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    overflow: hidden;
    backdrop-filter: blur(15px);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.award-grid-card:hover {
    transform: translateY(-15px) rotateX(4deg);
    border-color: rgba(0, 242, 255, 0.4);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 30px rgba(0, 242, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
}

.award-card-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(0, 242, 255, 0.15) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.award-grid-card:hover .award-card-glow {
    opacity: 1;
}

.award-grid-image {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #ffffff;
    padding: 15px;
    margin: 15px;
    border-radius: 16px;
    box-shadow: inset 0 0 20px rgba(0,0,0,0.05);
}

.award-grid-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.award-grid-card:hover .award-grid-image img {
    transform: scale(1.05);
}

.award-grid-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 25, 47, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    opacity: 0;
    transition: all 0.4s ease;
    backdrop-filter: blur(4px);
}

.award-grid-card:hover .award-grid-overlay {
    opacity: 1;
}

.view-details-text {
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

.award-grid-card:hover .view-details-text {
    transform: translateY(0);
}

.award-view-btn-new {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    box-shadow: 0 10px 20px rgba(0, 102, 255, 0.3);
    transform: scale(0.8) translateY(10px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.award-grid-card:hover .award-view-btn-new {
    transform: scale(1) translateY(0);
}

.award-grid-info {
    padding: 10px 25px 30px;
    flex: 1;
}

.award-header-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.award-grid-tag {
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--secondary-color);
    background: rgba(0, 242, 255, 0.1);
    padding: 4px 12px;
    border-radius: 100px;
    border: 1px solid rgba(0, 242, 255, 0.2);
    letter-spacing: 1px;
}

.award-year {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
}

.award-grid-title {
    color: white;
    font-size: 1.2rem;
    font-weight: 800;
    line-height: 1.3;
    margin: 0 0 8px 0;
    font-family: 'Outfit', sans-serif;
}

.award-grid-work {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    margin: 0;
    font-weight: 500;
}

/* ========================================
   Award Modal - Premium Secondary Page
   ======================================== */
.award-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.award-modal.active {
    opacity: 1;
    visibility: visible;
}

.award-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(5, 12, 26, 0.85);
    backdrop-filter: blur(15px);
}

.award-modal-container {
    position: relative;
    width: 90%;
    max-width: 1200px;
    background: linear-gradient(145deg, rgba(10, 25, 47, 0.95), rgba(5, 12, 26, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.8);
    transform: scale(0.9) translateY(40px);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
}

.award-modal.active .award-modal-container {
    transform: scale(1) translateY(0);
}

.award-modal-close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.award-modal-close:hover {
    background: rgba(255, 107, 107, 0.2);
    color: #ff6b6b;
    border-color: rgba(255, 107, 107, 0.3);
    transform: rotate(90deg);
}

.award-modal-content {
    display: flex;
    width: 100%;
    min-height: 650px;
}

.award-modal-gallery {
    flex: 1.2;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    position: relative;
}

.award-image-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

#awardModalImg {
    max-width: 100%;
    max-height: 500px;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15));
    transition: transform 0.5s ease;
    cursor: zoom-in;
}

#awardModalImg:hover {
    transform: scale(1.02);
}

.image-zoom-hint {
    color: #94A3B8;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.award-modal-details {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
}

.award-modal-header {
    margin-bottom: 40px;
}

.award-modal-category-badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
}

.award-modal-title {
    color: white;
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1.2;
    font-family: 'Outfit', sans-serif;
}

.award-modal-body {
    flex: 1;
}

.award-info-box {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 30px;
}

.award-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.award-info-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.info-label {
    font-size: 0.75rem;
    color: var(--secondary-color);
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.6;
}

.info-value {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
}

.info-value.primary {
    color: #ffffff;
    font-size: 1.2rem;
}

.award-description-box {
    padding: 0 10px;
}

.desc-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.3);
}

.desc-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
}

#awardModalDesc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    line-height: 1.8;
    text-align: justify;
}

.award-modal-footer {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-nav-group {
    display: flex;
    align-items: center;
    gap: 20px;
}

.modal-nav-btn {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-nav-btn:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    transform: scale(1.1);
}

.modal-nav-counter {
    color: rgba(255, 255, 255, 0.4);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1rem;
}

#currIdx {
    color: var(--secondary-color);
}

.award-modal-footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo-sm {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: white;
}

.award-modal-footer-brand span {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.85rem;
    font-weight: 500;
}

@media (max-width: 1100px) {
    .award-modal-content {
        flex-direction: column;
    }
    .award-modal-gallery {
        flex: none;
        height: 400px;
        padding: 40px;
    }
    .award-modal-container {
        width: 95%;
        max-height: 90vh;
        overflow-y: auto;
    }
    .award-modal-details {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .award-info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .award-modal-title {
        font-size: 1.6rem;
    }
    .award-modal-gallery {
        height: 300px;
    }
}


@keyframes driftMarquee {
    0% { transform: rotateX(-15deg) rotateY(50deg) translateX(0); }
    100% { transform: rotateX(-15deg) rotateY(50deg) translateX(-50%); }
}



/* ========================================
   Projects Section - 3D Coverflow
   ======================================== */
.projects-section-coverflow {
    padding: 100px 0 150px;
    background: #0a192f;
    position: relative;
    overflow: hidden;
}

.coverflow-background-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.coverflow-header {
    text-align: center;
    position: relative;
    z-index: 5;
    margin-bottom: 80px;
}

.coverflow-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.5);
    max-width: 600px;
    margin: 15px auto 0;
    line-height: 1.6;
}

/* Viewport & Container */
.coverflow-viewport {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    padding: 40px 0;
}

.coverflow-container {
    height: 500px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1200px;
    transform-style: preserve-3d;
}

.coverflow-item {
    position: absolute;
    width: 380px;
    height: 480px;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
    user-select: none;
    transform-style: preserve-3d;
}

.coverflow-card {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 28px;
    overflow: hidden;
    backdrop-filter: blur(15px);
    display: flex;
    flex-direction: column;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.coverflow-item:hover .coverflow-card {
    border-color: rgba(255, 255, 255, 0.2);
}

.coverflow-img-box {
    width: 100%;
    height: 250px;
    position: relative;
    overflow: hidden;
}

.coverflow-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.coverflow-item:hover .coverflow-img-box img {
    transform: scale(1.05);
}

.coverflow-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(10, 25, 47, 0.8);
    backdrop-filter: blur(5px);
    color: #00f2ff;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
    border: 1px solid rgba(0, 242, 255, 0.2);
}

.coverflow-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.project-indicator {
    font-size: 0.8rem;
    color: #4ade80;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

.project-indicator.developing { color: #60a5fa; }
.project-indicator.pending { color: #94a3b8; }
.project-indicator.labs { color: #c084fc; }

.project-indicator .dot {
    width: 8px;
    height: 8px;
    background: currentColor;
    border-radius: 50%;
    box-shadow: 0 0 10px currentColor;
    animation: pulse 2s infinite;
}

.project-title {
    color: white;
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 12px;
    font-family: 'Outfit', sans-serif;
}

.project-summary {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.project-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.project-meta span {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.project-explore-btn {
    width: 100%;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 12px;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 700;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.project-explore-btn:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    box-shadow: 0 10px 20px rgba(0, 102, 255, 0.2);
    transform: translateY(-2px);
}

/* ========================================
   Projects 3D Drifting Marquee Style
   ======================================== */
.projects-marquee-section {
    padding: 150px 0;
    background: #ffffff;
    overflow: hidden; 
    position: relative;
}

.projects-marquee-wrapper {
    width: 100%;
    position: relative;
    padding: 60px 0;
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    overflow: visible;
}

.projects-perspective-container {
    perspective: 2500px;
    perspective-origin: 50% 50%;
    transform-style: preserve-3d;
    padding: 40px 0;
    overflow: visible;
}

.projects-marquee-track {
    display: flex;
    width: max-content;
    transform-style: preserve-3d;
    /* 减小倾斜角度，让卡片更正面 */
    transform: rotateX(-5deg) rotateY(15deg);
    animation: driftProject 40s linear infinite;
    padding-left: 100px;
    overflow: visible;
}

@keyframes driftProject {
    0% { transform: rotateX(-5deg) rotateY(15deg) translateX(0); }
    100% { transform: rotateX(-5deg) rotateY(15deg) translateX(-50%); }
}

/* 移除悬停暂停效果 */
.projects-marquee-track:hover {
    animation-play-state: running;
}

.marquee-group {
    display: flex;
    transform-style: preserve-3d;
    gap: 20px; /* 使用gap代替margin，间距更紧凑 */
}

.project-drift-card {
    width: 400px;
    height: 260px;
    flex-shrink: 0;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    transform-style: preserve-3d;
    /* 减小卡片倾斜角度 */
    transform: rotateY(-25deg) skewX(5deg);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    cursor: default; /* 改为默认光标，表示不可交互 */
    background: #fff;
    pointer-events: none; /* 禁用所有鼠标事件 */
}

/* 移除悬停效果 */
.project-drift-card:hover {
    transform: rotateY(-25deg) skewX(5deg);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.project-drift-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: none; /* 移除过渡效果 */
}

.project-drift-card:hover img {
    transform: none; /* 移除缩放效果 */
}

.drift-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
    color: white;
    transform: translateZ(15px);
}

.drift-card-overlay h3 {
    margin: 0;
    font-size: 1.2rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

.drift-card-overlay span {
    font-size: 0.75rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .project-drift-card {
        width: 280px;
        height: 200px;
    }
    .projects-marquee-track {
        animation-duration: 25s;
    }
    .marquee-group {
        gap: 15px;
    }
}

/* ========================================
   Projects Grid Container - Similar to Awards
   ======================================== */
.projects-grid-container {
    padding: 80px 0 120px;
    position: relative;
    z-index: 10;
    background: radial-gradient(40% 40% at 50% 50%, rgba(0, 102, 255, 0.03) 0%, transparent 100%);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 40px;
    perspective: 2000px;
}

.project-grid-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    overflow: hidden;
    backdrop-filter: blur(15px);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.project-grid-card:hover {
    transform: translateY(-15px) rotateX(4deg);
    border-color: rgba(0, 242, 255, 0.4);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 30px rgba(0, 242, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
}

.project-card-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(0, 242, 255, 0.15) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.project-grid-card:hover .project-card-glow {
    opacity: 1;
}

.project-grid-image {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #ffffff;
    padding: 15px;
    margin: 15px;
    border-radius: 16px;
    box-shadow: inset 0 0 20px rgba(0,0,0,0.05);
}

.project-grid-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.project-grid-card:hover .project-grid-image img {
    transform: scale(1.05);
}

.project-grid-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 25, 47, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    opacity: 0;
    transition: all 0.4s ease;
    backdrop-filter: blur(4px);
}

.project-grid-card:hover .project-grid-overlay {
    opacity: 1;
}

.project-view-btn-new {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    box-shadow: 0 10px 20px rgba(0, 102, 255, 0.3);
    transform: scale(0.8) translateY(10px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.project-grid-card:hover .project-view-btn-new {
    transform: scale(1) translateY(0);
}

.project-grid-info {
    padding: 10px 25px 30px;
    flex: 1;
}

.project-header-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.project-grid-tag {
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--secondary-color);
    background: rgba(0, 242, 255, 0.1);
    padding: 4px 12px;
    border-radius: 100px;
    border: 1px solid rgba(0, 242, 255, 0.2);
    letter-spacing: 1px;
}

.project-version {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
}

.project-grid-title {
    color: white;
    font-size: 1.2rem;
    font-weight: 800;
    line-height: 1.3;
    margin: 0 0 8px 0;
    font-family: 'Outfit', sans-serif;
}

.project-grid-tech {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    margin: 0;
    font-weight: 500;
}


/* ========================================
   Project Detail Modal - Premium Style
   ======================================== */
.project-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.project-modal.active {
    opacity: 1;
    visibility: visible;
}

.project-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 25, 47, 0.85);
    backdrop-filter: blur(20px);
}

.project-modal-container {
    position: relative;
    width: 95%;
    max-width: 1000px;
    max-height: 90vh;
    background: #0a192f;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 32px;
    overflow-y: auto;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.5);
    transform: scale(0.9) translateY(40px);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.project-modal.active .project-modal-container {
    transform: scale(1) translateY(0);
}

.project-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.project-modal-close:hover {
    background: #ff4757;
    transform: rotate(90deg);
}

/* Banner Section */
.project-modal-banner {
    width: 100%;
    height: 350px;
    position: relative;
    overflow: hidden;
}

.project-modal-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #0a192f 0%, transparent 80%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
}

.banner-badge {
    background: var(--gradient-primary);
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 800;
    display: inline-block;
    width: fit-content;
    margin-bottom: 15px;
}

.banner-title {
    color: white;
    font-size: 2.8rem;
    font-weight: 900;
    font-family: 'Outfit', sans-serif;
}

/* Body Section */
.project-modal-body {
    padding: 0 40px 40px;
}

.pm-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 60px;
}

.pm-section {
    margin-bottom: 40px;
}

.pm-section-title {
    color: var(--secondary-color);
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pm-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    font-size: 1.05rem;
}

.pm-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.pm-feature-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 15px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
}

.pm-feature-item i {
    color: #4ade80;
}

/* Sidebar */
.pm-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.pm-stat-box {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.pm-stat-item {
    margin-bottom: 20px;
}

.pm-stat-item:last-child { margin-bottom: 0; }

.pm-stat-label {
    display: block;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 5px;
}

.pm-stat-value {
    font-size: 1.2rem;
    font-weight: 800;
    color: white;
}

.pm-stat-value.highlight {
    color: #00f2ff;
}

.pm-info-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pm-info-item label {
    display: block;
    font-size: 0.75rem;
    color: var(--secondary-color);
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.pm-info-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    font-weight: 500;
}

.pm-action-btn {
    background: white;
    color: #0a192f;
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.pm-action-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 242, 255, 0.2);
}

.project-modal-footer {
    padding: 30px 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.pm-footer-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.pm-footer-brand img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

.pm-footer-brand span {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.85rem;
}

/* 璋冩暣椤圭洰棰勮鍗＄墖瀹藉害 */
.coverflow-item {
    width: 550px !important; /* 鎷夐珮瀹藉害 */
    height: 420px;
}

.coverflow-img-box {
    height: 220px;
}

@media (max-width: 900px) {
    .pm-layout {
        grid-template-columns: 1fr;
    }
    .coverflow-item {
        width: 340px !important;
    }
}


/* ========================================
   Expanded Projects UI & Modal
   ======================================== */
.coverflow-viewport.wide {
    max-width: 1600px;
    padding: 60px 0;
}

.project-modal {
    position: fixed;
    inset: 0;
    z-index: 11000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.project-modal.active {
    opacity: 1;
    visibility: visible;
}

.p-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(5, 12, 26, 0.85);
    backdrop-filter: blur(20px);
}

.p-modal-container {
    position: relative;
    width: 100%;
    max-width: 1300px;
    height: 85vh;
    background: #0a192f;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 36px;
    overflow: hidden;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.6);
    transform: scale(0.9) translateY(30px);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 10;
}

.project-modal.active .p-modal-container {
    transform: scale(1) translateY(0);
}

.p-modal-close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 100;
}

.p-modal-close:hover {
    background: #ff4757;
    border-color: #ff4757;
    transform: rotate(90deg);
}

.p-modal-grid {
    display: grid;
    grid-template-columns: 420px 1fr;
    height: 100%;
}

/* Sidebar */
.p-modal-sidebar {
    background: rgba(255, 255, 255, 0.02);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.p-modal-badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(0, 242, 255, 0.1);
    color: #00f2ff;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 242, 255, 0.2);
    width: fit-content;
}

.p-modal-title {
    color: white;
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 15px;
    font-family: 'Outfit', sans-serif;
    line-height: 1.2;
}

.p-modal-status {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #4ade80;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 40px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: currentColor;
    border-radius: 50%;
    box-shadow: 0 0 10px currentColor;
    animation: pulse 2s infinite;
}

.p-modal-subheading {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.p-modal-desc-section p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 40px;
}

.p-modal-feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.p-modal-feature-list li {
    color: white;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 12px;
}

.p-modal-feature-list li::before {
    content: '鈫?;
    color: #00f2ff;
    font-weight: 800;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 50px;
}

.tech-tags span {
    padding: 5px 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    font-weight: 600;
}

.p-modal-action-btn {
    margin-top: auto;
    width: 100%;
    padding: 18px;
    background: var(--gradient-primary);
    border: none;
    color: white;
    border-radius: 16px;
    font-weight: 800;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.p-modal-action-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 102, 255, 0.3);
}

/* Main Content Area */
.p-modal-main {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.p-modal-preview {
    width: 100%;
}

.p-preview-window {
    background: #1e293b;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 40px;
}

.window-header {
    height: 40px;
    background: #0f172a;
    display: flex;
    align-items: center;
    padding: 0 20px;
    gap: 30px;
}

.window-header .dots {
    display: flex;
    gap: 8px;
}

.window-header .dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dots .r { background: #ff5f56; }
.dots .y { background: #ffbd2e; }
.dots .g { background: #27c93f; }

.address-bar {
    background: #1e293b;
    height: 24px;
    flex: 1;
    border-radius: 4px;
    display: flex;
    align-items: center;
    padding: 0 15px;
    color: rgba(255, 255, 255, 0.3);
    font-family: monospace;
    font-size: 0.75rem;
}

#pmImg {
    width: 100%;
    height: 480px;
    object-fit: cover;
}

.p-preview-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.p-detail-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 25px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.p-detail-card i {
    font-size: 1.8rem;
    color: #00f2ff;
}

.p-detail-card span {
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
}

@media (max-width: 1200px) {
    .p-modal-grid {
        grid-template-columns: 1fr;
    }
    .p-modal-sidebar {
        display: none; /* Mobile optimization: hide sidebar or merge */
    }
    .p-modal-container {
        height: auto;
        max-height: 90vh;
        overflow-y: auto;
    }
}


/* ========================================
   Enhanced Project Modal & Height Adjustment
   ======================================== */
.projects-section-coverflow {
    min-height: 900px; /* Increased height */
    padding: 120px 0 180px;
}

.coverflow-container {
    height: 580px; /* Increased container height */
}

.header-line-accent {
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    margin: 20px auto;
    border-radius: 2px;
}

.project-explore-btn-new {
    width: 100%;
    padding: 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 12px;
    text-align: center;
    font-size: 0.95rem;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    margin-top: auto;
}

.project-explore-btn-new:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    box-shadow: 0 10px 20px rgba(0, 102, 255, 0.2);
    transform: translateY(-3px);
}

/* Project Modal (Secondary Page) */
/* Project Modal (Secondary Page) - Premium Optimized */
.project-modal {
    position: fixed;
    inset: 0;
    z-index: 20000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-modal.active {
    opacity: 1;
    visibility: visible;
}

.project-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(2, 6, 12, 0.85);
    backdrop-filter: blur(15px);
}

.project-modal-container {
    position: relative;
    width: 95%;
    max-width: 1400px;
    height: 85vh;
    background: rgba(2, 6, 12, 0.95); /* Deeper black-blue for tech feel */
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 102, 255, 0.2); /* Subtle blue border */
    border-radius: 30px;
    overflow: hidden;
    transform: scale(0.95) translateY(40px);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.8);
}

.project-modal.active .project-modal-container {
    transform: scale(1) translateY(0);
}

.project-modal-close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 100;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.project-modal-close:hover {
    background: #ff4d4d;
    transform: rotate(90deg) scale(1.1);
    border-color: transparent;
    box-shadow: 0 0 20px rgba(255, 77, 77, 0.4);
}

.project-modal-content {
    display: flex;
    height: 100%;
}

/* Modal Showcase (Left) */
.project-modal-showcase {
    flex: 1.2;
    background: radial-gradient(circle at center, rgba(0, 102, 255, 0.05) 0%, transparent 70%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px;
    position: relative;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

/* Macbook Frame Style */
.macbook-frame {
    width: 100%;
    max-width: 850px;
    position: relative;
    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.4));
}

.macbook-screen {
    background: #000;
    border-radius: 12px 12px 0 0;
    padding: 10px;
    border: 10px solid #1f1f1f;
    aspect-ratio: 16/10;
    overflow: hidden;
    position: relative;
}

.macbook-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
    transition: transform 0.5s ease;
}

.macbook-base {
    height: 16px;
    background: #2a2a2a;
    border-radius: 0 0 40px 40px;
    position: relative;
    width: 112%;
    left: -6%;
    box-shadow: inset 0 2px 10px rgba(255,255,255,0.1);
}

/* Modal Details (Right) */
.project-modal-details {
    flex: 1;
    padding: 60px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, rgba(255,255,255,0.02) 0%, transparent 100%);
}

.header-top {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.project-modal-version {
    color: #00f2ff;
    font-weight: 900;
    letter-spacing: 2px;
    font-size: 0.85rem;
    padding: 6px 12px;
    background: rgba(0, 242, 255, 0.1);
    border-radius: 4px;
}

.project-modal-status-badge {
    padding: 6px 14px;
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 6px;
}

.project-modal-status-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: currentColor;
    border-radius: 50%;
    box-shadow: 0 0 10px currentColor;
}

.project-modal-title {
    font-size: 3.2rem;
    color: #ffffff; /* Sharp white */
    font-weight: 900;
    margin: 0 0 40px;
    line-height: 1.1;
    font-family: 'Outfit', sans-serif;
    background: linear-gradient(to right, #ffffff 0%, #00f2ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.project-section-block {
    margin-bottom: 45px;
}

.block-title {
    color: #00f2ff;
    font-size: 0.85rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.block-title i {
    font-size: 1rem;
    background: rgba(0, 242, 255, 0.1);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.project-modal-desc {
    color: #f1f5f9; /* High contrast white-blue */
    font-size: 1.15rem;
    line-height: 1.8;
    text-align: justify;
    font-weight: 400;
}

/* Highlights */
.project-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.highlight-tag {
    background: rgba(0, 102, 255, 0.15); /* More visible background */
    border: 1px solid rgba(0, 102, 255, 0.4); /* Stronger blue border */
    padding: 12px 18px;
    border-radius: 12px;
    color: #ffffff; 
    font-size: 0.95rem;
    font-weight: 600; /* Increased weight */
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.highlight-tag:hover {
    background: rgba(0, 102, 255, 0.1);
    border-color: rgba(0, 102, 255, 0.3);
    transform: translateX(5px);
}

.highlight-tag i {
    color: #00f2ff;
    font-size: 0.8rem;
}

/* Tech Tags */
.project-tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tech-tag {
    padding: 8px 16px;
    background: #0066ff; /* Solid tech blue for readability */
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff; /* Pure white text for max contrast */
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 800;
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.3);
}

/* Roadmap Optimized */
.project-modal-roadmap {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    padding-left: 20px;
}

.project-modal-roadmap::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    bottom: 10px;
    width: 2px;
    background: linear-gradient(to bottom, #00f2ff 0%, transparent 100%);
    opacity: 0.3;
}

.roadmap-item {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    padding: 20px 0;
    position: relative;
}

.roadmap-dot {
    position: absolute;
    left: -24px;
    top: 28px;
    width: 10px;
    height: 10px;
    background: #00f2ff;
    border-radius: 50%;
    box-shadow: 0 0 10px #00f2ff;
}

.roadmap-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.roadmap-time {
    color: #00f2ff;
    font-weight: 900;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.roadmap-text {
    color: #e2e8f0; /* Brighter text for roadmap */
    font-size: 1rem;
    line-height: 1.5;
}

.project-modal-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    margin-top: auto;
}

.modal-brand-tag {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
}

.tiny-logo {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    opacity: 0.6;
}

/* Modal Scrollbar */
.project-modal-details::-webkit-scrollbar {
    width: 6px;
}

.project-modal-details::-webkit-scrollbar-track {
    background: transparent;
}

.project-modal-details::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.project-modal-details::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Responsive */
@media (max-width: 1200px) {
    .project-modal-container { width: 98%; height: 90vh; }
    .project-modal-showcase { padding: 40px; }
    .project-modal-details { padding: 40px; }
    .project-modal-title { font-size: 2.5rem; }
}

@media (max-width: 992px) {
    .project-modal-content { flex-direction: column; }
    .project-modal-container { height: 95vh; overflow-y: auto; }
    .project-modal-showcase { flex: none; min-height: 400px; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.05); }
    .project-modal-details { flex: none; padding: 30px; }
    .macbook-frame { max-width: 600px; }
}

@media (max-width: 576px) {
    .project-modal-title { font-size: 2rem; }
    .project-highlights { grid-template-columns: 1fr; }
    .project-modal-container { border-radius: 20px; }
    .project-modal-close { top: 20px; right: 20px; }
}
    gap: 12px;
    font-weight: 800;
    box-shadow: 0 10px 25px rgba(0, 102, 255, 0.3);
}

.modal-secondary-btn {
    flex: 1;
    padding: 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 16px;
    font-weight: 700;
}

.modal-brand-tag {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.85rem;
}

.tiny-logo { width: 30px; border-radius: 50%; }

/* Responsive Modal */
@media (max-width: 1200px) {
    .project-modal-content { flex-direction: column; }
    .project-modal-container { height: 95vh; overflow-y: auto; }
    .project-modal-showcase { padding: 40px; flex: none; }
    .project-modal-details { padding: 40px; flex: none; }
    .macbook-frame { max-width: 600px; }
}

@media (max-width: 768px) {
    .project-modal-title { font-size: 2rem; }
    .footer-btns { flex-direction: column; }
    .macbook-base { display: none; }
    .macbook-screen { border-radius: 12px; }
}


/* ========================================
   Mentors Section - Flip Card Layout
   ======================================== */
.mentors-section-new {
    padding: 120px 0;
    background: #050c1b;
}

.mentors-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.mentor-card-new {
    height: 480px;
    perspective: 1500px;
}

.mentor-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
    cursor: pointer;
}

.mentor-card-new:hover .mentor-inner {
    transform: rotateY(180deg);
}

.mentor-front, .mentor-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.mentor-front {
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
}

.mentor-img-wrap {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.mentor-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.mentor-overlay-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--gradient-primary);
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
}

.mentor-brief {
    padding: 25px;
    background: rgba(10, 25, 47, 0.9);
}

.mentor-name-new {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 5px;
}

.mentor-title-new {
    color: var(--color-primary);
    font-size: 0.9rem;
    font-weight: 600;
}

.mentor-back {
    background: #0a192f;
    transform: rotateY(180deg);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.back-name {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 20px;
}

.back-bio {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.mentor-expertise {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.mentor-expertise span {
    padding: 6px 15px;
    background: rgba(0, 102, 255, 0.1);
    border: 1px solid rgba(0, 102, 255, 0.2);
    color: #00f2ff;
    border-radius: 50px;
    font-size: 0.8rem;
}

/* ========================================
   Training Mode - Step Layout
   ======================================== */
.training-section-new {
    padding: 120px 0;
    background: #0a192f;
}

.training-grid-new {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.training-step-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.training-step-card:hover {
    background: rgba(255, 255, 255, 0.07);
    transform: translateY(-10px);
    border-color: rgba(0, 102, 255, 0.3);
}

.step-num {
    font-family: 'Outfit', sans-serif;
    font-size: 5rem;
    font-weight: 900;
    color: rgba(0, 102, 255, 0.05);
    position: absolute;
    top: -10px;
    right: 10px;
    line-height: 1;
}

.step-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 10px 20px rgba(0, 102, 255, 0.2);
}

.training-step-card h3 {
    color: white;
    font-size: 1.35rem;
    margin-bottom: 20px;
}

.training-step-card p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
    line-height: 1.7;
}

@media (max-width: 1200px) {
    .mentors-grid-new { grid-template-columns: repeat(2, 1fr); }
    .training-grid-new { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .mentors-grid-new { grid-template-columns: 1fr; }
    .training-grid-new { grid-template-columns: 1fr; }
    .mentor-card-new { height: 400px; }
}







/* ========================================
   Works Showcase Premium UI
   ======================================== */
.works-showcase-section {
    padding: 100px 0;
    background: #f8faff;
}

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

.module-card-premium {
    background: #ffffff;
    border-radius: 30px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 15px 45px rgba(0, 50, 150, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
    cursor: pointer;
}

.module-card-premium:hover {
    transform: translateY(-15px);
    box-shadow: 0 40px 100px rgba(0, 50, 150, 0.12);
}

.card-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    z-index: 10;
}

.module-image-container {
    height: 220px;
    position: relative;
    overflow: hidden;
}

.module-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.module-card-premium:hover .module-image-container img {
    transform: scale(1.1);
}

.module-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: #1a202c;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.module-body-premium {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.module-meta-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.module-id { color: #a0aec0; }
.module-count { color: #0066ff; }

.module-title-premium {
    font-size: 1.5rem;
    font-weight: 900;
    color: #050c1a;
    margin-bottom: 15px;
    font-family: 'Outfit', sans-serif;
}

.module-desc-premium {
    font-size: 0.95rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 25px;
}

.module-footer-premium {
    margin-top: auto;
}

.module-btn-premium {
    background: transparent;
    border: none;
    padding: 0;
    color: #0066ff;
    font-weight: 800;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    cursor: pointer;
}

.module-btn-premium i {
    transition: transform 0.3s;
}

.module-card-premium:hover .module-btn-premium {
    color: #0052cc;
}

.module-card-premium:hover .module-btn-premium i {
    transform: translateX(8px);
}

/* ========================================
   Footer Premium UI
   ======================================== */
.footer-premium {
    background: #050c1a;
    color: white;
    padding: 120px 0 60px; /* Increased height */
    position: relative;
    overflow: hidden;
}

.footer-top-premium {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 80px;
    margin-bottom: 50px;
}

.brand-logo-wrap {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.footer-logo-img {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    object-fit: cover;
}

.brand-name {
    font-size: 1.6rem;
    font-weight: 900;
    margin: 0;
    font-family: 'Outfit', sans-serif;
}

.brand-subtitle {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
}

.footer-about-text {
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.footer-social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.social-link:hover {
    background: var(--gradient-primary);
    transform: translateY(-5px);
    color: white;
}

.footer-list-title {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 35px;
    position: relative;
    padding-bottom: 10px;
}

.footer-list-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gradient-primary);
}

.footer-links-list {
    list-style: none;
    padding: 0;
}

.footer-links-list li {
    margin-bottom: 15px;
}

.footer-links-list a {
    color: rgba(255, 255, 255, 0.4);
    transition: all 0.3s;
}

.footer-links-list a:hover {
    color: #00f2ff;
    padding-left: 8px;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: rgba(255, 255, 255, 0.4);
}

.contact-item i {
    color: #0066ff;
    font-size: 1.1rem;
}

.footer-bottom-premium {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.85rem;
}

.footer-policy-links a {
    margin-left: 30px;
    color: rgba(255, 255, 255, 0.3);
    transition: color 0.3s;
}

.footer-policy-links a:hover {
    color: white;
}

@media (max-width: 992px) {
    .footer-bottom-premium {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    .footer-policy-links a {
        margin: 0 15px;
    }
}


/* 视频全屏播放器动画 */
@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}

/* 工作室成员 Section - Premium Design Optimized */
.members-section {
    position: relative;
    padding: 120px 0; /* Increased padding */
    background: #050c1a;
    overflow: hidden;
}

.members-bg-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.glow-sphere {
    position: absolute;
    top: 10%;
    right: -15%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.15) 0%, transparent 70%);
    filter: blur(100px);
    animation: pulseGlow 8s infinite alternate;
}

.glow-sphere-2 {
    position: absolute;
    bottom: -5%;
    left: -15%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(0, 242, 255, 0.1) 0%, transparent 70%);
    filter: blur(100px);
    animation: pulseGlow 10s infinite alternate-reverse;
}

@keyframes pulseGlow {
    from { transform: scale(1); opacity: 0.4; }
    to { transform: scale(1.15); opacity: 0.7; }
}

.members-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px; /* Increased gap */
    position: relative;
    z-index: 1;
}

.member-card-new {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 32px; /* Smoother corners */
    padding: 30px;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    backdrop-filter: blur(20px);
    overflow: hidden;
}

.member-card-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(0, 242, 255, 0.05), transparent 60%);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.member-card-new:hover {
    transform: translateY(-20px) scale(1.02);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 242, 255, 0.3);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6), 0 0 40px rgba(0, 102, 255, 0.15);
}

.member-card-new:hover::before {
    opacity: 1;
}

.member-index-tech {
    position: absolute;
    top: 25px;
    right: 30px;
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
    z-index: 0;
    transition: all 0.6s ease;
}

.member-card-new:hover .member-index-tech {
    color: rgba(0, 242, 255, 0.1);
    transform: translateY(-5px);
}

.member-image-box {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1.1;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 30px;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.member-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.member-card-new:hover .member-img {
    transform: scale(1.1) rotate(2deg);
}

.member-overlay-tech {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(5, 12, 26, 0.9) 0%, transparent 60%);
    opacity: 0;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding-bottom: 25px;
}

.member-card-new:hover .member-overlay-tech {
    opacity: 1;
}

.member-socials {
    display: flex;
    gap: 15px;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.member-card-new:hover .member-socials {
    transform: translateY(0);
}

.member-socials a {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.member-socials a:hover {
    background: var(--secondary-color);
    color: var(--dark-color);
    transform: scale(1.15) rotate(10deg);
}

.member-info-new {
    text-align: left;
    position: relative;
    z-index: 1;
}

.member-role {
    color: var(--secondary-color);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

.member-name-new {
    color: white;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.member-bio {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 25px;
    height: 3.4em; /* Fixed height for alignment */
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.member-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.member-tags span {
    font-size: 0.75rem;
    padding: 6px 14px;
    background: rgba(0, 242, 255, 0.05);
    color: rgba(0, 242, 255, 0.8);
    border: 1px solid rgba(0, 242, 255, 0.15);
    border-radius: 6px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.member-card-new:hover .member-tags span {
    background: rgba(0, 242, 255, 0.1);
    border-color: rgba(0, 242, 255, 0.3);
    color: white;
}

@media (max-width: 1200px) {
    .members-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .members-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .section-title-new {
        font-size: 2.8rem;
    }
}

@media (max-width: 576px) {
    .members-grid {
        grid-template-columns: 1fr;
    }
    .section-title-new {
        font-size: 2.2rem;
    }
}

/* Optimized Members Section Styles */
.members-hero-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.members-group-photo-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(0, 102, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 40px;
    aspect-ratio: 16 / 9; /* Enforce 16:9 */
}

.members-group-photo {
    width: 100%;
    height: 100%; /* Fill the container */
    object-fit: cover; /* Maintain aspect ratio without stretching */
    display: block;
    transition: transform 1s ease;
}

/* =======================================
   工作室成员 Section - Minimalist Premium Redesign
   ======================================= */
.members-hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 56px;
}

.members-hero-showcase {
    flex: 0 0 58%;
    max-width: 680px;
    perspective: 2000px;
}

.members-content-panel {
    flex: 0 0 38%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
}

.premium-photo-frame {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.5), 0 0 50px rgba(0, 102, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    transform: rotateX(5deg);
}

.members-hero-showcase:hover .premium-photo-frame {
    transform: rotateX(0deg) scale(1.02);
    box-shadow: 0 60px 120px rgba(0, 0, 0, 0.7), 0 0 60px rgba(0, 242, 255, 0.2);
    border-color: rgba(0, 242, 255, 0.4);
}

.members-group-photo-optimized {
    width: 100%;
    display: block;
    aspect-ratio: 16/9;
    object-fit: cover;
    transition: filter 0.6s ease, transform 1s ease;
}

.photo-glass-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(5, 12, 26, 0.4), transparent 40%);
    pointer-events: none;
}

/* 科技感扫描线效果 */
.tech-scan-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
    opacity: 0;
    z-index: 5;
}

.members-hero-showcase:hover .tech-scan-line {
    animation: scanAnimation 3s linear infinite;
    opacity: 0.5;
}

/* Metadata Style Intro */
.members-intro-meta {
    text-align: left;
    max-width: 420px;
    margin-top: 0;
}

.meta-main {
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    letter-spacing: 2px;
    margin-bottom: 12px;
    background: linear-gradient(90deg, #00f2ff, #0066ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.meta-sub {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.8;
    font-weight: 400;
}

@keyframes scanAnimation {
    0% { top: 0; }
    100% { top: 100%; }
}

/* Premium Glass Button */
.members-action-area {
    text-align: left;
}

.members-btn-glass {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 20px 65px;
    background: var(--gradient-primary); /* Solid blue gradient */
    border: none;
    border-radius: 100px;
    color: white !important;
    text-decoration: none !important;
    font-size: 1.15rem;
    font-weight: 800;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 20px 40px rgba(0, 102, 255, 0.4), 0 0 20px rgba(0, 242, 255, 0.2);
    letter-spacing: 1px;
}

.btn-text {
    position: relative;
    z-index: 2;
}

.btn-glow-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2); /* White glow on blue background */
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: width 0.7s ease, height 0.7s ease, opacity 0.7s ease;
    z-index: 1;
}

.members-btn-glass:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 30px 60px rgba(0, 102, 255, 0.5), 0 0 40px rgba(0, 242, 255, 0.4);
    filter: brightness(1.1); /* Brighter on hover */
}

.members-btn-glass:hover .btn-glow-circle {
    width: 400px;
    height: 400px;
    opacity: 1;
}

.members-btn-glass i {
    position: relative;
    z-index: 2;
    transition: transform 0.4s ease;
    font-size: 0.9rem;
}

.members-btn-glass:hover i {
    transform: translateX(5px);
}

@media (max-width: 1200px) {
    .members-hero-container {
        gap: 38px;
    }

    .members-hero-showcase {
        flex-basis: 56%;
    }

    .members-content-panel {
        flex-basis: 40%;
        gap: 24px;
    }

    .meta-main {
        font-size: 1.25rem;
    }

    .meta-sub {
        font-size: 1rem;
        line-height: 1.7;
    }
}

@media (max-width: 992px) {
    .members-hero-container {
        flex-direction: column;
        align-items: center;
        gap: 34px;
    }

    .members-hero-showcase {
        flex-basis: auto;
        width: 100%;
        max-width: 900px;
    }

    .members-content-panel {
        flex-basis: auto;
        width: 100%;
        align-items: center;
        text-align: center;
    }

    .members-intro-meta {
        text-align: center;
        max-width: 760px;
    }

    .members-action-area {
        text-align: center;
    }
}


@media (max-width: 768px) {
    .members-content-panel {
        gap: 22px;
    }

    .members-btn-glass {
        padding: 16px 34px;
        font-size: 1rem;
        gap: 10px;
    }

    .photo-caption {
        bottom: 20px;
        left: 20px;
    }
    .caption-title {
        font-size: 1.5rem;
    }
    .members-explore-btn {
        padding: 15px 35px;
        font-size: 1rem;
    }
}



/* Works Modal Video Styles */
.modal-video-wrapper { position: relative; width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: #000; border-radius: 16px; overflow: hidden; box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4); }
#modalMainVideo { max-width: 100%; max-height: 100%; width: auto; height: auto; }
.video-play-hint { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); background: rgba(0, 102, 255, 0.8); backdrop-filter: blur(10px); color: white; padding: 12px 24px; border-radius: 50px; font-size: 0.9rem; font-weight: 700; cursor: pointer; display: flex; align-items: center; gap: 10px; transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); z-index: 10; border: 1px solid rgba(255, 255, 255, 0.2); letter-spacing: 1px; }
.video-play-hint:hover { background: #00f2ff; color: #050c1b; transform: translateX(-50%) translateY(-5px) scale(1.05); box-shadow: 0 10px 25px rgba(0, 242, 255, 0.4); }
.video-play-hint i { font-size: 1rem; }
.video-fullscreen-overlay { animation: none !important; }

/* Video Thumbnail Overlay */
.video-thumb-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.4); display: flex; align-items: center; justify-content: center; color: white; font-size: 1.2rem; z-index: 2; transition: all 0.3s; }
.thumb-item:hover .video-thumb-overlay { background: rgba(0, 102, 255, 0.6); }
.thumb-item.active .video-thumb-overlay { background: rgba(0, 102, 255, 0.8); }

.modal-work-embed-wrapper {
    width: 100%;
    height: 100%;
    min-height: 420px;
    border-radius: 14px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.modal-work-embed {
    width: 100%;
    height: 100%;
    min-height: 420px;
    border: 0;
    background: #ffffff;
}

.modal-inline-note {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    border-radius: 14px;
    background: rgba(0, 102, 255, 0.06);
    border: 1px solid rgba(0, 102, 255, 0.12);
    color: #0f172a;
    font-size: 0.95rem;
    font-weight: 600;
}

.modal-inline-note i {
    color: #0066ff;
    flex: 0 0 auto;
}

/* Works inline expansion */

/* ޸ĺĵ岼 */
.works-modal-body.grid-layout {
    display: flex;
    flex-direction: column;
    height: 100%;
    max-height: min(92vh, 980px);
    overflow-y: auto;
    padding: 10px 0;
}

.works-modal-body.grid-layout::-webkit-scrollbar {
    width: 8px;
}
.works-modal-body.grid-layout::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 4px;
}
.works-modal-body.grid-layout::-webkit-scrollbar-thumb {
    background: rgba(0, 102, 255, 0.3);
    border-radius: 4px;
}
.works-modal-body.grid-layout::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 102, 255, 0.5);
}

.modal-header-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.1);
}

.modal-header-info {
    flex: 1;
    padding-right: 30px;
}

.modal-works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
    padding-bottom: 20px;
}

.work-grid-item {
    background: rgba(255, 255, 255, 0.6);
    border-radius: 16px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.work-grid-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 102, 255, 0.12);
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(0, 102, 255, 0.2);
}

.work-grid-media {
    width: 100%;
    aspect-ratio: 16/9;
    background: #000;
    position: relative;
    overflow: hidden;
}

.work-grid-media img, .work-grid-media video, .work-grid-media iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.work-grid-item:hover .work-grid-media img {
    transform: scale(1.05);
}

.work-grid-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.work-grid-desc {
    font-size: 0.9rem;
    color: rgba(15, 23, 42, 0.8);
    line-height: 1.6;
    margin-bottom: 15px;
    flex: 1;
}

.work-grid-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.work-grid-feature {
    font-size: 0.75rem;
    color: #0066FF;
    background: rgba(0, 102, 255, 0.08);
    padding: 4px 10px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.work-grid-item:hover .work-grid-feature {
    background: rgba(0, 102, 255, 0.15);
}

.work-grid-action {
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid rgba(15, 23, 42, 0.05);
}

.modal-view-work-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 10px 0;
    background: linear-gradient(135deg, #0066FF 0%, #0052CC 100%);
    color: white !important;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.2);
}

.modal-view-work-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 102, 255, 0.35);
}

.video-play-hint {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    cursor: pointer;
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 10;
    border: 1px solid rgba(255,255,255,0.2);
}

.video-play-hint:hover {
    background: #0066FF;
    transform: scale(1.05);
}

