/* 基础样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* 主要颜色 */
    --primary-color: #FF6B81;
    --primary-light: #FFE5EA;
    --primary-dark: #E85A71;
    
    /* 文字颜色 */
    --text-color: #333333;
    --text-light: #767676;
    
    /* 背景色 */
    --background: #FFFFFF;
    --background-light: #F8F9FA;
    
    /* 毛玻璃效果 */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.5);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    
    /* 阴影 */
    --card-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    --hover-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    
    /* 过渡动画 */
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --transition-fast: all 0.3s ease;
}

/* 暗色主题预留 */
@media (prefers-color-scheme: dark) {
    :root {
        --text-color: #F0F0F0;
        --text-light: #B0B0B0;
        --background: #1A1A1A;
        --background-light: #2A2A2A;
        --glass-bg: rgba(30, 30, 30, 0.7);
        --glass-border: rgba(255, 255, 255, 0.1);
        --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    }
}

body {
    font-family: 'PingFang SC', 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

::-webkit-scrollbar-track {
    background: rgba(255, 107, 129, 0.05);
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 107, 129, 0.3);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 107, 129, 0.5);
}

/* 按钮样式 */
.button {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.button:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    z-index: -1;
    border-radius: 30px;
    transform: skewX(-15deg);
}

.button:hover:before {
    width: 120%;
}

.button.primary {
    background: linear-gradient(to right, var(--primary-color), var(--primary-dark));
    color: white;
    box-shadow: 0 6px 20px rgba(255, 107, 129, 0.3);
}

.button.secondary {
    background-color: rgba(255, 255, 255, 0.8);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.button.large {
    padding: 14px 32px;
    font-size: 18px;
}

.button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* 波纹动画效果 */
.ripple {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    transform: scale(0);
    animation: ripple 0.6s linear;
    pointer-events: none;
    width: 100px;
    height: 100px;
    margin-left: -50px;
    margin-top: -50px;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* 标题样式 */
.section-title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 15px;
    color: var(--text-color);
    letter-spacing: -0.5px;
    font-weight: 700;
    background: linear-gradient(to right, var(--text-color), #555);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--primary-light));
    margin: 0 auto 50px;
    border-radius: 2px;
}

/* 导航栏 - 毛玻璃效果 */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    z-index: 100;
    padding: 15px 0;
    transition: var(--transition);
    border-bottom: 1px solid var(--glass-border);
}

.header.scrolled {
    padding: 10px 0;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

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

.logo h1 {
    font-size: 26px;
    color: var(--primary-color);
    transition: var(--transition);
}

.logo h1:hover {
    transform: scale(1.05);
}

.nav ul {
    display: flex;
}

.nav li {
    margin: 0 20px;
    position: relative;
}

.nav a {
    font-weight: 500;
    transition: var(--transition);
    padding: 5px 0;
}

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

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

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

.cta-buttons .button {
    margin-left: 12px;
}

/* 主横幅区域 */
.hero {
    padding: 180px 0 120px;
    background: linear-gradient(135deg, rgba(255, 245, 246, 0.8) 0%, rgba(255, 237, 239, 0.8) 100%);
    position: relative;
    overflow: hidden;
    text-align: left;
}

.hero:before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,107,129,0.05) 0%, rgba(255,255,255,0) 70%);
    animation: rotate 25s linear infinite;
    z-index: 1;
}

.hero:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAwIiBoZWlnaHQ9IjIwMCIgdmlld0JveD0iMCAwIDIwMCAyMDAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMTAwJSI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI0ZGNkI4MSIgc3RvcC1vcGFjaXR5PSIwLjAyIi8+PHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjRkY2QjgxIiBzdG9wLW9wYWNpdHk9IjAuMSIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxwYXRoIGZpbGw9InVybCgjZ3JhZCkiIGQ9Ik0wIDBoMTAwdjEwMEgweiIvPjwvc3ZnPg==');
    opacity: 0.4;
    z-index: 0;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 5;
}

.hero-content {
    flex: 1;
    text-align: left;
    padding-right: 20px;
    max-width: 550px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    z-index: 2;
}

.app-demo-image {
    max-width: 350px;
    height: auto;
    border-radius: 35px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    transform: perspective(1000px) rotateY(-8deg);
    transition: var(--transition);
    animation: float 6s ease-in-out infinite;
    border: 4px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 5;
}

.app-demo-image:before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: radial-gradient(circle at 50% 50%, rgba(255, 107, 129, 0.15), transparent 70%);
    z-index: -1;
    border-radius: 50%;
    filter: blur(15px);
}

.hero-content h2 {
    font-size: 56px;
    background: linear-gradient(to right, var(--primary-dark), var(--primary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 25px;
    animation: fadeInUp 0.8s ease;
}

.hero-content .subtitle {
    font-size: 26px;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
    transform: translateY(20px);
}

.hero-content .stats {
    font-size: 18px;
    margin-bottom: 35px;
    font-weight: 500;
    animation: fadeInUp 0.8s ease 0.3s forwards;
    opacity: 0;
    transform: translateY(20px);
}

.hero-buttons {
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
    transform: translateY(20px);
}

.hero-buttons .button {
    margin: 0 12px;
}

.data-source {
    font-size: 14px;
    color: var(--text-light);
    animation: fadeInUp 0.8s ease 0.5s forwards;
    opacity: 0;
    transform: translateY(20px);
}

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

/* 特色功能区域 */
.features {
    padding: 100px 0;
    background-color: var(--background);
    position: relative;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.feature-item {
    text-align: center;
    padding: 40px 30px;
    border-radius: 20px;
    transition: var(--transition);
    background-color: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--glass-shadow);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--glass-border);
}

.feature-item.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.feature-item.fade-in.appear {
    opacity: 1;
    transform: translateY(0);
}

.feature-item:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-color), var(--primary-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.feature-item:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 129, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: -1;
}

.feature-item:hover:before {
    transform: scaleX(1);
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    line-height: 80px;
    background: linear-gradient(135deg, var(--primary-light), rgba(255, 107, 129, 0.2));
    border-radius: 50%;
    margin: 0 auto 25px;
    transition: var(--transition);
}

.feature-item:hover .feature-icon {
    transform: rotateY(180deg);
}

.feature-icon i {
    font-size: 32px;
    color: var(--primary-color);
    transition: var(--transition);
}

.feature-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-color);
}

.feature-item p {
    color: var(--text-light);
    line-height: 1.7;
}

/* 红娘服务区域 */
.matchmaker {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(255, 237, 239, 0.8) 0%, rgba(255, 245, 246, 0.8) 100%);
    position: relative;
    overflow: hidden;
}

.matchmaker:after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,107,129,0.1) 0%, rgba(255,255,255,0) 70%);
    transition: transform 0.3s ease;
}

.matchmaker-intro {
    text-align: center;
    margin-bottom: 60px;
}

.matchmaker-intro .highlight {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 15px;
    color: var(--text-color);
}

.matchmaker-intro .highlight-large {
    font-size: 36px;
    font-weight: 700;
    background: linear-gradient(to right, var(--primary-dark), var(--primary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 20px;
}

.matchmaker-plans {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.plan {
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    width: 280px;
    box-shadow: var(--glass-shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--glass-border);
}

.plan.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.plan.fade-in.appear {
    opacity: 1;
    transform: translateY(0);
}

.plan:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,107,129,0.05) 0%, rgba(255,255,255,0) 100%);
    z-index: -1;
}

.plan:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.plan-icon {
    margin-bottom: 20px;
    transition: var(--transition);
}

.plan:hover .plan-icon {
    transform: scale(1.1);
}

.plan-icon i {
    font-size: 48px;
    color: var(--primary-color);
}

.plan h3 {
    font-size: 22px;
    color: var(--text-color);
    position: relative;
    padding-bottom: 15px;
}

.plan h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: var(--primary-light);
    border-radius: 3px;
}

.matchmaker-note {
    text-align: center;
    margin-top: 30px;
    font-size: 16px;
    color: var(--text-light);
}

/* 用户展示区域 */
.users {
    padding: 100px 0;
    background-color: var(--background);
    position: relative;
}

.user-profiles {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 40px;
}

.profile-card {
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--glass-shadow);
    transition: var(--transition);
    transform: translateY(40px);
    opacity: 0;
    animation: fadeInProfile 0.8s forwards;
    border: 1px solid var(--glass-border);
}

.profile-card.loaded {
    animation: pulse 2s infinite alternate;
}

@keyframes pulse {
    0% {
        box-shadow: var(--card-shadow);
    }
    100% {
        box-shadow: 0 15px 35px rgba(255, 107, 129, 0.15);
    }
}

.profile-card:nth-child(2) {
    animation-delay: 0.1s;
}

.profile-card:nth-child(3) {
    animation-delay: 0.2s;
}

.profile-card:nth-child(4) {
    animation-delay: 0.3s;
}

.profile-card:nth-child(5) {
    animation-delay: 0.4s;
}

.profile-card:nth-child(6) {
    animation-delay: 0.5s;
}

@keyframes fadeInProfile {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.profile-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.profile-image {
    height: 220px;
    background-size: cover;
    background-position: center;
    transition: var(--transition);
    position: relative;
}

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

.profile-image:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.6) 100%);
}

.profile-image.male {
    background-image: url('https://images.unsplash.com/photo-1500648767791-00dcc994a43e?ixlib=rb-4.0.3&auto=format&fit=crop&w=500&q=60');
}

.profile-image.female {
    background-image: url('https://images.unsplash.com/photo-1494790108377-be9c29b29330?ixlib=rb-4.0.3&auto=format&fit=crop&w=500&q=60');
}

.profile-info {
    padding: 25px;
    position: relative;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    background-color: rgba(255, 255, 255, 0.9);
}

.profile-info:before {
    content: '';
    position: absolute;
    top: 0;
    left: 20px;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
}

.profile-info h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.profile-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.profile-details li {
    font-size: 15px;
    color: var(--text-light);
    padding-left: 8px;
    position: relative;
}

.profile-details li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* 页脚 */
.footer {
    background-color: rgba(42, 42, 42, 0.97);
    color: #fff;
    padding: 80px 0 40px;
    position: relative;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-color), var(--primary-light));
}

.footer-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.footer-logo h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.footer-logo p {
    margin-top: 5px;
    color: #aaa;
    font-size: 14px;
    font-style: italic;
}

.footer-contact p {
    margin-bottom: 10px;
    font-size: 14px;
    color: #aaa;
    transition: var(--transition);
}

.footer-contact p:hover {
    color: #fff;
}

.footer-contact p i {
    margin-right: 8px;
    color: var(--primary-color);
    opacity: 0.8;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.copyright p, .company-info p {
    font-size: 14px;
    color: #888;
    margin-bottom: 5px;
}

.company-info p i {
    margin-right: 8px;
    color: var(--primary-color);
    opacity: 0.8;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
}

.footer-links a {
    color: #aaa;
    margin-left: 20px;
    font-size: 14px;
    transition: var(--transition);
    position: relative;
}

.footer-links a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    background: var(--primary-color);
    bottom: -2px;
    left: 0;
    transition: var(--transition);
}

.footer-links a:hover {
    color: #fff;
    transform: translateY(-2px);
}

.footer-links a:hover:after {
    width: 100%;
}

.footer-links a i {
    margin-right: 8px;
    color: var(--primary-color);
    opacity: 0.8;
}

/* 备案链接样式 */
.beian-link {
    color: #b3b3b3;
    text-decoration: none;
    transition: color 0.3s;
}

.beian-link:hover {
    color: #fff;
    text-decoration: underline;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .hero-container {
        flex-direction: column;
    }
    
    .hero-content {
        text-align: center;
        padding-right: 0;
        margin-bottom: 40px;
        max-width: 100%;
    }
    
    .hero-image {
        justify-content: center;
    }
    
    .app-demo-image {
        max-width: 300px;
    }
    
    .feature-grid, .user-profiles {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
    }
    
    .logo {
        margin-bottom: 15px;
    }
    
    .nav {
        margin-bottom: 15px;
    }
    
    .nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav li {
        margin: 5px 10px;
    }
    
    .cta-buttons {
        display: flex;
        justify-content: center;
    }
    
    .hero {
        padding: 140px 0 80px;
    }
    
    .app-demo-image {
        max-width: 280px;
    }
    
    .hero-content h2 {
        font-size: 42px;
    }
    
    .section-title {
        font-size: 32px;
    }

    .matchmaker-intro .highlight-large {
        font-size: 30px;
    }
    
    .footer-top, .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-logo, .footer-contact, .copyright, .company-info {
        margin-bottom: 25px;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .footer-links a {
        margin: 5px 10px;
    }
}

@media (max-width: 480px) {
    .hero-content h2 {
        font-size: 36px;
    }
    
    .hero-content .subtitle {
        font-size: 20px;
    }
    
    .app-demo-image {
        max-width: 240px;
    }
    
    .feature-grid, .user-profiles {
        grid-template-columns: 1fr;
    }
    
    .button.large {
        font-size: 16px;
        padding: 12px 24px;
    }
}

/* 新增视差效果 */
.parallax-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 0;
}

.parallax-bg .shape {
    position: absolute;
    background: rgba(255, 107, 129, 0.05);
    border-radius: 50%;
    filter: blur(10px);
}

.parallax-bg .shape-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -100px;
}

.parallax-bg .shape-2 {
    width: 200px;
    height: 200px;
    bottom: 50px;
    left: -50px;
}

/* 高亮数字样式 */
.highlight-number {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 120%;
    background: linear-gradient(to right, var(--primary-color), var(--primary-dark));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    display: inline-block;
}

.highlight-number:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--primary-dark));
    opacity: 0.5;
}

/* 美化计划卡片内容 */
.plan p {
    margin-top: 15px;
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.5;
}

/* 调整按钮内图标间距 */
.button i {
    margin-right: 6px;
}

/* 增加浮动动画 */
@keyframes float {
    0% {
        transform: perspective(1000px) rotateY(-8deg) translateY(0px);
    }
    50% {
        transform: perspective(1000px) rotateY(-8deg) translateY(-15px);
    }
    100% {
        transform: perspective(1000px) rotateY(-8deg) translateY(0px);
    }
}

/* 视差元素动画 */
.shape {
    animation: morphing 15s ease-in-out infinite alternate;
}

@keyframes morphing {
    0% {
        border-radius: 40% 60% 60% 40% / 60% 30% 70% 40%;
    }
    50% {
        border-radius: 50% 50% 30% 70% / 30% 50% 50% 70%;
    }
    100% {
        border-radius: 60% 40% 40% 60% / 40% 60% 40% 60%;
    }
}

/* 动态卡片悬浮效果增强 */
.feature-item:hover, 
.plan:hover, 
.profile-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* 增强鼠标互动效果 */
.feature-item:active, 
.plan:active, 
.profile-card:active {
    transform: translateY(-5px) scale(0.98);
    transition: var(--transition);
}

/* 光标特效 */
.cursor-effect {
    position: fixed;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: rgba(255, 107, 129, 0.3);
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;
    animation: cursor-expand 0.8s ease-out;
}

@keyframes cursor-expand {
    0% {
        opacity: 0.8;
        width: 5px;
        height: 5px;
    }
    100% {
        opacity: 0;
        width: 50px;
        height: 50px;
    }
} 