/* 优化APP图标样式 */
.app-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    transition: all 0.5s ease;
}

.floating-card:hover .app-icon {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* 调整卡片内容容器 */
.character-main {
    width: 180px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 15px;
    position: relative;
    overflow: hidden;
}

    .character-main::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(255, 107, 157, 0.2), rgba(255, 142, 83, 0.2));
        border-radius: 25px;
        z-index: 0;
    }

.app-icon {
    position: relative;
    z-index: 1;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .character-main {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 480px) {
    .character-main {
        width: 120px;
        height: 120px;
    }
}

/* 增强卡片效果 */
.floating-card {
    position: relative;
    perspective: 1000px;
}

    .floating-card::before {
        content: '';
        position: absolute;
        top: -10px;
        left: -10px;
        right: -10px;
        bottom: -10px;
        background: linear-gradient(45deg, #ff6b9d, #ff8e53, #ff6b9d);
        border-radius: 35px;
        z-index: -1;
        opacity: 0.3;
        filter: blur(20px);
        animation: glow 3s ease-in-out infinite alternate;
    }

@keyframes glow {
    0% {
        opacity: 0.2;
    }

    100% {
        opacity: 0.4;
    }
}



/* 性感风格主样式文件 - 最终版 */

/* CSS变量定义 */
:root {
    /* 莫兰迪性感色系 */
    --sexy-primary: #C9A8D9;    /* 魅惑粉紫 */
    --sexy-secondary: #F4C2C2;  /* 温暖裸粉 */
    --sexy-accent: #FFB6C1;     /* 柔光桃色 */
    --sexy-dark: #8A7090;       /* 暗紫 */
    --sexy-light: #FFF5F7;      /* 丝滑米白（略带粉调） */
    --sexy-gold: #D4AF37;       /* 金色点缀 */
    
    /* 文字颜色 */
    --text-primary: #6D5D6B;    /* 深玫瑰灰 */
    --text-secondary: #A98E9E;  /* 藕荷灰 */
    --text-light: #FFFFFF;      /* 白色 */
    
    /* 其他 */
    --shadow-soft: 0 8px 32px rgba(201, 168, 217, 0.2);
    --shadow-medium: 0 12px 40px rgba(201, 168, 217, 0.3);
    --radius-soft: 20px;
    --radius-round: 50px;
}

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

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-primary);
    background-color: var(--sexy-light);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* === 性感导航栏 === */
.sexy-nav {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 4px 30px rgba(201, 168, 217, 0.15);
    transition: all 0.3s ease;
}

.sexy-nav.scrolled {
    padding: 10px 0;
    box-shadow: 0 8px 40px rgba(201, 168, 217, 0.25);
}

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

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-family: 'Dancing Script', cursive;
    font-size: 2rem;
    font-weight: 700;
    color: var(--sexy-dark);
    transition: transform 0.3s ease;
}

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

.logo-icon {
    margin-right: 10px;
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    padding: 8px 16px;
    border-radius: var(--radius-round);
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--sexy-primary);
    background-color: rgba(201, 168, 217, 0.1);
}

.nav-link.active {
    color: var(--sexy-primary);
    background-color: rgba(201, 168, 217, 0.15);
}

.download-btn {
    background: linear-gradient(135deg, var(--sexy-primary), var(--sexy-accent));
    color: white;
    padding: 12px 24px;
    border-radius: var(--radius-round);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-soft);
}

.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.contact-btn {
    background: transparent;
    color: var(--sexy-primary);
    padding: 11px 23px;
    border-radius: var(--radius-round);
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--sexy-primary);
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background-color: rgba(201, 168, 217, 0.1);
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--sexy-primary);
    cursor: pointer;
}

/* === 性感英雄区域 === */
.sexy-hero {
    background: linear-gradient(135deg, var(--sexy-primary) 0%, var(--sexy-secondary) 100%);
    min-height: 100vh;
    padding: 120px 0 60px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.sexy-hero::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" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="white" fill-opacity="0.1"/></svg>');
    background-size: cover;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.sexy-title {
    font-family: 'Dancing Script', cursive;
    font-size: 4rem;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
}

.title-line {
    display: block;
}

.sexy-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    font-weight: 400;
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-sexy-download {
    background: linear-gradient(135deg, #FF6B9D, #FF8E53);
    color: white;
    padding: 18px 36px;
    border-radius: var(--radius-round);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.4);
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-sexy-download:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 107, 157, 0.6);
}

.btn-sexy-contact {
    background: transparent;
    color: white;
    padding: 17px 35px;
    border-radius: var(--radius-round);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border: 2px solid white;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-sexy-contact:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-card {
    background: white;
    border-radius: 30px;
    padding: 30px;
    box-shadow: var(--shadow-medium);
    transform: rotate(3deg);
    animation: float 6s ease-in-out infinite;
}

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

/* === App Icon 样式（新增）=== */
.app-icon-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.app-icon-frame {
    position: relative;
    width: 280px;
    height: 280px;
    border-radius: 30%;
    padding: 15px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
    backdrop-filter: blur(10px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: pulse-glow 3s ease-in-out infinite alternate;
}

@keyframes pulse-glow {
    0% {
        box-shadow: 
            0 20px 40px rgba(0, 0, 0, 0.1),
            inset 0 1px 0 rgba(255, 255, 255, 0.3),
            0 0 20px rgba(255, 107, 157, 0.3);
    }
    100% {
        box-shadow: 
            0 20px 40px rgba(0, 0, 0, 0.1),
            inset 0 1px 0 rgba(255, 255, 255, 0.3),
            0 0 40px rgba(255, 107, 157, 0.6);
    }
}

.app-icon {
    width: 100%;
    height: 100%;
    border-radius: 25%;
    object-fit: cover;
    transition: all 0.5s ease;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
    position: relative;
    z-index: 1;
}

.app-icon-frame:hover .app-icon {
    transform: scale(1.05) rotate(5deg);
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.3));
}

.icon-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.icon-effects::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, #ff6b9d 0%, #ff8e53 50%, #ff4d8d 100%);
    border-radius: 35%;
    z-index: 0;
    opacity: 0.2;
    filter: blur(15px);
    animation: glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
    0% {
        opacity: 0.2;
        transform: scale(0.95);
    }
    100% {
        opacity: 0.4;
        transform: scale(1.05);
    }
}

.game-character {
    width: 300px;
    height: 400px;
    background: linear-gradient(135deg, var(--sexy-secondary), var(--sexy-accent));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.character-placeholder {
    text-align: center;
    color: white;
    position: relative;
}

.character-placeholder .fa-female {
    font-size: 8rem;
    margin-bottom: 20px;
}

.heart-float, .star-float {
    position: absolute;
    font-size: 2rem;
    opacity: 0.7;
    animation: float-heart 4s ease-in-out infinite;
}

.heart-float {
    top: 50px;
    left: 50px;
    animation-delay: 0s;
}

.star-float {
    bottom: 50px;
    right: 50px;
    animation-delay: 2s;
}

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

/* === 通用样式 === */
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    text-align: center;
    color: var(--sexy-dark);
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--sexy-primary), var(--sexy-accent));
    border-radius: 3px;
}

.page-title {
    font-family: 'Dancing Script', cursive;
    font-size: 4rem;
    color: var(--sexy-dark);
    text-align: center;
    margin-bottom: 20px;
}

.page-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 40px;
}

/* 关于我们英雄区 */
.about-hero {
    background: linear-gradient(135deg, var(--sexy-primary) 0%, var(--sexy-accent) 100%);
    padding: 180px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero::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" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="white" fill-opacity="0.05"/></svg>');
    background-size: cover;
}

/* 特征卡片 */
.features {
    padding: 100px 0;
    background-color: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: var(--radius-soft);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.sexy-card {
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(201, 168, 217, 0.2);
}

.sexy-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.sexy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--sexy-primary), var(--sexy-accent));
    z-index: 2;
}

.feature-icon {
    font-size: 3rem;
    color: var(--sexy-primary);
    margin-bottom: 25px;
}

.feature-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--sexy-dark);
    margin-bottom: 15px;
}

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

/* 返回主页按钮 */
.back-to-home {
    background: linear-gradient(135deg, var(--sexy-light) 0%, #FFF9FB 100%);
    padding: 60px 0;
}

/* === 数据删除请求样式（新增）=== */
.deletion-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.step {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 25px;
    position: relative;
    border: 2px solid #e9ecef;
    transition: transform 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
    border-color: #ff4081;
}

.step-number {
    position: absolute;
    top: -15px;
    left: -15px;
    width: 40px;
    height: 40px;
    background: #ff4081;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 4px 8px rgba(255, 64, 129, 0.3);
}

.step-content h5 {
    color: #ff4081;
    margin: 15px 0 10px;
    font-size: 1.1rem;
}

.contact-highlight {
    background: #fff5f7;
    padding: 15px;
    border-radius: 10px;
    margin: 15px 0;
    border-left: 4px solid #ff4081;
}

.contact-highlight a {
    color: #ff4081;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.1rem;
}

.contact-highlight i {
    margin-right: 10px;
    font-size: 1.2rem;
}

.important-note {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 10px;
    padding: 20px;
    margin: 30px 0;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.important-note i {
    color: #ff9800;
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 5px;
}

.important-note h5 {
    color: #856404;
    margin-bottom: 10px;
}

.important-note ul {
    margin-top: 10px;
}

/* 更新导航链接，添加数据删除选项 */
.policy-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.policy-nav a {
    background: white;
    color: #ff4081;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 64, 129, 0.1);
    transition: all 0.3s ease;
    border: 2px solid #ff4081;
    font-size: 0.9rem;
}

.policy-nav a:hover {
    background: #ff4081;
    color: white;
    transform: translateY(-2px);
}

/* === 页脚 === */
.sexy-footer {
    background: linear-gradient(135deg, var(--sexy-dark), #6D5D6B);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-family: 'Dancing Script', cursive;
    font-size: 2.2rem;
    font-weight: 700;
}

.footer-tagline {
    opacity: 0.8;
    font-size: 1rem;
    max-width: 300px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--sexy-accent);
    padding-left: 10px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-email {
    color: var(--sexy-secondary);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.contact-email:hover {
    color: white;
}

.copyright {
    opacity: 0.6;
    font-size: 0.9rem;
}

/* === 响应式设计 === */
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-description {
        max-width: 100%;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .sexy-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .page-title {
        font-size: 3rem;
    }
    
    /* App Icon 响应式 */
    .app-icon-frame {
        width: 240px;
        height: 240px;
    }
    
    .floating-card {
        width: 280px;
        height: 360px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: white;
        padding: 20px;
        flex-direction: column;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        border-radius: 0 0 20px 20px;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .btn-sexy-download,
    .btn-sexy-contact {
        padding: 15px 25px;
        font-size: 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    /* App Icon 响应式 */
    .app-icon-frame {
        width: 200px;
        height: 200px;
    }
    
    .floating-card {
        width: 240px;
        height: 320px;
    }
    
    /* 数据删除样式响应式 */
    .deletion-steps {
        grid-template-columns: 1fr;
    }
    
    .policy-nav {
        flex-direction: column;
        align-items: center;
    }
    
    .policy-nav a {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .sexy-title {
        font-size: 2.5rem;
    }
    
    .sexy-subtitle {
        font-size: 1.4rem;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .page-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    /* App Icon 响应式 */
    .app-icon-frame {
        width: 160px;
        height: 160px;
    }
    
    .floating-card {
        width: 200px;
        height: 280px;
    }
}