/* 主样式文件 */
/* CSS变量 */
:root {
    --primary: #ec4899;
    --secondary: #fdf2f8;
    --accent: #be185d;
    --text: #1f2937;
    --text-light: #6b7280;
    --bg: #ffffff;
    --bg-alt: #f8fafc;
    --border: #e5e7eb;
    --shadow: rgba(0, 0, 0, 0.1);
}

/* 基础样式 */
body {
    font-family: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 7rem; /* 为70px固定导航栏留出空间 */
    /* 移动端优化 */
    max-width: 100vw;
    position: relative;
    width: 100%;
    margin: 0;
    padding-left: 0;
    padding-right: 0;
    /* 防止闪屏 */
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

/* 页面加载完成后显示 */
body.loaded {
    opacity: 1;
}

/* 确保所有元素不会超出视口宽度 */
* {
    max-width: 100%;
    box-sizing: border-box;
}

/* 防止横向滚动 */
html, body {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100vw !important;
}

/* PC端英雄区域完全隐藏滚动条 */
@media (min-width: 769px) {
    .hero, .hero-content, .hero-image, .beauty-main {
        overflow: hidden !important;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE and Edge */
    }
    
    .hero::-webkit-scrollbar,
    .hero-content::-webkit-scrollbar,
    .hero-image::-webkit-scrollbar,
    .beauty-main::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Opera */
    }
}

/* 确保所有容器不会超出视口 */
.container, .hero-content, .section {
    max-width: 100vw;
    overflow-x: hidden;
}

/* 布局组件 */
.section {
    padding: 4rem 0; /* 减少section间距 */
    position: relative;
}

.section-title {
    font-size: 3.2rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 3rem; /* 减少标题下方间距 */
    color: var(--text);
}

.grid {
    display: grid;
    gap: 2.5rem; /* 减少网格间距 */
}

.card {
    background: var(--bg);
    border-radius: 1.6rem;
    padding: 2.5rem; /* 减少卡片内边距 */
    box-shadow: 0 4px 6px var(--shadow);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    position: relative;
    z-index: 10;
}

/* 选妃页面卡片特殊样式 */
.selection-page .card {
    border: 0.5px solid var(--border); /* 减少边框宽度 */
    padding: 2rem; /* 减少内边距 */
}

.selection-page .member-card {
    border: 0.5px solid var(--border); /* 减少边框宽度 */
    padding: 0; /* 移除内边距，让图片完全贴合 */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08); /* 更柔和的阴影 */
}

/* 视频弹窗样式 */
.video-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.video-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    background: #000;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.video-modal video {
    width: 100%;
    height: auto;
    max-height: 90vh;
    display: block;
    pointer-events: none; /* 防止右键菜单 */
    user-select: none; /* 防止选择 */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.video-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    color: white;
    font-size: 3rem;
    font-weight: bold;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
    user-select: none;
    -webkit-user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.video-modal-close:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
}

/* 移动端优化 */
@media (max-width: 768px) {
    .video-modal-close {
        top: -60px;
        width: 60px;
        height: 60px;
        font-size: 3.5rem;
        background: rgba(0, 0, 0, 0.8);
    }
    
    .video-modal-content {
        max-width: 95vw;
        max-height: 85vh;
    }
}

/* 视频缩略图样式 */
.video-thumbnail {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.video-thumbnail:hover {
    transform: scale(1.02);
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.video-thumbnail:hover img {
    transform: scale(1.05);
}

.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(236, 72, 153, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.video-thumbnail:hover .video-play-button {
    background: rgba(236, 72, 153, 1);
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 10px 30px rgba(236, 72, 153, 0.5);
}

.video-play-button::before {
    content: '';
    width: 0;
    height: 0;
    border-left: 20px solid white;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    margin-left: 4px;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px var(--shadow);
}

/* 按钮样式 */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 2.4rem;
    border-radius: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1.6rem;
    position: relative;
    overflow: hidden;
}

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

.btn-primary:hover {
    background: var(--accent);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--bg-alt);
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background: var(--border);
}

/* 英雄区域 - 重新设计 */
.hero {
    text-align: left;
    padding: 0;
    position: relative;
    overflow: hidden !important; /* 强制隐藏所有溢出 */
    min-height: 100vh; /* 改为100vh，确保占满整个视口高度 */
    display: flex;
    align-items: center; /* PC端垂直居中 */
    background: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 50%, #fdf2f8 100%);
    /* 确保在所有设备上都能正确显示 */
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    /* 完全防止出现滚动条 */
    overflow-x: hidden !important;
    overflow-y: hidden !important;
    /* 确保容器不会产生滚动条 */
    height: 100vh;
    max-height: 100vh;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center; /* PC端垂直居中 */
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 20;
    min-height: 100vh; /* 确保内容区域占满视口高度 */
    overflow: hidden !important; /* 强制隐藏所有溢出 */
    box-sizing: border-box;
    /* 确保在所有设备上都能正确显示 */
    max-width: 100vw;
    height: 100vh;
    max-height: 100vh;
}

.hero-text {
    padding-right: 2rem;
    align-self: center; /* PC端垂直居中 */
}

.hero-title {
    font-size: 5rem;
    font-weight: bold;
    margin-bottom: 2rem;
    color: var(--text);
    line-height: 1.2;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
    font-size: 2.2rem;
    color: var(--text-light);
    margin-bottom: 3rem; /* 减少副标题下方间距 */
    line-height: 1.6;
    max-width: 50rem;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: flex-end; /* 改为底部对齐 */
    position: relative;
    z-index: 30;
    height: 100vh; /* 占满整个视口高度 */
    /* 确保在所有设备上都能正确显示 */
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden !important; /* 强制隐藏所有溢出 */
}

.beauty-main {
    width: 55rem; /* 增大图片尺寸 */
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.15));
    border-radius: 2rem;
    position: relative;
    z-index: 40;
    /* 确保图片底部与视口底部对齐 */
    margin-bottom: 0;
    max-height: 90vh; /* 限制最大高度，确保不超出视口 */
    object-position: bottom; /* 图片底部对齐 */
    /* 添加鼠标悬停效果 */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    /* 确保在所有设备上都能正确显示 */
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden !important; /* 强制隐藏所有溢出 */
}

.beauty-main:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 35px 70px rgba(0, 0, 0, 0.25));
    z-index: 50;
    /* 防止悬停时出现滚动条 */
    overflow: hidden;
}

/* VIP页面图片特殊样式 */
.vip-page .beauty-main {
    width: 50rem; /* VIP页面图片缩小 */
    max-height: 80vh; /* 限制高度，图片缩小但容器占满屏幕 */
}

.vip-page .beauty-main:hover {
    transform: scale(1.08); /* VIP页面悬停效果更强 */
    filter: drop-shadow(0 40px 80px rgba(0, 0, 0, 0.3));
    /* 防止悬停时出现滚动条 */
    overflow: hidden;
}

/* 首页图片特殊样式 */
.home-page .beauty-main {
    width: 55rem; /* 首页图片尺寸 */
    max-height: 90vh;
}

.home-page .beauty-main:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 35px 70px rgba(0, 0, 0, 0.25));
    /* 防止悬停时出现滚动条 */
    overflow: hidden;
}

/* 背景装饰 - 与美女图片重叠 */
.bg-decor {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

.halo {
    position: absolute;
    top: 50%;
    right: 5%;
    width: 70vw; /* 增加光圈范围，自适应屏幕 */
    height: 70vw;
    background: radial-gradient(circle, rgba(254, 243, 199, 0.9) 0%, rgba(253, 230, 138, 0.7) 50%, rgba(254, 243, 199, 0.4) 100%);
    border-radius: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.circle {
    position: absolute;
    border-radius: 50%;
    z-index: 2;
}

.circle-1 {
    top: 15%;
    left: 10%;
    width: 12rem;
    height: 12rem;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    box-shadow: 0 10px 40px rgba(251, 191, 36, 0.4);
}

.circle-2 {
    top: 55%;
    left: 5%;
    width: 10rem;
    height: 10rem;
    background: linear-gradient(135deg, #fde68a, #fbbf24);
    box-shadow: 0 8px 32px rgba(253, 230, 138, 0.4);
}

.circle-3 {
    top: 35%;
    left: 20%;
    width: 8rem;
    height: 8rem;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    box-shadow: 0 6px 24px rgba(254, 243, 199, 0.4);
}

/* 新增：动态粒子 - 自适应定位 */
.particle {
    position: absolute;
    width: 0.6rem;
    height: 0.6rem;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 50%;
    opacity: 0.6;
    z-index: 3;
}

.particle-1 {
    top: 20%;
    left: 25%;
}

.particle-2 {
    top: 30%;
    left: 85%;
}

.particle-3 {
    top: 75%;
    left: 20%;
}

.particle-4 {
    top: 85%;
    left: 80%;
}

/* 新增：闪烁星星 - 自适应定位 */
.sparkle {
    position: absolute;
    width: 1rem;
    height: 1rem;
    background: linear-gradient(135deg, #ffffff, #fef3c7);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    opacity: 0.8;
    z-index: 4;
}

.sparkle-1 {
    top: 15%;
    left: 35%;
}

.sparkle-2 {
    top: 40%;
    left: 75%;
}

.sparkle-3 {
    top: 70%;
    left: 30%;
}

.sparkle-4 {
    top: 90%;
    left: 65%;
}

/* 特色卡片 */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 固定3列布局 */
    gap: 3rem; /* 减少特色卡片间距 */
    margin-bottom: 4rem; /* 减少特色区域下方间距 */
    }
    
    .feature-card {
    text-align: center;
    padding: 3rem; /* 减少特色卡片内边距 */
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-icon {
    width: 10rem;
    height: 10rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2.5rem; /* 减少图标下方间距 */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon.pink {
    background: linear-gradient(135deg, #fce7f3, #fbcfe8);
}

.feature-icon.blue {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
}

.feature-icon.green {
    background: linear-gradient(135deg, #dcfce7, #bbf7d0);
}

.feature-icon.purple {
    background: linear-gradient(135deg, #f3e8ff, #e9d5ff);
}

.feature-icon.orange {
    background: linear-gradient(135deg, #fed7aa, #fdba74);
}

.feature-title {
    font-size: 2.4rem;
    font-weight: 600;
    margin-bottom: 1.5rem; /* 减少标题下方间距 */
    color: var(--text);
}

.feature-desc {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1.6rem;
}

/* 流程步骤 */
.process {
    background: linear-gradient(135deg, var(--bg-alt), #f1f5f9);
    border-radius: 2.4rem;
    padding: 5rem; /* 减少流程区域内边距 */
    margin-bottom: 4rem; /* 减少流程区域下方间距 */
    position: relative;
    overflow: hidden;
}

.process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23f3f4f6" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.5;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 3rem; /* 减少流程步骤间距 */
    margin-bottom: 3rem; /* 减少流程步骤下方间距 */
    position: relative;
    z-index: 10;
}

.process-step {
    text-align: center;
}

.process-number {
    width: 12rem;
    height: 12rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem; /* 减少数字下方间距 */
    font-size: 3rem;
    font-weight: bold;
    color: white;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.process-number.pink {
    background: linear-gradient(135deg, #ec4899, #be185d);
}

.process-number.blue {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.process-number.green {
    background: linear-gradient(135deg, #10b981, #059669);
}

.process-title {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 1rem; /* 减少标题下方间距 */
    color: var(--text);
}

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

/* 会员展示 */
.member-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.member-card {
    overflow: hidden;
    border-radius: 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    padding: 0; /* 移除卡片内边距，让图片完全贴合 */
    margin: 0; /* 确保没有外边距 */
}

.member-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* 视频缩略图容器 - 固定尺寸，无缝贴合 */
.video-thumbnail {
    position: relative;
    width: 100%;
    height: 220px; /* 增加高度以更好展示图片 */
    cursor: pointer;
    overflow: hidden;
    border-radius: 1.5rem 1.5rem 0 0; /* 只设置上方圆角 */
    transition: all 0.3s ease;
    margin: 0; /* 确保没有外边距 */
    padding: 0; /* 确保没有内边距 */
}

.video-thumbnail:hover {
    transform: scale(1.02);
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 保持比例填充 */
    transition: all 0.3s ease;
    border-radius: 1.5rem 1.5rem 0 0; /* 图片也设置相同圆角 */
    display: block; /* 确保图片是块级元素 */
    margin: 0; /* 移除默认边距 */
    padding: 0; /* 移除默认内边距 */
}

.video-thumbnail:hover img {
    transform: scale(1.05);
}

/* 播放按钮 */
.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(236, 72, 153, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 3px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3);
}

.video-thumbnail:hover .video-play-button {
    background: rgba(236, 72, 153, 1);
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 8px 20px rgba(236, 72, 153, 0.5);
}

.video-play-button::before {
    content: '';
    width: 0;
    height: 0;
    border-left: 18px solid white;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    margin-left: 4px;
}

/* 会员信息区域 - 紧凑布局 */
.member-info {
    padding: 1.5rem 1.5rem 1.5rem 1.5rem; /* 调整内边距，确保文字有合适间距 */
    background: rgba(255, 255, 255, 0.95); /* 确保文字区域有背景 */
    border-radius: 0 0 1.5rem 1.5rem; /* 只设置底部圆角 */
}

/* 基本信息合并为一行 */
.member-basic-info {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    font-size: 1.4rem;
    line-height: 1.4;
}

.member-name {
    font-weight: 700;
    color: var(--text);
    margin: 0;
}

.member-details {
    color: var(--text-light);
    margin: 0;
}

.member-location {
    color: var(--text-light);
    margin: 0;
}

/* 分隔符样式 */
.member-basic-info .separator {
    color: var(--text-light);
    opacity: 0.6;
    margin: 0 0.3rem;
}

/* 描述文字 - 单独一行，支持超行 */
.member-desc {
    font-size: 1.3rem;
    color: var(--text-light);
    line-height: 1.5;
    text-align: center;
    display: none; /* 默认隐藏描述，只在选妃页面显示 */
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

/* 选妃页面显示描述 */
.selection-page .member-desc {
    display: block;
}

/* 成功案例 */
.case-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(45rem, 1fr));
    gap: 3rem; /* 减少案例间距 */
}

.case-item {
    border-left: 6px solid;
    padding-left: 3rem; /* 减少案例左侧内边距 */
    padding-top: 2rem;
    padding-bottom: 2rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 0 1.6rem 1.6rem 0;
    backdrop-filter: blur(10px);
}

.case-item.pink {
    border-left-color: #ec4899;
}

.case-item.blue {
    border-left-color: #3b82f6;
}

.case-item.purple {
    border-left-color: #8b5cf6;
}

.case-item.green {
    border-left-color: #10b981;
}

.case-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem; /* 减少案例标题下方间距 */
    color: var(--text);
}

.case-desc {
    font-size: 1.6rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* 工具类 */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 0.8rem; }
.mb-2 { margin-bottom: 1.6rem; }
.mb-3 { margin-bottom: 2.4rem; }
.mb-4 { margin-bottom: 3.2rem; }
.mb-5 { margin-bottom: 4rem; }
.mb-6 { margin-bottom: 4.8rem; }

.mt-1 { margin-top: 0.8rem; }
.mt-2 { margin-top: 1.6rem; }
.mt-3 { margin-top: 2.4rem; }
.mt-4 { margin-top: 3.2rem; }
.mt-5 { margin-top: 4rem; }
.mt-6 { margin-top: 4.8rem; }

/* VIP页面特定样式 */
.vip-page .beauty-main {
    width: 50rem; /* 缩小图片宽度 */
    height: auto;
    max-height: 80vh; /* 限制最大高度，图片缩小但容器占满屏幕 */
    object-fit: contain; /* 改为contain，确保图片完整显示 */
    object-position: bottom; /* 恢复为bottom，确保图片底部对齐 */
    border-radius: 20px;
    /* 移除阴影，确保透明图层效果 */
    box-shadow: none;
    transition: all 0.3s ease;
    /* 确保图片完全透明背景 */
    background: transparent;
    overflow: hidden !important; /* 强制隐藏所有溢出 */
}

.vip-page .beauty-main:hover {
    transform: scale(1.05);
    /* 悬停时也不添加阴影 */
    box-shadow: none;
}

/* VIP页面英雄区域图片容器优化 */
.vip-page .hero-image {
    display: flex;
    align-items: flex-end; /* 改为flex-end，确保图片底部对齐 */
    justify-content: center;
    width: 100%;
    height: 100vh; /* 占满整个屏幕 */
    max-height: 100vh; /* 占满整个屏幕 */
    position: relative;
    overflow: hidden !important; /* 强制隐藏所有溢出 */
}

/* VIP页面英雄区域占满屏幕 */
.vip-page .hero {
    min-height: 100vh; /* 占满整个屏幕 */
    max-height: 100vh; /* 占满整个屏幕 */
}

.vip-page .hero-content {
    min-height: 100vh; /* 占满整个屏幕 */
    max-height: 100vh; /* 占满整个屏幕 */
}

/* 确保VIP页面的背景装饰没有阴影 */
.vip-page .bg-decor .halo,
.vip-page .bg-decor .circle,
.vip-page .bg-decor .particle,
.vip-page .bg-decor .sparkle {
    box-shadow: none;
    filter: none;
}

/* Slogan展示样式 */
.slogan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.slogan-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.slogan-item:hover::before {
    left: 100%;
}

.slogan-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.slogan-item h4 {
    color: var(--primary);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* 纯静态样式 - 用于terms、privacy、contact页面 */
.static-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: var(--bg);
    border-radius: 1rem;
    box-shadow: 0 4px 6px var(--shadow);
    border: 1px solid var(--border);
}

.static-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

.static-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.static-title {
    font-size: 2.4rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary);
}

.static-item {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-alt);
    border-radius: 0.8rem;
    border-left: 4px solid var(--primary);
}

.static-item.warning {
    border-left-color: #f59e0b;
    background: rgba(245, 158, 11, 0.1);
}

.static-item h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.8rem;
    font-weight: 600;
}

.static-item.warning h3 {
    color: #f59e0b;
}

.static-item p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.static-item ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.static-item li {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

/* 静态联系方式样式 */
.static-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.static-contact-item {
    text-align: center;
    padding: 2rem;
    background: var(--bg-alt);
    border-radius: 1rem;
    border: 2px solid var(--primary);
    transition: all 0.3s ease;
}

.static-contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.static-contact-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.static-contact-icon.tg-main {
    background: linear-gradient(135deg, #0088cc, #006699);
}

.static-contact-icon.tg-service {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.static-contact-icon.twitter {
    background: linear-gradient(135deg, #1da1f2, #0d8bd9);
}

.static-contact-title {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.6rem;
    font-weight: 600;
}

.static-contact-desc {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* 静态服务信息样式 */
.static-service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.static-service-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-alt);
    border-radius: 1rem;
    border: 1px solid var(--border);
}

.static-service-item h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.static-service-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* 静态FAQ样式 */
.static-faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.static-faq-item {
    padding: 2rem;
    background: var(--bg-alt);
    border-radius: 1rem;
    border-left: 4px solid var(--primary);
}

.static-faq-item h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.6rem;
    font-weight: 600;
}

.static-faq-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .slogan-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .slogan-item {
        padding: 20px;
    }
    
    .slogan-item h4 {
        font-size: 1.1rem;
    }
    
    /* 静态样式移动端调整 */
    .static-content {
        padding: 1.5rem;
        margin: 1rem;
    }
    
    .static-title {
        font-size: 2rem;
    }
    
    .static-item h3 {
        font-size: 1.6rem;
    }
    
    .static-contact-grid,
    .static-service-grid,
    .static-faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}
