/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a1a2e;
    --secondary-color: #f5f5f5;
    --accent-color: #e94560;
    --text-primary: #1a1a1a;
    --text-secondary: #666666;
    --bg-dark: #ffffff;
    --bg-card: #f8f8f8;
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Lab Logos (Left) */
.lab-logos-left {
    position: absolute;
    top: 1.5rem;
    left: 3rem;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.lab-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.lab-logo img {
    height: 50px;
    width: auto;
    border-radius: 4px;
}

.lab-logo:hover {
    opacity: 0.8;
}

/* Navigation (Right) */
.nav-right {
    position: absolute;
    top: 1.5rem;
    right: 4rem;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-right a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition-smooth);
    position: relative;
}

.nav-right a:hover {
    color: var(--accent-color);
}

.nav-right a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: var(--transition-smooth);
}

.nav-right a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 2rem 80px;
    background: var(--bg-dark);
}

.hero-content {
    max-width: 1400px;
    width: 100%;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-video {
    width: 100%;
}

.hero-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.main-title {
    font-size: clamp(1.25rem, 2vw, 1.75rem);
    font-weight: 600;
    line-height: 1.4;
    margin-top: 0;
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
    color: #1a1a2e;
    text-align: left;
}

@keyframes gradientFlow {
    0% {
        background-position: 0% center;
    }
    50% {
        background-position: 100% center;
    }
    100% {
        background-position: 0% center;
    }
}

.video-container {
    margin: 0;
    width: 100%;
}

.video-container video {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    object-fit: cover;
}

.video-placeholder {
    aspect-ratio: 16 / 9;
    background: var(--bg-card);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.video-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(233, 69, 96, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.play-button {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 0 30px rgba(233, 69, 96, 0.3);
}

.play-button svg {
    width: 28px;
    height: 28px;
    color: white;
    margin-left: 3px;
}

.play-button:hover {
    transform: scale(1.1);
    box-shadow: 0 0 50px rgba(233, 69, 96, 0.5);
}

.video-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    letter-spacing: 1px;
}

.paper-intro {
    margin-bottom: 1.5rem;
}

.intro-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
    text-align: left;
}

.hero-links {
    margin-top: 1rem;
}

/* Map Section */
.map-section {
    padding: 60px 2rem;
    background: var(--bg-card);
    position: relative;
}

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

.section-subtitle {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-top: 0.5rem;
}

.map-container {
    max-width: 1400px;
    margin: 2rem auto 0;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.baidu-map {
    flex: 1;
    height: 700px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.map-legend {
    width: 220px;
    height: 700px;
    background: var(--bg-dark);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.map-legend h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 0.6rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.legend-color {
    width: 15px;
    height: 15px;
    border-radius: 4px;
    flex-shrink: 0;
}

/* Legend Cities */
.legend-cities {
    margin-top: 1.2rem;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.legend-cities h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
}

.cities-list {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.city-btn {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.5rem 0.7rem;
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-family: inherit;
}

.city-btn:hover {
    background: rgba(233, 69, 96, 0.08);
    border-color: rgba(233, 69, 96, 0.3);
    color: var(--accent-color);
    transform: translateX(4px);
}

.city-btn.active {
    background: linear-gradient(135deg, rgba(233, 69, 96, 0.15) 0%, rgba(255, 107, 107, 0.15) 100%);
    border-color: #e94560;
    color: #e94560;
}

.city-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e94560 0%, #ff6b6b 100%);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.city-btn.active .city-dot {
    box-shadow: 0 0 8px rgba(233, 69, 96, 0.8);
    transform: scale(1.2);
}

.city-name-legend {
    font-weight: 500;
}

/* Custom Map Markers */
.custom-marker {
    position: relative;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.custom-marker.marker-active {
    transform: scale(1.2);
}

.custom-marker.marker-selected .marker-dot {
    animation: pulse-dot 1s ease-out infinite;
}

.marker-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    background: rgba(233, 69, 96, 0.4);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 2s ease-out infinite;
}

.marker-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 16px;
    background: linear-gradient(135deg, #e94560 0%, #ff6b6b 100%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 2px 8px rgba(233, 69, 96, 0.5);
    border: 2px solid #fff;
    transition: all 0.3s ease;
}

.custom-marker.marker-active .marker-dot {
    width: 20px;
    height: 20px;
    box-shadow: 0 4px 16px rgba(233, 69, 96, 0.7);
}

.marker-label {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(26, 26, 46, 0.9);
    color: #fff;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 500;
    white-space: nowrap;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.custom-marker.marker-active .marker-label,
.custom-marker.marker-selected .marker-label {
    background: linear-gradient(135deg, #e94560 0%, #ff6b6b 100%);
    transform: translateX(-50%) translateY(-2px);
}

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

@keyframes pulse-dot {
    0%, 100% {
        box-shadow: 0 2px 8px rgba(233, 69, 96, 0.5);
    }
    50% {
        box-shadow: 0 4px 20px rgba(233, 69, 96, 0.8), 0 0 0 8px rgba(233, 69, 96, 0.2);
    }
}

/* Custom Info Window */
.info-window-custom {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 12px;
    overflow: hidden;
    min-width: 240px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.1);
    animation: infoWindowFadeIn 0.3s ease;
}

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

.info-header {
    background: linear-gradient(135deg, #e94560 0%, #ff6b6b 100%);
    padding: 12px 16px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    position: relative;
}

.info-header .city-name {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
}

.info-header .city-name-en {
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
}

.info-close {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 20px;
    height: 20px;
    border: none;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border-radius: 50%;
    cursor: pointer;
    font-size: 14px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

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

.info-body {
    padding: 16px;
}

.indicator-item {
    margin-bottom: 12px;
}

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

.indicator-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.indicator-name {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
}

.indicator-value {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
}

.indicator-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    border-radius: 3px;
    transition: width 0.5s ease;
    animation: barGrow 0.8s ease-out;
}

@keyframes barGrow {
    from {
        width: 0 !important;
    }
}

/* Figures Section */
.figures-section {
    padding: 80px 2rem;
    background: var(--bg-dark);
    position: relative;
}

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

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

.section-header h2 {
    font-size: 2rem;
    font-weight: 600;
    background: linear-gradient(135deg, #1a1a1a 0%, #4a4a4a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Carousel */
.carousel-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    padding: 0 50px;
}

.carousel-wrapper {
    overflow: hidden;
    border-radius: 16px;
}

.carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
    min-width: 100%;
    padding: 0 5px;
}

.figure-card {
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.figure-card:hover {
    border-color: rgba(233, 69, 96, 0.3);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.figure-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #ffffff;
}

.figure-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.6s ease;
}

.figure-card:hover .figure-image img {
    transform: scale(1.02);
}

.figure-caption {
    padding: 1.5rem 2rem;
    text-align: left;
}

.figure-caption h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    line-height: 1.4;
}

.figure-caption p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* Carousel Controls */
.carousel-btn {
    position: absolute;
    top: 35%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid rgba(0, 0, 0, 0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    z-index: 10;
}

.carousel-btn svg {
    width: 20px;
    height: 20px;
    color: var(--text-primary);
}

.carousel-btn:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

/* Carousel Indicators */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 1.5rem;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.indicator.active {
    background: var(--accent-color);
    transform: scale(1.2);
}

.indicator:hover {
    background: rgba(0, 0, 0, 0.4);
}

/* Team Section */
.team-section {
    padding: 80px 2rem;
    background: var(--bg-card);
    position: relative;
}

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

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
    padding: 0 1rem;
}

.team-member {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: rgba(233, 69, 96, 0.2);
}

.member-link {
    display: block;
    text-decoration: none;
}

.member-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    overflow: hidden;
    background: linear-gradient(135deg, #e94560 0%, #4a90d9 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 600;
}

.member-info {
    position: relative;
}

.member-name {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 0.25rem;
}

.member-affiliation {
    font-size: 0.8rem;
    color: #666;
}

.member-email {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: rgba(233, 69, 96, 0.1);
    border-radius: 50%;
    margin-top: 0.5rem;
    color: #e94560;
    transition: all 0.3s ease;
}

.member-email:hover {
    background: #e94560;
    color: #fff;
}

.member-email svg {
    width: 14px;
    height: 14px;
}

.team-links {
    max-width: 800px;
    margin: 0 auto;
}

/* Authors and Affiliations */
.authors-list {
    margin-bottom: 2rem;
}

.authors {
    font-size: 0.9rem;
    color: var(--text-primary);
    line-height: 2;
    text-align: center;
}

.authors strong {
    font-weight: 500;
}

.authors a {
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.authors a:hover strong {
    color: var(--accent-color);
}

.email-icon {
    display: inline-flex;
    align-items: flex-start;
    margin-left: 4px;
    vertical-align: super;
    color: var(--text-secondary);
    transition: var(--transition-smooth);
}

.email-icon svg {
    width: 14px;
    height: 14px;
}

.email-icon:hover {
    color: var(--accent-color);
}

/* Team Links */
.team-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.link-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: var(--bg-card);
    border-radius: 12px;
    text-decoration: none;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
    text-align: left;
}

.link-card:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.link-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(233, 69, 96, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.link-icon svg {
    width: 20px;
    height: 20px;
    color: var(--accent-color);
}

.link-text {
    flex: 1;
    min-width: 0;
}

.link-text h3 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.2rem;
    line-height: 1.3;
}

.link-text p {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.link-arrow {
    font-size: 1.25rem;
    color: var(--text-secondary);
    transition: var(--transition-smooth);
    flex-shrink: 0;
}

.link-card:hover .link-arrow {
    color: var(--accent-color);
    transform: translateX(4px);
}

/* Publication Section */
.publication-section {
    padding: 80px 2rem;
    background: var(--bg-dark);
}

.publication-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.publication-card {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem;
    background: var(--bg-card);
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: var(--transition-smooth);
}

.publication-card:hover {
    border-color: rgba(233, 69, 96, 0.3);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.pub-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(233, 69, 96, 0.1), rgba(255, 107, 107, 0.1));
    border-radius: 10px;
    color: var(--accent-color);
}

.pub-icon svg {
    width: 20px;
    height: 20px;
}

.pub-info {
    flex: 1;
    min-width: 0;
}

.pub-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

.pub-authors {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 0.4rem;
}

.pub-journal {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--accent-color);
    font-style: italic;
}

.pub-link {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: var(--text-secondary);
    background: rgba(0, 0, 0, 0.03);
    transition: var(--transition-smooth);
    text-decoration: none;
}

.pub-link:hover {
    color: var(--accent-color);
    background: rgba(233, 69, 96, 0.08);
}

.pub-link svg {
    width: 18px;
    height: 18px;
}

/* Footer */
.footer {
    padding: 1.5rem 2rem;
    background: var(--bg-dark);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer p {
    color: var(--text-secondary);
    font-size: 0.8rem;
}

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

.hero-content > * {
    animation: fadeInUp 0.8s ease forwards;
}

.hero-content > *:nth-child(2) {
    animation-delay: 0.2s;
}

.hero-content > *:nth-child(3) {
    animation-delay: 0.4s;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        padding: 0.75rem 1rem;
    }
    
    .nav-container {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .logo-text {
        font-size: 0.75rem;
        text-align: center;
    }
    
    .nav-links {
        gap: 1.5rem;
    }
    
    .nav-links a {
        font-size: 0.8rem;
    }
    
    .hero-section {
        padding: 140px 1rem 60px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .main-title {
        font-size: 1.25rem;
        text-align: center;
    }
    
    .intro-text {
        font-size: 0.9rem;
        text-align: center;
    }

    .paper-intro {
        text-align: center;
    }

    .hero-links {
        display: flex;
        justify-content: center;
    }

    .carousel-container {
        padding: 0 30px;
    }
    
    .carousel-btn {
        width: 36px;
        height: 36px;
    }
    
    .carousel-btn svg {
        width: 18px;
        height: 18px;
    }
    
    .figure-caption {
        padding: 1rem 1.25rem;
    }
    
    .figure-caption h3 {
        font-size: 0.9rem;
    }
    
    .figure-caption p {
        font-size: 0.85rem;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }

    .authors {
        font-size: 0.85rem;
    }

    .team-links {
        max-width: 100%;
    }
    
    .link-card {
        padding: 0.875rem 1rem;
    }
    
    .figures-section,
    .team-section {
        padding: 60px 1rem;
    }

    .map-container {
        flex-direction: column;
    }

    .baidu-map {
        height: 400px;
    }

    .map-legend {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .carousel-container {
        padding: 0 15px;
    }
    
    .prev-btn {
        left: -5px;
    }
    
    .next-btn {
        right: -5px;
    }
    
    .link-text h3 {
        font-size: 0.85rem;
    }
}
