/* ==========================================================================
   个人网站样式表
   参考设计：现代简约风格，Apple式审美
   ========================================================================== */

/* ========== 字体导入 ========== */
/* 尔雅新 大黑 - 如果没有安装，使用备用粗黑字体 */
@font-face {
    font-family: 'Eya Xin DaHei';
    src: local('尔雅新 大黑 特粗'),
         local('Alibaba PuHuiTi Heavy'),
         local('PingFang SC Heavy'),
         local('Microsoft YaHei Bold');
    font-weight: 900;
    font-style: normal;
}

/* ========== 全局样式 ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* 主题颜色 */
    --primary-color: #6B7FFF;
    --secondary-color: #FFB84D;
    --accent-color: #FF7B9C;
    
    /* 背景颜色 - 黑夜模式 */
    --bg-light: #1A1B1E;
    --bg-dark: #0D0E11;
    --bg-white: #1F2024;
    
    /* 文字颜色 - 黑夜模式 */
    --text-dark: #E8EAED;
    --text-light: #A0A3A8;
    --text-white: #FFFFFF;
    
    /* 其他颜色 */
    --border-color: #2F3136;
    --shadow-light: rgba(0, 0, 0, 0.3);
    --shadow-medium: rgba(0, 0, 0, 0.5);
    --shadow-heavy: rgba(0, 0, 0, 0.7);
    
    /* 字体 */
    --font-primary: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
    
    /* 间距 */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 40px;
    --spacing-xl: 60px;
    --spacing-xxl: 80px;
    
    /* 过渡效果 */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* 全局背景装饰元素 - 动态渐变光晕 */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(107, 127, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 123, 156, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 184, 77, 0.02) 0%, transparent 50%);
    animation: gradientFloat 20s ease-in-out infinite;
}

/* 浮动装饰圆点 */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    background-image:
        radial-gradient(circle at 15% 20%, rgba(107, 127, 255, 0.1) 0%, transparent 2px),
        radial-gradient(circle at 85% 80%, rgba(255, 123, 156, 0.08) 0%, transparent 2px),
        radial-gradient(circle at 50% 90%, rgba(255, 184, 77, 0.08) 0%, transparent 2px),
        radial-gradient(circle at 90% 30%, rgba(107, 127, 255, 0.06) 0%, transparent 2px),
        radial-gradient(circle at 30% 70%, rgba(255, 123, 156, 0.06) 0%, transparent 2px);
    background-size: 2px 2px, 2px 2px, 2px 2px, 2px 2px, 2px 2px;
    background-repeat: no-repeat;
    animation: dotsFloat 15s ease-in-out infinite;
}

/* 渐变光晕漂浮动画 */
@keyframes gradientFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }
    25% {
        transform: translate(10px, -10px) scale(1.02);
        opacity: 0.8;
    }
    50% {
        transform: translate(-5px, 5px) scale(0.98);
        opacity: 1;
    }
    75% {
        transform: translate(5px, 10px) scale(1.01);
        opacity: 0.9;
    }
}

/* 圆点漂浮动画 */
@keyframes dotsFloat {
    0%, 100% {
        transform: translate(0, 0);
    }
    33% {
        transform: translate(5px, -8px);
    }
    66% {
        transform: translate(-8px, 5px);
    }
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

/* 确保所有内容在装饰元素之上 */
section {
    position: relative;
    z-index: 1;
}

/* ========== 浮动装饰图形 ========== */
.floating-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

/* 圆形装饰 */
.float-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(107, 127, 255, 0.08) 0%, transparent 70%);
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}

.float-1 {
    width: 150px;
    height: 150px;
    top: 15%;
    left: 10%;
    animation: floatUpDown 8s;
}

.float-2 {
    width: 100px;
    height: 100px;
    top: 60%;
    right: 15%;
    background: radial-gradient(circle, rgba(255, 123, 156, 0.06) 0%, transparent 70%);
    animation: floatSideways 10s;
}

.float-3 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 20%;
    background: radial-gradient(circle, rgba(255, 184, 77, 0.05) 0%, transparent 70%);
    animation: floatRotate 12s;
}

/* 方形装饰 */
.float-square {
    position: absolute;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(107, 127, 255, 0.04) 0%, transparent 100%);
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}

.float-4 {
    width: 60px;
    height: 60px;
    top: 40%;
    right: 25%;
    animation: floatDiagonal 9s;
}

.float-5 {
    width: 40px;
    height: 40px;
    top: 75%;
    right: 10%;
    background: linear-gradient(135deg, rgba(255, 123, 156, 0.04) 0%, transparent 100%);
    animation: floatUpDown 7s 2s;
}

/* 线条装饰 */
.float-line {
    position: absolute;
    width: 2px;
    height: 100px;
    background: linear-gradient(to bottom, transparent, rgba(107, 127, 255, 0.15), transparent);
    top: 30%;
    left: 50%;
    animation: floatLine 6s;
}

/* 浮动动画 - 上下漂浮 */
@keyframes floatUpDown {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-30px);
    }
}

/* 浮动动画 - 左右漂浮 */
@keyframes floatSideways {
    0%, 100% {
        transform: translateX(0px);
    }
    50% {
        transform: translateX(25px);
    }
}

/* 浮动动画 - 旋转漂浮 */
@keyframes floatRotate {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* 浮动动画 - 对角线漂浮 */
@keyframes floatDiagonal {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(-20px, 20px);
    }
}

/* 浮动动画 - 线条漂浮 */
@keyframes floatLine {
    0%, 100% {
        transform: translateY(0px) scaleY(1);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-15px) scaleY(1.2);
        opacity: 0.6;
    }
}

/* ========== 顶部导航栏 ========== */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 60px);
    max-width: 1300px;
    z-index: 1000;
    padding: 10px 0;
}

/* 导航栏背景层 */
.navbar::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    transform: translate(-50%, -50%) scale(0);
    background: rgba(50, 52, 58, 0.85);
    backdrop-filter: blur(20px);
    border-radius: 50px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6), 
                0 0 0 1px rgba(255, 255, 255, 0.12);
    transition: transform 0.15s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: -1;
}

/* 滚动后的灵动岛样式 - 背景快速从中心展开 */
.navbar.scrolled::before {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translate(0, 0) scale(1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    position: relative;
    z-index: 1;
}

/* Logo区域 */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.logo-icon {
    transition: transform var(--transition-normal);
}

.logo-icon:hover {
    transform: rotate(180deg);
}

.logo-text {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
}

/* 导航菜单 */
.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-lg);
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 15px;
    font-weight: 500;
    position: relative;
    transition: color var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width var(--transition-normal);
}

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

/* 右侧功能区 */
.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.search-btn {
    background: none;
    border: none;
    color: var(--text-dark);
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: var(--transition-fast);
}

.search-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* 汉堡菜单（移动端） */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    transition: var(--transition-normal);
}

/* ========== Hero 首屏区 ========== */
.hero {
    min-height: 100vh;
    background: var(--bg-light);
    padding: 120px 0 0;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

/* 左侧内容 */
.hero-content {
    animation: fadeInUp 0.8s ease;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    color: var(--text-dark);
}

/* 打字文本容器 */
.hero-title .typing-text {
    color: var(--text-dark);
    display: inline-block;
    min-height: 1.2em;
    position: relative;
    vertical-align: baseline;
}

/* 光标效果 */
.hero-title .typing-text::after {
    content: '|';
    color: var(--primary-color);
    animation: blink 0.8s infinite;
    display: inline-block;
    vertical-align: baseline;
    line-height: 1;
    font-size: inherit;
    font-weight: 300;
}

/* 光标闪烁 */
@keyframes blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}

/* 英文副标题 - 静态显示 */
.hero-title .subtitle-text {
    color: var(--primary-color);
    display: inline-block;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: var(--spacing-lg);
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-sm);
}

/* 按钮样式 */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-normal);
    border: none;
    font-family: var(--font-primary);
}

.btn-primary {
    background: var(--primary-color);
    color: var(--text-white);
}

.btn-primary:hover {
    background: #4A5DD8;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(91, 110, 245, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid rgba(232, 234, 237, 0.3);
}

.btn-secondary:hover {
    background: var(--text-dark);
    color: var(--bg-dark);
    border-color: var(--text-dark);
    transform: translateY(-2px);
}

.btn-secondary:hover svg {
    fill: var(--bg-dark);
}

/* 右侧图片区 */
.hero-image {
    position: relative;
    height: 100%;
    animation: fadeIn 1s ease;
    display: flex;
    align-items: flex-start;
}

.hero-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.shape {
    position: absolute;
    z-index: 1;
}

.shape-square {
    width: 180px;
    height: 180px;
    background: var(--secondary-color);
    top: -20px;
    right: -20px;
    animation: float 6s ease-in-out infinite;
}

.shape-circle-large {
    width: 280px;
    height: 280px;
    background: var(--accent-color);
    border-radius: 50%;
    bottom: 50px;
    left: -50px;
    animation: float 5s ease-in-out infinite;
    animation-delay: 1s;
}

.shape-circle-small {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    bottom: 80px;
    right: 100px;
    animation: float 4s ease-in-out infinite;
    animation-delay: 0.5s;
}

.shape-triangle {
    width: 0;
    height: 0;
    border-left: 80px solid transparent;
    border-right: 80px solid transparent;
    border-bottom: 140px solid var(--primary-color);
    bottom: 200px;
    right: -10px;
    animation: float 7s ease-in-out infinite;
    animation-delay: 1.5s;
}

.shape-rect {
    width: 150px;
    height: 100px;
    background: var(--primary-color);
    top: 150px;
    left: -30px;
    animation: float 5.5s ease-in-out infinite;
    animation-delay: 0.8s;
}

.hero-photo {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.hero-photo img {
    width: 600px;
    height: calc(100vh - 120px);
    min-height: 600px;
    object-fit: cover;
    object-position: top left;
    border-radius: 20px;
}

/* 轮播指示器 - 隐藏 */
.hero-dots {
    display: none;
}

/* ========== 作品展示区 ========== */
.gallery {
    padding: var(--spacing-xl) 0;
    background: var(--bg-white);
    display: flex;
    flex-direction: column;
}

.gallery .container {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
    position: relative;
}

.section-title {
    font-size: 56px;
    font-weight: 900;
    margin-bottom: var(--spacing-sm);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
    letter-spacing: -2px;
    font-family: 'Eya Xin DaHei', 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', sans-serif;
}

.section-title.light {
    background: linear-gradient(135deg, #FFFFFF 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: var(--spacing-sm);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-family: 'Georgia', serif;
    font-style: italic;
    opacity: 0.5;
    position: relative;
}

/* 英文副标题装饰 */
.section-subtitle::before,
.section-subtitle::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background: currentColor;
    opacity: 0.3;
}

.section-subtitle::before {
    right: calc(100% + 15px);
}

.section-subtitle::after {
    left: calc(100% + 15px);
}

.section-subtitle.light {
    color: rgba(255, 255, 255, 0.6);
}

.section-desc {
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-light);
    font-size: 16px;
}

.section-desc.light {
    color: rgba(255, 255, 255, 0.8);
}

/* 作品网格 - 横向滚动展示 */
.gallery-grid {
    overflow: visible;
    position: relative;
    margin-bottom: var(--spacing-lg);
    padding: var(--spacing-md) 0;
}

/* 遮罩容器 - 限制可见区域 */
.gallery-grid {
    -webkit-mask-image: linear-gradient(to right, 
        transparent 0%, 
        black 150px, 
        black calc(100% - 150px), 
        transparent 100%
    );
    mask-image: linear-gradient(to right, 
        transparent 0%, 
        black 150px, 
        black calc(100% - 150px), 
        transparent 100%
    );
    overflow: hidden;
}

/* 图片轨道容器 */
.gallery-track {
    display: flex;
    gap: var(--spacing-md);
    animation: scrollLeft 30s linear infinite;
    width: fit-content;
}

/* 悬停时暂停动画 */
.gallery-grid:hover .gallery-track {
    animation-play-state: paused;
}

/* 从右向左滚动动画 */
@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.gallery-image-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    width: 450px;
    height: 600px;
    flex-shrink: 0;
    cursor: pointer;
    transition: var(--transition-normal);
}

.gallery-image-item:hover {
    transform: translateY(-8px) scale(1.05);
}

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

.gallery-image-item:hover img {
    transform: scale(1.1);
}

/* 轮播控制 - 隐藏（纯图片展示不需要） */
.carousel-controls {
    display: none;
}

.carousel-indicator {
    display: none;
}

/* 查看更多按钮区域 */
.gallery-more {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.btn-view-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    font-size: 22px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(107, 127, 255, 0.3);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    padding-left: 48px;
    padding-right: 48px;
}

.btn-view-more .btn-text {
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transform: translateX(12px);
}

.btn-view-more svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    transform: translateX(12px);
}

.btn-view-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(107, 127, 255, 0.4);
}

/* ========== 社交媒体平台区 ========== */
.platforms {
    padding: var(--spacing-xl) 0;
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

/* 流体渐变背景 */
.fluid-gradient-bg {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle at 20% 50%, 
        rgba(107, 127, 255, 0.08) 0%, 
        transparent 25%
    ),
    radial-gradient(
        circle at 80% 50%, 
        rgba(255, 123, 156, 0.06) 0%, 
        transparent 25%
    ),
    radial-gradient(
        circle at 50% 80%, 
        rgba(255, 184, 77, 0.05) 0%, 
        transparent 25%
    ),
    radial-gradient(
        circle at 30% 20%, 
        rgba(107, 127, 255, 0.04) 0%, 
        transparent 30%
    );
    filter: blur(60px);
    opacity: 0.8;
    animation: fluidMove 30s ease-in-out infinite;
    z-index: 0;
}

/* 流体渐变动画 */
@keyframes fluidMove {
    0%, 100% {
        transform: translate(0%, 0%) rotate(0deg) scale(1);
    }
    25% {
        transform: translate(-5%, 5%) rotate(90deg) scale(1.05);
    }
    50% {
        transform: translate(5%, -5%) rotate(180deg) scale(0.95);
    }
    75% {
        transform: translate(-3%, 3%) rotate(270deg) scale(1.02);
    }
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
    max-width: 900px;
    margin: 0 auto;
}

.platform-card {
    position: relative;
    background: 
        linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
        repeating-linear-gradient(
            45deg,
            rgba(255, 255, 255, 0.03) 0px,
            rgba(255, 255, 255, 0.03) 1px,
            transparent 1px,
            transparent 3px
        ),
        repeating-linear-gradient(
            -45deg,
            rgba(0, 0, 0, 0.05) 0px,
            rgba(0, 0, 0, 0.05) 1px,
            transparent 1px,
            transparent 3px
        ),
        linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, transparent 50%, rgba(0, 0, 0, 0.03) 100%);
    border-radius: 24px;
    overflow: visible;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    backdrop-filter: blur(30px) saturate(200%);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        0 2px 8px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        inset 0 -1px 0 rgba(0, 0, 0, 0.3);
}

/* 渐变光效层 - 标题色彩点缀 */
.platform-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, 
            rgba(107, 127, 255, 0.12) 0%, 
            rgba(255, 123, 156, 0.08) 50%,
            rgba(255, 184, 77, 0.06) 100%
        ),
        radial-gradient(circle at top left, rgba(107, 127, 255, 0.15), transparent 50%),
        radial-gradient(circle at bottom right, rgba(255, 123, 156, 0.12), transparent 50%);
    opacity: 0.15;
    transition: opacity 0.4s ease;
    z-index: 0;
    mix-blend-mode: overlay;
}

/* 噪点纹理层 - 非悬停状态 */
.platform-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 15% 25%, rgba(107, 127, 255, 0.08) 0%, transparent 35%),
        radial-gradient(circle at 85% 75%, rgba(255, 123, 156, 0.08) 0%, transparent 35%),
        radial-gradient(circle at 50% 90%, rgba(255, 184, 77, 0.06) 0%, transparent 40%),
        radial-gradient(circle at 40% 10%, rgba(107, 127, 255, 0.05) 0%, transparent 30%),
        repeating-radial-gradient(
            circle at 50% 50%,
            transparent 0px,
            rgba(255, 255, 255, 0.02) 1px,
            transparent 2px
        );
    opacity: 1;
    z-index: 0;
    pointer-events: none;
    border-radius: 24px;
}

/* 卡片高光描边动画层 */
.platform-card:hover::before {
    opacity: 0.2;
}

.platform-card:hover {
    transform: translateY(-12px);
    border-color: rgba(107, 127, 255, 0.4);
    box-shadow: 
        0 20px 60px rgba(107, 127, 255, 0.25),
        0 0 80px rgba(107, 127, 255, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}

/* 边框高光条动画 - 添加独立高光层 */
.platform-card:hover::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        transparent 42%,
        rgba(107, 127, 255, 0.25) 46%,
        rgba(255, 255, 255, 0.45) 50%,
        rgba(107, 127, 255, 0.25) 54%,
        transparent 58%,
        transparent 100%
    );
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    animation: borderLightMove 6s linear infinite;
    z-index: -1;
    pointer-events: none;
}

@keyframes borderLightMove {
    0% {
        background: linear-gradient(
            90deg,
            transparent 0%,
            transparent 42%,
            rgba(107, 127, 255, 0.25) 46%,
            rgba(255, 255, 255, 0.45) 50%,
            rgba(107, 127, 255, 0.25) 54%,
            transparent 58%,
            transparent 100%
        );
        background-size: 400% 400%;
        background-position: 0% 50%;
    }
    100% {
        background: linear-gradient(
            90deg,
            transparent 0%,
            transparent 42%,
            rgba(107, 127, 255, 0.25) 46%,
            rgba(255, 255, 255, 0.45) 50%,
            rgba(107, 127, 255, 0.25) 54%,
            transparent 58%,
            transparent 100%
        );
        background-size: 400% 400%;
        background-position: 400% 50%;
    }
}

.platform-content {
    padding: var(--spacing-xl);
    position: relative;
    z-index: 1;
}

.platform-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: var(--spacing-md);
}

.platform-avatar {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3px;
    background: linear-gradient(135deg, #FFFFFF 0%, rgba(255, 255, 255, 0.8) 100%);
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.platform-avatar::before {
    content: '';
    position: absolute;
    inset: 3px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    z-index: 0;
}

.platform-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
    position: relative;
    z-index: 1;
}

.platform-card:hover .platform-avatar {
    transform: scale(1.1);
    background: linear-gradient(135deg, #FFFFFF 0%, rgba(255, 255, 255, 0.95) 100%);
    box-shadow: 
        0 8px 30px rgba(107, 127, 255, 0.5),
        0 0 40px rgba(107, 127, 255, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.platform-header-text {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 1;
}

.platform-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--text-white);
    background: linear-gradient(135deg, #FFFFFF 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.platform-tag {
    display: inline-block;
    padding: 8px 18px;
    background: linear-gradient(135deg, #FFFFFF 0%, var(--secondary-color) 100%);
    color: #1A1B1E;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(255, 184, 77, 0.3);
}

.platform-desc {
    color: rgba(255, 255, 255, 0.65);
    font-size: 15px;
    margin-bottom: var(--spacing-lg);
    line-height: 1.7;
}

/* 数据统计区域 */
.platform-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    padding: var(--spacing-md) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 32px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
    font-family: 'Arial', sans-serif;
}

.stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
}

.platform-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-white);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 14px 28px;
    background: var(--primary-color);
    border-radius: 12px;
    border: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(107, 127, 255, 0.4);
    z-index: 10;
}

/* 扫光效果 */
.platform-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.platform-link:hover::before {
    left: 100%;
}

.platform-link:hover {
    background: rgba(90, 111, 232, 1);
    transform: translateX(4px);
    box-shadow: 0 6px 20px rgba(107, 127, 255, 0.5);
}

.platform-link svg {
    transition: transform 0.3s ease;
}

.platform-link:hover svg {
    transform: translateX(4px);
}

/* ========== 日常照片区 ========== */
.photos {
    padding: var(--spacing-xl) 0;
    background: var(--bg-light);
}

.photos-carousel-wrapper {
    position: relative;
    overflow: hidden;
    padding: var(--spacing-md) 0;
}

.photos-carousel {
    display: flex;
    gap: var(--spacing-md);
    transition: transform var(--transition-normal);
}

.photo-card {
    flex: 0 0 350px;
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow-light);
    border: 2px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition-normal);
    opacity: 0.6;
    transform: scale(0.95);
}

.photo-card:hover {
    transform: translateY(-5px) scale(0.95);
    box-shadow: 0 8px 30px var(--shadow-medium);
}

/* 选中状态 */
.photo-card.active {
    opacity: 1;
    transform: scale(1);
    border-color: rgba(107, 127, 255, 0.4);
    box-shadow: 
        0 8px 32px rgba(107, 127, 255, 0.15),
        0 0 0 3px rgba(107, 127, 255, 0.05);
}

.photo-card.active:hover {
    transform: translateY(-5px) scale(1);
}

.photo-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.photo-info {
    padding: var(--spacing-md);
}

.photo-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-dark);
}

.photo-date {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: var(--spacing-sm);
}

.photo-desc {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
}

.photo-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition-fast);
    margin-top: 4px;
}

.photo-more:hover {
    gap: 10px;
}

/* 轮播控制容器 */
.photos-controls {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-lg);
}

/* 轮播控制按钮 */
.photos-prev,
.photos-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.photos-prev:hover,
.photos-next:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: scale(1.1);
}

/* 页码显示 */
.photos-pagination {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    user-select: none;
}

.current-page {
    color: var(--text-dark);
    font-weight: 600;
}

.pagination-divider {
    color: rgba(0, 0, 0, 0.3);
    font-weight: 400;
}

.total-pages {
    font-size: 18px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.3);
}

/* ========== 文章列表区 ========== */
.articles {
    padding: var(--spacing-xl) 0;
    background: var(--bg-dark);
    position: relative;
}

.articles-carousel {
    margin-bottom: var(--spacing-xl);
}

/* ========== 文章列表样式 ========== */
.articles-list {
    max-width: 800px;
    margin: 0 auto;
}

.article-list-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-lg) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.article-list-item:last-child {
    border-bottom: none;
}

.article-list-item:hover {
    background: rgba(255, 255, 255, 0.02);
    padding-left: var(--spacing-md);
    padding-right: var(--spacing-md);
    border-radius: 12px;
    margin: 0 calc(-1 * var(--spacing-md));
}

.article-info {
    flex: 1;
}

.article-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: var(--spacing-xs);
    line-height: 1.4;
    transition: color 0.3s ease;
}

.article-list-item:hover .article-title {
    color: var(--primary-color);
}

.article-meta {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
}

.article-views {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.05);
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.article-date {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.article-arrow {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.article-list-item:hover .article-arrow {
    color: var(--primary-color);
    background: rgba(107, 127, 255, 0.1);
    border-color: rgba(107, 127, 255, 0.3);
    transform: translateX(4px);
}

.articles-more {
    text-align: center;
    margin-top: var(--spacing-xl);
}

.articles-more .btn-view-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    font-size: 22px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(107, 127, 255, 0.3);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    padding-left: 48px;
    padding-right: 48px;
}

.articles-more .btn-view-more .btn-text {
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transform: translateX(12px);
}

.articles-more .btn-view-more svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    transform: translateX(12px);
}

.articles-more .btn-view-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(107, 127, 255, 0.4);
}


/* 移动端响应式设计 */
@media (max-width: 768px) {
    .articles-list {
        max-width: 100%;
        padding: 0 var(--spacing-md);
    }
    
    .article-list-item {
        padding: var(--spacing-md) 0;
    }
    
    .article-list-item:hover {
        padding-left: var(--spacing-sm);
        padding-right: var(--spacing-sm);
        margin: 0 calc(-1 * var(--spacing-sm));
    }
    
    .article-title {
        font-size: 16px;
    }
    
    .article-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-xs);
    }
    
    .article-views {
        font-size: 12px;
        padding: 2px 8px;
    }
    
    .article-date {
        font-size: 12px;
    }
    
    .article-arrow {
        width: 32px;
        height: 32px;
    }
}

/* ========== 关于我/简历区 ========== */
.about {
    padding: var(--spacing-xl) 0;
    background: var(--bg-light);
}

.about-wrapper {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: var(--spacing-xl);
}

/* 左侧个人信息 */
.about-info {
    background: var(--bg-white);
    padding: var(--spacing-lg);
    border-radius: 16px;
    box-shadow: 0 4px 20px var(--shadow-light);
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.about-avatar {
    width: 150px;
    height: 150px;
    margin: 0 auto var(--spacing-md);
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--primary-color);
}

.about-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-name {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.about-role {
    font-size: 16px;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

.about-bio {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
    text-align: left;
}

.about-contact {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-dark);
    font-size: 14px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-fast);
}

.contact-item:hover {
    background: var(--primary-color);
    color: var(--text-white);
    border-color: var(--primary-color);
}

/* 右侧简历内容 */
.about-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.resume-section {
    background: var(--bg-white);
    padding: var(--spacing-lg);
    border-radius: 16px;
    box-shadow: 0 4px 20px var(--shadow-light);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.resume-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: var(--text-dark);
    padding-bottom: var(--spacing-sm);
    border-bottom: 2px solid var(--primary-color);
}

.resume-item {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: var(--spacing-md);
    padding: var(--spacing-md) 0;
    border-bottom: 1px solid var(--border-color);
}

.resume-item:last-child {
    border-bottom: none;
}

.resume-date {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
}

.resume-details h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-dark);
}

.resume-details p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 8px;
}

.resume-desc {
    line-height: 1.6;
}

/* 技能网格 */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
}

.skill-item {
    padding: var(--spacing-md);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-fast);
}

.skill-item:hover {
    background: var(--primary-color);
    color: var(--text-white);
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.skill-icon {
    font-size: 32px;
    margin-bottom: var(--spacing-sm);
}

.skill-item h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.skill-item p {
    font-size: 14px;
    color: var(--text-light);
}

.skill-item:hover p {
    color: rgba(255, 255, 255, 0.9);
}

.resume-download {
    text-align: center;
    margin-top: var(--spacing-md);
}

/* ========== 页面底部 ========== */
.footer {
    padding: var(--spacing-xl) 0 var(--spacing-md);
    background: var(--bg-dark);
    text-align: center;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition-fast);
}

.social-link:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.footer-beian {
    margin-top: var(--spacing-sm);
}

.footer-beian a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 13px;
}

.footer-beian a:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* ========== 返回顶部按钮 ========== */
.back-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--text-white);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 10px var(--shadow-medium);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #4A5DD8;
    transform: translateY(-5px);
}

/* ========== 动画效果 ========== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* 滚动触发动画类 */
.fade-in-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

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

/* 平板设备 */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .hero-image {
        height: 400px;
    }
    
    .hero-photo img {
        width: 350px;
        height: 400px;
    }
    
    .gallery-page {
        grid-template-columns: 1fr;
    }
    
    .platforms-grid {
        grid-template-columns: 1fr;
    }
    
    .about-wrapper {
        grid-template-columns: 1fr;
    }
    
    .about-info {
        position: static;
    }
}

/* 移动设备 */
@media (max-width: 768px) {
    /* 移动端容器内边距调整 */
    .container {
        padding: 0 16px;
    }
    
    /* 移动端导航栏调整 */
    .navbar {
        width: calc(100% - 24px);
        top: 12px;
        padding: 8px 0;
    }
    
    .navbar::before {
        border-radius: 30px;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--bg-white);
        flex-direction: column;
        padding: var(--spacing-md);
        box-shadow: 0 4px 10px var(--shadow-light);
        border: 1px solid rgba(255, 255, 255, 0.08);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: var(--transition-normal);
        border-radius: 16px;
        margin: 0 20px;
    }
    
    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .hamburger {
        display: flex;
    }
    
    /* 作品图片 - 移动端调整尺寸 */
    .gallery-image-item {
        width: 225px;
        height: 300px;
    }
    
    /* 移动端遮罩调整 */
    .gallery-grid {
        -webkit-mask-image: linear-gradient(to right, 
            transparent 0%, 
            black 80px, 
            black calc(100% - 80px), 
            transparent 100%
        );
        mask-image: linear-gradient(to right, 
            transparent 0%, 
            black 80px, 
            black calc(100% - 80px), 
            transparent 100%
        );
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-image {
        height: 400px;
    }
    
    .hero-photo {
        justify-content: center;
    }
    
    .hero-photo img {
        width: 320px;
        height: 400px;
        object-position: top center;
    }
    
    .shape-square,
    .shape-circle-large,
    .shape-triangle,
    .shape-rect {
        transform: scale(0.6);
    }
    
    .section-title {
        font-size: 36px;
        letter-spacing: -1px;
    }
    
    .section-subtitle {
        font-size: 14px;
        letter-spacing: 3px;
    }
    
    /* 移动端隐藏副标题装饰线 */
    .section-subtitle::before,
    .section-subtitle::after {
        display: none;
    }
    
    .photo-card {
        flex: 0 0 280px;
    }
    
    
    .skills-grid {
        grid-template-columns: 1fr;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
    }
}

/* 小屏手机 */
@media (max-width: 480px) {
    .nav-container {
        padding: 0 var(--spacing-sm);
    }
    
    .container {
        padding: 0 var(--spacing-sm);
    }
    
    .hero {
        padding: 100px 0 40px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 32px;
        letter-spacing: -1px;
    }
    
    .section-subtitle {
        font-size: 13px;
        letter-spacing: 2px;
    }
    
    .photo-card {
        flex: 0 0 240px;
    }
}


