/* ============================================
   周春妍 · 治愈蓝调作品集
   主样式表 - 全面响应式 + 高级动效
   ============================================ */

/* ========== CSS 自定义属性 ========== */
:root {
    /* 治愈蓝色系调色板 */
    --blue-50: #f0f7fd;
    --blue-100: #e3f0fa;
    --blue-200: #c5dff5;
    --blue-300: #9dc8eb;
    --blue-400: #6baad9;
    --blue-500: #4b8ec4;
    --blue-600: #3571a3;
    --blue-700: #2c5a84;
    --blue-800: #1f4463;
    
    /* 珊瑚暖色点缀 */
    --coral-50: #fef5f0;
    --coral-100: #fde8db;
    --coral-200: #fbd1c0;
    --coral-400: #f2a07e;
    --coral-500: #e88a64;
    --coral-600: #d47550;
    
    /* 中性色 */
    --white: #ffffff;
    --white-alpha: rgba(255, 255, 255, 0.7);
    --gray-50: #fafbfc;
    --gray-100: #f5f7fa;
    
    /* 阴影系统 */
    --shadow-xs: 0 1px 3px rgba(44, 90, 132, 0.06);
    --shadow-sm: 0 2px 8px rgba(44, 90, 132, 0.08);
    --shadow-md: 0 8px 24px rgba(44, 90, 132, 0.12);
    --shadow-lg: 0 16px 48px rgba(44, 90, 132, 0.16);
    --shadow-xl: 0 24px 64px rgba(44, 90, 132, 0.2);
    
    /* 圆角系统 */
    --radius-xs: 8px;
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 28px;
    --radius-xl: 36px;
    --radius-full: 9999px;
    
    /* 字体 */
    --font-primary: 'Inter', 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Inter', 'Noto Sans SC', sans-serif;
    
    /* 过渡 */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========== 全局重置 ========== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-primary);
    background: linear-gradient(170deg, #e3f0f9 0%, #f0f7fd 25%, #f8fbfe 50%, #fdfcfb 100%);
    background-attachment: fixed;
    color: var(--blue-700);
    line-height: 1.8;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

::-webkit-scrollbar-track {
    background: #d4e9f5;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: #7fb4d0;
    border-radius: 10px;
    transition: background var(--transition-fast);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--blue-500);
}

/* ========== 容器 ========== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ========== 导航栏 ========== */
/* ========== 导航栏 ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(235, 248, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(127, 180, 208, 0.35);
    box-shadow: var(--shadow-xs);
    transition: all var(--transition-base);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0.9rem 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.6rem;
}

/* 品牌标识 - 默认隐藏（仅手机端显示） */
.nav-brand {
    display: none;
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #1f5a7e, #4a9fcf);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* 汉堡菜单按钮 - 默认隐藏（仅手机端显示） */
.hamburger {
    display: none;
}

/* 导航菜单 - 电脑端水平排列 */
.nav-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.nav-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--blue-600);
    text-decoration: none;
    padding: 0.4rem 0.7rem;
    border-radius: var(--radius-full);
    border-bottom: 2px solid transparent;
    transition: all var(--transition-fast);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    white-space: nowrap;
    position: relative;
}

.nav-link i {
    font-size: 0.8rem;
    transition: transform var(--transition-fast);
}

.nav-link:hover {
    color: var(--coral-400);
    background: rgba(242, 160, 126, 0.08);
}

.nav-link:hover i {
    transform: translateY(-2px);
}

.nav-link.active {
    color: var(--coral-400);
    background: rgba(242, 160, 126, 0.12);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background: var(--coral-400);
    border-radius: 2px;
}

.contact-nav {
    background: var(--coral-50);
    color: var(--coral-500);
}

.contact-nav:hover {
    background: var(--coral-100) !important;
    color: var(--coral-600) !important;
}

/* ========== Hero 区域 ========== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 1.5rem 4rem;
    position: relative;
}

.hero-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    width: 100%;
}

.hero-left {
    flex: 1.2;
    min-width: 280px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(157, 200, 225, 0.35);
    backdrop-filter: blur(8px);
    padding: 0.35rem 1.2rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--blue-600);
    margin-bottom: 1.5rem;
    border: 1px solid rgba(127, 180, 208, 0.3);
    animation: fadeInUp 0.8s ease-out;
}

.hero-badge i {
    color: #f0c040;
    font-size: 0.7rem;
}

.hero-name {
    margin-bottom: 0.5rem;
    animation: fadeInUp 0.8s ease-out 0.1s both;
}

.name-cn {
    display: block;
    font-family: var(--font-display);
    font-size: 3.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #1f5a7e 0%, #4a9fcf 50%, #6baad9 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    letter-spacing: 0.02em;
    animation: gradientShift 4s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.name-en {
    display: block;
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--blue-400);
    letter-spacing: 3px;
    margin-top: 0.2rem;
}

.hero-title {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--blue-500);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin: 1.5rem 0;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.title-line {
    display: inline-block;
    width: 40px;
    height: 3px;
    background: var(--coral-400);
    border-radius: 2px;
    flex-shrink: 0;
}

.hero-desc {
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(12px);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(127, 180, 208, 0.25);
    box-shadow: var(--shadow-sm);
    max-width: 540px;
    animation: fadeInUp 0.8s ease-out 0.3s both;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.hero-desc:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.hero-desc p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--blue-600);
    line-height: 1.7;
}

.hero-desc p:last-child {
    margin-bottom: 0;
}

.hero-desc i {
    color: var(--coral-400);
    margin-right: 0.4rem;
    font-size: 0.75rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.social-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue-500);
    font-size: 1.2rem;
    text-decoration: none;
    transition: all var(--transition-base);
    border: 1px solid rgba(127, 180, 208, 0.25);
}

.social-icon:hover {
    background: var(--coral-400);
    color: var(--white);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(242, 160, 126, 0.35);
    border-color: var(--coral-400);
}

/* 右侧照片框 */
.hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
    min-width: 250px;
    animation: fadeInRight 1s ease-out 0.3s both;
}

.rect-frame {
    width: 100%;
    max-width: 340px;
    aspect-ratio: 4 / 5;
    background: #ebf5fa;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: transform var(--transition-slow), box-shadow var(--transition-slow);
    border: 2px solid rgba(255, 255, 255, 0.6);
    position: relative;
}

.rect-frame:hover {
    transform: scale(1.03) rotate(0.5deg);
    box-shadow: var(--shadow-xl);
}

.rect-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-slow);
}

.rect-frame:hover img {
    transform: scale(1.05);
}

.profile-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e3f0f9, #f8fbfe);
    color: var(--blue-300);
    font-size: 5rem;
    gap: 0.5rem;
}

.profile-fallback span {
    font-size: 0.9rem;
    color: var(--blue-400);
    font-weight: 500;
}

/* 向下滚动提示 */
.scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    color: var(--blue-400);
    font-size: 0.78rem;
    font-weight: 500;
    opacity: 0.6;
    animation: bounce 2.5s ease-in-out infinite;
    letter-spacing: 1px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-12px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ========== 动画关键帧 ========== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ========== 滚动入场动画 ========== */
.content-section {
    padding: 5rem 1.5rem;
    position: relative;
}

/* 区块标题动画 */
.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 3rem;
    background: linear-gradient(120deg, #2c6e8f, #7fb4d0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

.section-title.visible {
    opacity: 1;
    transform: translateY(0);
}

.title-icon {
    font-size: 1.6rem;
    -webkit-text-fill-color: var(--coral-400);
    color: var(--coral-400);
}

.title-underline {
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--coral-400), var(--blue-400));
    border-radius: 2px;
    margin: 0.5rem auto 0;
    transform: scaleX(0);
    transition: transform 0.6s ease-out 0.2s;
}

.section-title.visible .title-underline {
    transform: scaleX(1);
}

/* ========== 个人简介卡片 ========== */
.bio-card {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(16px);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    border: 1px solid rgba(127, 180, 208, 0.3);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    opacity: 0;
    transform: translateY(30px);
}

.bio-card.visible {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease-out;
}

.bio-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: rgba(242, 160, 126, 0.3);
}

.bio-highlight {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--blue-700);
    margin-bottom: 1.5rem;
    padding-bottom: 1.2rem;
    border-bottom: 2px dashed var(--blue-200);
}

.bio-card p {
    margin-bottom: 0.8rem;
    color: var(--blue-600);
    font-size: 0.95rem;
}

.tag-group {
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

/* ========== 卡片网格 ========== */
.grid-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

/* 独占一行的卡片 */
.card-full {
    grid-column: 1 / -1;
    max-width: 600px;
    margin: 0 auto;
}

/* ========== 作品卡片 ========== */
.card {
    background: rgba(255, 255, 250, 0.8);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
    border: 1px solid rgba(127, 180, 208, 0.35);
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    opacity: 0;
    transform: translateY(30px);
}

.card.visible {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.5s ease-out;
}

.card:hover {
    transform: translateY(-8px) !important;
    background: var(--white);
    border-color: var(--coral-400);
    box-shadow: var(--shadow-lg);
}

.card-img {
    width: 100%;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.card-platform-icon {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.85);
    transition: transform var(--transition-base);
}

.card:hover .card-platform-icon {
    transform: scale(1.15) rotate(-5deg);
}

.card-content {
    padding: 1.5rem;
}

.card-title {
    font-weight: 700;
    font-size: 1.2rem;
    color: #1e4a6e;
    margin-bottom: 0.3rem;
}

.card-desc {
    font-size: 0.88rem;
    color: #5a7d9e;
    margin-bottom: 0.5rem;
}

/* ========== 标签 ========== */
.tag {
    background: #fef0e0;
    color: #dc8a5c;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 0.25rem 0.9rem;
    border-radius: var(--radius-full);
    display: inline-block;
    margin-top: 0.6rem;
    letter-spacing: 0.3px;
    transition: all var(--transition-fast);
}

.card:hover .tag {
    background: var(--coral-400);
    color: var(--white);
}

/* ========== 设计&绘画网格 ========== */
.art-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.art-card {
    background: rgba(255, 255, 250, 0.85);
    backdrop-filter: blur(8px);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all var(--transition-slow);
    border: 1px solid #d9ecf5;
    cursor: default;
    box-shadow: var(--shadow-sm);
    opacity: 0;
    transform: translateY(30px);
}

.art-card.visible {
    opacity: 1;
    transform: translateY(0) rotate(0deg) !important;
    transition: all 0.5s ease-out;
}

.art-card:nth-child(odd) {
    transform: translateY(30px) rotate(0.5deg);
}

.art-card:nth-child(even) {
    transform: translateY(30px) rotate(-0.3deg);
}

.art-card:hover {
    transform: scale(1.03) !important;
    background: var(--white);
    border-color: var(--coral-400);
    box-shadow: var(--shadow-lg);
}

/* 设计/绘画图片容器 - 使用 contain 避免裁剪 */
.art-img {
    width: 100%;
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f0f5fa;
    border-bottom: 3px solid var(--coral-400);
    position: relative;
    overflow: hidden;
    padding: 1rem;
}

/* 设计/绘画图片 - 完整显示不裁剪 */
.art-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: transform var(--transition-base);
}

.art-card:hover .art-img img {
    transform: scale(1.05);
}

.art-icon {
    font-size: 3.5rem;
    color: rgba(255, 255, 255, 0.8);
    transition: transform var(--transition-base);
}

.art-card:hover .art-icon {
    transform: scale(1.2);
}

.art-info {
    padding: 1.3rem;
    text-align: center;
    font-weight: 600;
    color: #2c6e8f;
    font-size: 0.9rem;
}

/* ========== 联系区域 ========== */
.contact-card {
    background: rgba(235, 248, 255, 0.6);
    backdrop-filter: blur(16px);
    border-radius: var(--radius-xl);
    padding: 3rem 1.5rem;
    margin: 2rem 0 3rem;
    text-align: center;
    border: 1px solid rgba(127, 180, 208, 0.3);
    box-shadow: var(--shadow-md);
    opacity: 0;
    transform: translateY(30px);
}

.contact-card.visible {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease-out;
}

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

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all var(--transition-base);
    padding: 1rem;
    border-radius: var(--radius-md);
}

.contact-item:hover {
    transform: translateY(-6px);
}

.contact-item:active {
    transform: scale(0.95);
}

.contact-icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
    border: 2px solid rgba(127, 180, 208, 0.3);
    position: relative;
    overflow: hidden;
}

.contact-icon-circle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--coral-400);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
    z-index: 0;
}

.contact-item:hover .contact-icon-circle::before {
    width: 100%;
    height: 100%;
}

.contact-icon-circle i {
    font-size: 1.8rem;
    color: #4f7d97;
    transition: all var(--transition-base);
    position: relative;
    z-index: 1;
}

.contact-item:hover .contact-icon-circle i {
    color: var(--white);
    transform: scale(1.1);
}

.contact-item:hover .contact-icon-circle {
    border-color: var(--coral-400);
    box-shadow: 0 8px 24px rgba(242, 160, 126, 0.4);
}

.contact-item span {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--blue-600);
}

.contact-item small {
    font-size: 0.7rem;
    color: var(--blue-400);
    font-weight: 400;
}

.contact-tip {
    margin-top: 2.5rem;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(8px);
    padding: 0.9rem 2rem;
    border-radius: var(--radius-full);
    display: inline-block;
    font-size: 0.85rem;
    color: var(--blue-500);
    border: 1px solid rgba(127, 180, 208, 0.25);
}

/* ========== 模态弹窗 ========== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(110, 160, 190, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: all var(--transition-fast);
}

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

.modal-container {
    background: #fefef9;
    width: 90%;
    max-width: 1100px;
    max-height: 85vh;
    overflow-y: auto;
    border-radius: 48px;
    padding: 2rem;
    position: relative;
    box-shadow: var(--shadow-xl);
    animation: scaleIn 0.3s ease-out;
}

.qr-modal-container {
    max-width: 420px;
    text-align: center;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(127, 180, 208, 0.3);
}

.modal-header h3 {
    color: var(--blue-700);
    font-size: 1.3rem;
    font-weight: 700;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #7fb4d0;
    transition: all var(--transition-fast);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: var(--coral-400);
    background: rgba(242, 160, 126, 0.1);
    transform: rotate(90deg);
}

.modal-body {
    color: var(--blue-700);
}

/* ========== 弹窗内数据卡片 ========== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.data-card {
    background: #f3fbfe;
    border-radius: var(--radius-lg);
    padding: 1.2rem 1.5rem;
    border-left: 6px solid #7fb4d0;
    transition: all var(--transition-fast);
}

.data-card:hover {
    background: #e8f6fc;
    transform: translateX(4px);
    border-left-color: var(--coral-400);
}

.data-title {
    font-weight: 700;
    font-size: 1.1rem;
    color: #1f5a7e;
    margin-bottom: 0.5rem;
}

.video-meta {
    color: var(--blue-500);
    font-size: 0.9rem;
    margin: 0.5rem 0;
}

.link-btn {
    background: #7fb4d0;
    padding: 8px 24px;
    border-radius: var(--radius-full);
    color: white;
    text-decoration: none;
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all var(--transition-fast);
    margin-top: 0.3rem;
    white-space: nowrap;
}

.link-btn:hover {
    background: var(--coral-400);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(242, 160, 126, 0.35);
}

.link-btn:active {
    transform: scale(0.96);
}

/* ========== 视频链接列表（含预览封面） ========== */
.video-link-list {
    list-style: none;
    padding: 0;
}

.video-link-item {
    background: #f3fbfe;
    margin: 0.8rem 0;
    padding: 1rem;
    border-radius: var(--radius-md);
    border-left: 5px solid var(--blue-400);
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.video-link-item:hover {
    background: #e8f6fc;
    transform: translateX(4px);
    border-left-color: var(--coral-400);
}

.video-link-info {
    flex: 1;
    min-width: 180px;
}

.video-link-info strong {
    color: #1f5a7e;
    display: block;
    margin-bottom: 0.2rem;
}

.video-link-info .link-desc {
    color: #7fb4d0;
    font-size: 0.85rem;
    margin-top: 0.2rem;
}

.video-link-preview {
    width: 160px;
    aspect-ratio: 16 / 9;     /* 使用宽高比，自动计算高度 */
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    background: #e3f0f9;
    border: 1px solid rgba(127, 180, 208, 0.3);
    transition: transform var(--transition-fast);
}

.video-link-item:hover .video-link-preview {
    transform: scale(1.05);
}

.video-link-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-link-preview-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue-300);
    font-size: 1.5rem;
    background: #e3f0f9;
}

.video-link-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
/* 视频播放卡片样式 - 调整视频高度 + 封面放大 */
.video-player-card {
    background: #F3FBFE;
    border-radius: 28px;
    margin-bottom: 1rem;
    padding: 0.8rem;
    border: 1px solid #CEE5F0;
    transition: all 0.3s ease;
}

.video-player-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    border-color: #F2A07E;
}

.video-player-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;  /* 改为 center，让视频和封面垂直居中对齐 */
}

.video-player-left {
    flex: 2;
    min-width: 240px;
}

/* ★★★ 关键修改：视频高度限制 ★★★ */
.local-video {
    width: 100%;
    max-height: 120px;        /* 限制最大高度为120px，让视频变矮 */
    border-radius: 20px;
    background: #1a1a2e;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.video-player-right {
    flex: 1;
    min-width: 140px;
    text-align: center;
}

/* ★★★ 关键修改：封面图放大 ★★★ */
.vertical-cover {
    width: 100%;
    max-width: 200px;         /* 从160px放大到200px */
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    background: #EBF5FA;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.vertical-cover img {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    display: block;
}

.video-info {
    margin-top: 0.8rem;
    text-align: center;
}

.video-info h4 {
    color: #1F5A7E;
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
}

.video-info p {
    color: #5A7D9E;
    font-size: 0.75rem;
}
/* 响应式：手机端上下排列 */
@media (max-width: 640px) {
    .video-player-wrapper {
        flex-direction: column;
    }
    
    .video-player-right {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .vertical-cover {
        max-width: 140px;
    }
}
/* ========== 运营数据展示图 ========== */
.platform-data-image {
    text-align: center;
    margin: 20px 0;
    background: #f8fbfe;
    border-radius: var(--radius-lg);
    padding: 1rem;
    border: 1px solid rgba(127, 180, 208, 0.2);
}

.platform-data-image img {
    max-width: 100%;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: transform var(--transition-base);
}

.platform-data-image:hover img {
    transform: scale(1.02);
}

.data-image-placeholder {
    background: #e3f0f9;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    color: var(--blue-400);
    border: 2px dashed var(--blue-300);
}

.data-image-placeholder i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.data-image-placeholder p {
    font-size: 0.85rem;
    margin-top: 0.3rem;
}

/* ========== 微信二维码区域 ========== */
.qr-code-area {
    width: 200px;
    height: 200px;
    margin: 1.5rem auto;
    background: #f0f5fa;
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px dashed var(--blue-300);
    gap: 0.3rem;
    overflow: hidden;
}

.qr-code-area img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.qr-placeholder-icon {
    font-size: 4rem;
    color: var(--blue-300);
}

.qr-code-area p {
    font-size: 0.75rem;
    color: var(--blue-400);
}

.wechat-info-text {
    margin-top: 1.5rem;
    padding: 1rem;
    background: #f3fbfe;
    border-radius: var(--radius-md);
}

.wechat-info-text p {
    margin-bottom: 0.3rem;
    font-size: 0.9rem;
}

/* ========== 页脚 ========== */
.site-footer {
    text-align: center;
    padding: 2rem;
    color: #5f8fac;
    font-size: 0.85rem;
    border-top: 1px solid rgba(127, 180, 208, 0.2);
}

/* ========== 通用工具类 ========== */
.text-center {
    text-align: center;
}
/* ========== 底部悬浮提示弹窗 ========== */
.toast-notification {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: rgba(44, 90, 132, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    color: white;
    padding: 0.9rem 2rem;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 500;
    z-index: 3000;
    box-shadow: 0 10px 30px rgba(44, 90, 132, 0.3);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    white-space: nowrap;
}

.toast-notification.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.toast-notification i {
    font-size: 1.1rem;
}

.toast-notification.success {
    background: rgba(46, 160, 130, 0.92);
}

.toast-notification.success i {
    color: #a0f0d0;
}

.toast-notification.error {
    background: rgba(220, 100, 80, 0.92);
}

/* ========== 摄影装备展示区 ========== */
.camera-gear-section {
    background: #f3fbfe;
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin: 2rem 0;
    border: 1px solid rgba(127, 180, 208, 0.3);
}

.gear-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1f5a7e;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.gear-title i {
    color: var(--coral-400);
}

.gear-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
}

.gear-image {
    flex: 0 0 260px;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: #e3f0f9;
    box-shadow: var(--shadow-sm);
}

.gear-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.gear-image-placeholder {
    width: 100%;
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e3f0f9, #f8fbfe);
    color: var(--blue-300);
    gap: 0.5rem;
}

.gear-image-placeholder i {
    font-size: 3rem;
}

.gear-image-placeholder p {
    font-size: 0.8rem;
    color: var(--blue-400);
}

.gear-details {
    flex: 1;
    min-width: 240px;
}

.gear-item {
    background: rgba(255, 255, 255, 0.7);
    border-radius: var(--radius-md);
    padding: 1.2rem 1.5rem;
    margin-bottom: 0.8rem;
    border-left: 4px solid var(--blue-400);
    transition: all var(--transition-fast);
}

.gear-item:hover {
    background: white;
    border-left-color: var(--coral-400);
    transform: translateX(4px);
}

.gear-item h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #1f5a7e;
    margin-bottom: 0.3rem;
}

.gear-item p {
    font-size: 0.85rem;
    color: #5a7d9e;
    margin: 0;
}

.gear-tag {
    display: inline-block;
    background: #fef0e0;
    color: #dc8a5c;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.2rem 0.7rem;
    border-radius: var(--radius-full);
    margin-top: 0.4rem;
}

/* 复制按钮样式 */
.copy-wechat-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--coral-400);
    color: white;
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
    margin-top: 0.8rem;
}

.copy-wechat-btn:hover {
    background: var(--coral-500);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(242, 160, 126, 0.4);
}

.copy-wechat-btn:active {
    transform: scale(0.96);
}


/* ================================================
   响应式设计 - 平板端 (768px - 1024px)
   ================================================ */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .hero-content {
        gap: 2.5rem;
    }
    
    .hero-left {
        flex: 1;
    }
    
    .name-cn {
        font-size: 3.2rem;
    }
    
    .hero-desc {
        max-width: 100%;
    }
    
    .rect-frame {
        max-width: 280px;
    }
    
    .grid-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);  /* 一行两块 */
    gap: 2rem;
}
    
    .art-grid {
        gap: 1.5rem;
    }
    
    .art-img {
        height: 220px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}



/* ================================================
   响应式设计 - 手机端 (最大768px)
   ================================================ */
@media (max-width: 768px) {
    html {
        scroll-padding-top: 60px;
    }

    .grid-cards {
        grid-template-columns: 1fr;  /* ✅ 正确：手机端单列 */
        gap: 1.2rem;
    }
    /* ★★★ 手机端导航栏 ★★★ */
    .nav-container {
        justify-content: space-between;
        padding: 0.6rem 1rem;
    }
    
    /* 显示品牌标识 */
    .nav-brand {
        display: block;
    }
    
    /* 显示汉堡按钮 */
    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.6);
        border: 1px solid rgba(127, 180, 208, 0.3);
        border-radius: 50%;
        cursor: pointer;
        z-index: 1001;
        transition: all var(--transition-fast);
        padding: 0;
        flex-shrink: 0;
    }

    .hamburger:hover {
        background: rgba(242, 160, 126, 0.15);
        border-color: var(--coral-400);
    }

    .hamburger-line {
        display: block;
        width: 18px;
        height: 2px;
        background: var(--blue-600);
        border-radius: 2px;
        transition: all 0.3s ease;
    }

    .hamburger.active .hamburger-line:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    .hamburger.active .hamburger-line:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active .hamburger-line:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    /* 导航菜单变成侧边栏 */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 320px;
        height: 100vh;
        background: rgba(245, 250, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        gap: 0.3rem;
        padding: 5rem 1.5rem 2rem;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 40px rgba(44, 90, 132, 0.15);
        z-index: 999;
        overflow-y: auto;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        width: 100%;
        font-size: 0.95rem;
        padding: 0.8rem 1rem;
        border-radius: var(--radius-md);
        border-bottom: none;
    }

    .nav-link i {
        font-size: 1rem;
        width: 28px;
        text-align: center;
    }

    .nav-link.active::after {
        display: none;
    }

    .nav-link.active {
        background: rgba(242, 160, 126, 0.15);
    }

    .contact-nav {
        margin-top: 1rem;
        background: var(--coral-100);
        justify-content: center;
    }

    /* 遮罩层 */
    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(44, 90, 132, 0.3);
        z-index: 998;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    /* Hero区域 */
    .hero-section {
        padding: 5rem 1rem 3rem;
        min-height: auto;
    }
    
    .hero-content {
        flex-direction: column-reverse;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-left {
        min-width: 100%;
    }
    
    .hero-right {
        min-width: 100%;
    }
    
    .rect-frame {
        max-width: 240px;
        margin: 0 auto;
    }
    
    .name-cn {
        font-size: 2.6rem;
    }
    
    .name-en {
        font-size: 1.1rem;
    }
    
    .hero-title {
        justify-content: center;
        font-size: 0.95rem;
    }
    
    .hero-desc {
        max-width: 100%;
        padding: 1.2rem;
    }
    
    .hero-desc p {
        font-size: 0.85rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .hero-badge {
        font-size: 0.75rem;
    }
    
    .scroll-hint {
        bottom: 1rem;
        font-size: 0.7rem;
    }
    
    /* 区块间距 */
    .content-section {
        padding: 3rem 1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .title-icon {
        font-size: 1.3rem;
    }
    
    /* 卡片网格 - 单列 */
    .grid-cards {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    
    .grid-cards .card:last-child:nth-child(odd) {
    max-width: 100%;
}
    .card-full {
        max-width: 100%;
    }
    
    .card-img {
        height: 150px;
    }
    
    .card-content {
        padding: 1.2rem;
    }
    
    .card-title {
        font-size: 1.1rem;
    }
    
    .card-desc {
        font-size: 0.82rem;
    }
    
    .card-platform-icon {
        font-size: 3rem;
    }
    
    /* 设计/绘画网格 - 单列 */
    .art-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    
    .art-img {
        height: 200px;
    }
    
    .art-card:nth-child(odd),
    .art-card:nth-child(even) {
        transform: none;
    }
    
    /* 个人简介 */
    .bio-card {
        padding: 1.5rem;
    }
    
    .bio-highlight {
        font-size: 1rem;
    }
    
    .bio-card p {
        font-size: 0.88rem;
    }
    
    /* 联系区域 */
    .contact-card {
        padding: 2rem 1rem;
    }
    
    .contact-icons {
        gap: 1rem;
    }
    
    .contact-icon-circle {
        width: 65px;
        height: 65px;
    }
    
    .contact-icon-circle i {
        font-size: 1.5rem;
    }
    
    .contact-item span {
        font-size: 0.72rem;
    }
    
    .contact-item small {
        font-size: 0.65rem;
    }
    
    .contact-tip {
        font-size: 0.78rem;
        padding: 0.7rem 1.5rem;
    }
    
    /* 弹窗 */
    .modal-container {
        padding: 1.5rem;
        border-radius: 32px;
        max-width: 95%;
        max-height: 90vh;
    }
    
    .modal-header h3 {
        font-size: 1.1rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .data-card {
        padding: 1rem;
    }
    
    .data-title {
        font-size: 1rem;
    }
    
    /* 视频链接项 */
    .video-link-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 0.8rem;
    }
    
    .video-link-preview {
    width: 160px;
    aspect-ratio: 16 / 9;  
    border-radius: 12px;
    }
    
    .video-link-actions {
        width: 100%;
    }
    
    .link-btn {
        width: 100%;
        text-align: center;
    }
    

    /* 二维码弹窗 */
    .qr-modal-container {
        max-width: 90%;
    }
    
    .qr-code-area {
        width: 160px;
        height: 160px;
    }
    
    /* Toast */
 
    
    /* 页脚 */
    .site-footer {
        padding: 1.5rem;
        font-size: 0.78rem;
    }
        /* 摄影装备 */
    .gear-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .gear-image {
        flex: 0 0 auto;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    /* Toast */
    .toast-notification {
        bottom: 20px;
        font-size: 0.82rem;
        padding: 0.7rem 1.5rem;
    }
}


/* ================================================
   响应式设计 - 小手机端 (最大480px)
   ================================================ */
@media (max-width: 480px) {
    html {
        scroll-padding-top: 55px;
    }
    
    .nav-container {
        padding: 0.5rem 0.8rem;
    }
    
    .nav-brand {
        font-size: 1.1rem;
    }
    
    .hamburger {
        width: 36px;
        height: 36px;
    }
    
    .nav-menu {
        width: 85%;
        padding: 4.5rem 1.2rem 1.5rem;
    }
    
    .nav-link {
        font-size: 0.9rem;
        padding: 0.7rem 0.8rem;
    }

    .name-cn {
        font-size: 2.2rem;
    }
    
    .name-en {
        font-size: 0.95rem;
        letter-spacing: 2px;
    }
    
    .hero-title {
        font-size: 0.85rem;
        gap: 0.5rem;
    }
    
    .title-line {
        width: 30px;
    }
    
    .hero-desc {
        padding: 1rem;
    }
    
    .hero-desc p {
        font-size: 0.8rem;
    }
    
    .rect-frame {
        max-width: 200px;
    }
    
    .card-img {
        height: 130px;
    }
    
    .card-content {
        padding: 1rem;
    }
    
    .card-title {
        font-size: 1rem;
    }
    
    .art-img {
        height: 180px;
    }
    
    .section-title {
        font-size: 1.3rem;
    }
    
    .bio-card {
        padding: 1.2rem;
    }
    
    .contact-icon-circle {
        width: 55px;
        height: 55px;
    }
    
    .contact-icon-circle i {
        font-size: 1.3rem;
    }
    
    .contact-item {
        padding: 0.5rem;
    }
    
    .tag {
        font-size: 0.68rem;
        padding: 0.2rem 0.7rem;
    }
    
    .modal-container {
        padding: 1rem;
        border-radius: 24px;
    }
}

/* ========== 图片灯箱（点击放大）========== */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    background: none;
    border: none;
    z-index: 3001;
}

.lightbox-hint {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.7);
    font-size: 0.8rem;
    background: rgba(0,0,0,0.5);
    padding: 6px 12px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.data-image-clickable {
    cursor: pointer;
    transition: transform 0.2s ease;
}

.data-image-clickable:hover {
    transform: scale(1.02);
}

.data-image-clickable:active {
    transform: scale(0.98);
}

/* ========== 手机端剪辑作品优化 ========== */
@media (max-width: 768px) {
    /* 剪辑作品 - 视频链接卡片优化 */
    .video-link-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .video-link-info {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .video-link-info strong {
        font-size: 1rem;
    }
    
    .video-link-preview {
        width: 100%;
        aspect-ratio: 16 / 9;  /* 使用比例代替固定高度 */
        height: auto;
        margin: 0.5rem 0;
    }
    
    .video-link-actions {
        width: 100%;
    }
    
    .link-btn {
        width: 100%;
        text-align: center;
        padding: 10px 16px;
        font-size: 0.9rem;
    }
    
    /* 跳转链接模式卡片 */
    .video-link-item {
        background: #F3FBFE;
        border-radius: 20px;
        padding: 1rem;
        margin-bottom: 1rem;
        border: 1px solid #CEE5F0;
    }
    
    /* 非视频播放模式（漫剪、动画等）的卡片优化 */
    .grid-cards .card {
        margin-bottom: 1rem;
    }
    
    /* 弹窗内视频卡片优化 */
    .video-player-card {
        padding: 0.8rem;
    }
    
    .video-player-wrapper {
        flex-direction: column;
        gap: 1rem;
    }
    
    .video-player-left,
    .video-player-right {
        width: 100%;
        flex: none;
    }
    
    .video-player-right {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .vertical-cover {
        max-width: 120px;
    }
    
    .local-video {
        max-height: 200px;
    }
    
    /* 运营数据图片提示 */
    .data-image-clickable {
        font-size: 12px;
    }
    
    .data-image-clickable img {
        width: 100%;
        height: auto;
    }
}

/* 平板端优化 */
@media (min-width: 769px) and (max-width: 1024px) {
    .video-link-preview {
        width: 140px;
        height: 80px;
    }
    
    .vertical-cover {
        max-width: 130px;
    }
    
    .local-video {
        max-height: 140px;
    }
}