/* ===== 全局样式 ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    background: linear-gradient(135deg, #1a0d33 0%, #2d1b52 25%, #4a2c77 50%, #6b4699 75%, #8b60cc 100%);
    color: #ffffff;
    overflow-x: hidden;
    line-height: 1.7;
    min-height: 100vh;
}

/* ===== 预加载器 ===== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a0d33 0%, #2d1b52 50%, #4a2c77 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
}

.luxury-loader {
    margin-bottom: 2rem;
}

.diamond-spinner {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto;
}

.diamond {
    position: absolute;
    width: 20px;
    height: 20px;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    transform: rotate(45deg);
    animation: diamondSpin 2s ease-in-out infinite;
}

.diamond:nth-child(1) { top: 0; left: 30px; animation-delay: 0s; }
.diamond:nth-child(2) { top: 30px; right: 0; animation-delay: 0.5s; }
.diamond:nth-child(3) { bottom: 0; left: 30px; animation-delay: 1s; }
.diamond:nth-child(4) { top: 30px; left: 0; animation-delay: 1.5s; }

@keyframes diamondSpin {
    0%, 100% { transform: rotate(45deg) scale(1); opacity: 1; }
    50% { transform: rotate(225deg) scale(1.5); opacity: 0.7; }
}

.loading-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 1rem;
    display: block;
}

.loading-dots span {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ffd700;
    margin: 0 4px;
    animation: loadingDots 1.5s ease-in-out infinite;
}

.loading-dots span:nth-child(2) { animation-delay: 0.3s; }
.loading-dots span:nth-child(3) { animation-delay: 0.6s; }

@keyframes loadingDots {
    0%, 80%, 100% { transform: scale(0.8); opacity: 0.5; }
    40% { transform: scale(1.2); opacity: 1; }
}

/* ===== 导航栏 ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 13, 51, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.navbar.scrolled {
    background: rgba(26, 13, 51, 0.98);
    box-shadow: 0 4px 30px rgba(26, 13, 51, 0.7);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffd700;
}

.logo-icon {
    font-size: 1.8rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.nav-links a:hover {
    color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
}

.nav-button {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #1a0d33;
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.nav-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
}

/* ===== Hero Section ===== */
.hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a0d33 0%, #2d1b52 25%, #4a2c77 50%, #6b4699 75%, #8b60cc 100%);
    opacity: 0.9;
}

.geometric-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(255, 215, 0, 0.1), rgba(255, 237, 78, 0.05));
    animation: floatShapes 8s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: -5%;
    animation-delay: 2s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 70%;
    animation-delay: 4s;
}

@keyframes floatShapes {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(180deg); }
}

.hero-container {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.hero-content {
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    margin-bottom: 2rem;
    animation: slideInDown 1s ease-out;
}

.badge-icon {
    font-size: 1.2rem;
}

.badge-text {
    color: #ffd700;
    font-weight: 700;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    animation: slideInUp 1s ease-out 0.3s both;
}

.title-line-1 {
    display: block;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.title-line-2 {
    display: block;
    background: linear-gradient(45deg, #ffd700, #ffed4e, #ffa500);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientFlow 3s ease-in-out infinite;
}

@keyframes gradientFlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-subtitle {
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    color: #e6e6e6;
    margin-bottom: 3rem;
    animation: slideInUp 1s ease-out 0.6s both;
}

/* ===== Profile Showcase ===== */
.profile-showcase {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    align-items: center;
    margin: 4rem 0;
    animation: fadeInScale 1s ease-out 0.9s both;
}

.profile-image-container {
    position: relative;
    width: 200px;
    height: 200px;
}

.profile-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    border-radius: 50%;
    filter: blur(20px);
    animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

.profile-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    position: relative;
    z-index: 2;
    border: 4px solid #ffd700;
}

.profile-frame {
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 50%;
    z-index: 1;
}

.profile-details {
    text-align: left;
}

.profile-name {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: #ffd700;
    margin-bottom: 0.5rem;
}

.profile-title {
    font-size: 1.3rem;
    color: #e6e6e6;
    margin-bottom: 2rem;
}

.profile-highlights {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 215, 0, 0.05);
    padding: 1rem;
    border-radius: 15px;
    border-left: 4px solid #ffd700;
}

.highlight-icon {
    font-size: 1.5rem;
}

.highlight-text {
    font-size: 1.1rem;
    color: #e6e6e6;
}

.mission-statement {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 237, 78, 0.05));
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.mission-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffd700;
    margin-bottom: 1rem;
    text-align: center;
}

.vision-text {
    color: #e6e6e6;
    text-align: center;
    line-height: 1.6;
}

/* ===== CTA Section ===== */
.cta-section {
    margin-top: 4rem;
    animation: slideInUp 1s ease-out 1.2s both;
}

.cta-header {
    text-align: center;
    margin-bottom: 3rem;
}

.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
    color: #ffffff;
}

.title-icon {
    color: #ffd700;
    margin: 0 0.5rem;
}

.limited-badge {
    display: inline-block;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: #ffffff;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-size: 1.1rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.premium-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.benefit-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
    text-align: center;
}

.benefit-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 215, 0, 0.1);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #ffd700;
    margin-bottom: 1rem;
}

.benefit-desc {
    color: #e6e6e6;
    line-height: 1.6;
}

.premium-cta-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #1a0d33;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
    overflow: hidden;
}

.button-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.premium-cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.6);
}

.button-icon {
    font-size: 1.5rem;
}

.button-arrow {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.premium-cta-button:hover .button-arrow {
    transform: translateX(5px);
}

.cta-note {
    margin-top: 1rem;
    color: #b8b8b8;
    text-align: center;
}

/* ===== Scroll Indicator ===== */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    animation: bounce 2s ease-in-out infinite;
}

.scroll-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.scroll-arrow {
    color: #ffd700;
    font-size: 1.5rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* ===== Common Section Styles ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #e6e6e6;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== Philosophy Section ===== */
.philosophy-section {
    padding: 6rem 0;
    background: rgba(255, 255, 255, 0.02);
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.philosophy-card {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem 2rem;
    border-radius: 25px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.1);
    overflow: hidden;
}

.card-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), transparent);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.philosophy-card:hover .card-background {
    transform: translateY(0);
}

.philosophy-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(255, 215, 0, 0.2);
}

.philosophy-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.philosophy-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #ffd700;
    margin-bottom: 1.5rem;
}

.philosophy-desc {
    color: #e6e6e6;
    line-height: 1.7;
}

/* ===== Services Section ===== */
.services-section {
    padding: 6rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem 2rem;
    border-radius: 25px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.premium-card {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 237, 78, 0.05));
    border: 2px solid #ffd700;
    transform: scale(1.05);
}

.service-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ffd700, #ffed4e, #ffd700);
    border-radius: 25px;
    filter: blur(15px);
    z-index: -1;
    animation: serviceGlow 3s ease-in-out infinite;
}

@keyframes serviceGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

.premium-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #1a0d33;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #ffd700;
    margin-bottom: 1.5rem;
}

.service-price {
    margin-bottom: 2rem;
}

.price-main {
    display: block;
    font-size: 2rem;
    color: #ffd700;
    margin-bottom: 0.5rem;
}

.price-sub {
    color: #b8b8b8;
    font-size: 0.9rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    color: #e6e6e6;
}

.service-features i {
    color: #ffd700;
    font-size: 1.1rem;
}

.service-button {
    background: linear-gradient(45deg, #4a2c77, #6b4699);
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.premium-button {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #1a0d33;
}

.service-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
}

/* ===== Banner Section ===== */
.banner-section {
    position: relative;
    height: 400px;
    overflow: hidden;
    margin: 4rem 0;
}

.banner-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 13, 51, 0.8), rgba(74, 44, 119, 0.6));
    z-index: 2;
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 3;
    color: #ffffff;
}

.banner-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
    color: #ffd700;
}

.banner-subtitle {
    font-size: 1.1rem;
    color: #e6e6e6;
}

/* ===== Success Section ===== */
.success-section {
    padding: 6rem 0;
    background: rgba(255, 255, 255, 0.02);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem 1.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.stat-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 215, 0, 0.1);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #ffd700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.stat-desc {
    font-size: 0.9rem;
    color: #b8b8b8;
}

.testimonials-section {
    margin-top: 4rem;
}

.testimonials-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    color: #ffd700;
    margin-bottom: 3rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.1);
}

.testimonial-rating {
    margin-bottom: 1.5rem;
    text-align: center;
}

.star {
    color: #ffd700;
    font-size: 1.2rem;
    margin: 0 0.1rem;
}

.testimonial-content {
    color: #e6e6e6;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.author-name {
    color: #ffd700;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.author-detail {
    color: #b8b8b8;
    font-size: 0.9rem;
}

/* ===== Community Section ===== */
.community-section {
    padding: 6rem 0;
}

.comments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.comment-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: all 0.3s ease;
}

.comment-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 215, 0, 0.05);
}

.comment-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.comment-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a0d33;
    font-size: 1.2rem;
}

.comment-name {
    color: #ffd700;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.comment-badge {
    background: rgba(255, 215, 0, 0.2);
    color: #ffd700;
    padding: 0.2rem 0.8rem;
    border-radius: 12px;
    font-size: 0.8rem;
    margin-bottom: 0.3rem;
}

.comment-badge.expert {
    background: rgba(255, 107, 53, 0.2);
    color: #ff6b35;
}

.comment-badge.beginner {
    background: rgba(139, 96, 204, 0.2);
    color: #8b60cc;
}

.comment-date {
    color: #b8b8b8;
    font-size: 0.8rem;
}

.comment-content {
    color: #e6e6e6;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.comment-actions {
    display: flex;
    gap: 1rem;
}

.action-btn {
    background: none;
    border: 1px solid rgba(255, 215, 0, 0.3);
    color: #e6e6e6;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.action-btn:hover {
    background: rgba(255, 215, 0, 0.1);
    color: #ffd700;
}

.like-btn i {
    color: #ff6b35;
}

/* ===== Final CTA Section ===== */
.final-cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(26, 13, 51, 0.9), rgba(74, 44, 119, 0.7));
    position: relative;
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    animation: ctaGlow 8s ease-in-out infinite;
}

@keyframes ctaGlow {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.2) rotate(180deg); }
}

.final-cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.final-cta-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.final-cta-subtitle {
    font-size: 1.3rem;
    color: #e6e6e6;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.final-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 3rem;
}

.final-benefit {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 215, 0, 0.1);
    padding: 1rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.benefit-check {
    color: #ffd700;
    font-size: 1.2rem;
    font-weight: 700;
}

.final-cta-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #1a0d33;
    padding: 1.5rem 4rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
    margin-bottom: 2rem;
    overflow: hidden;
}

.button-sparkle {
    font-size: 1.5rem;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.2) rotate(180deg); }
}

.final-cta-button:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(255, 215, 0, 0.6);
}

.urgency-text {
    color: #ff6b35;
    font-size: 1.1rem;
    animation: urgencyPulse 2s ease-in-out infinite;
}

@keyframes urgencyPulse {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

/* ===== Risk Disclosure Section ===== */
.risk-disclosure-section {
    padding: 4rem 0;
    background: rgba(255, 107, 53, 0.05);
    border-top: 1px solid rgba(255, 107, 53, 0.2);
}

.disclosure-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.disclosure-title {
    font-family: 'Playfair Display', serif;
    color: #ff6b35;
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.disclosure-text {
    color: #e6e6e6;
    line-height: 1.7;
}

.disclosure-text p {
    margin-bottom: 1.5rem;
}

/* ===== Footer ===== */
.footer {
    background: rgba(26, 13, 51, 0.9);
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #ffd700;
    margin-bottom: 1rem;
}

.footer-desc {
    color: #e6e6e6;
}

.footer-links {
    display: flex;
    gap: 2rem;
    justify-content: flex-end;
}

.footer-links a {
    color: #b8b8b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffd700;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    color: #b8b8b8;
}

/* ===== Floating CTA ===== */
.floating-cta {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;

}

.floating-button {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #1a0d33;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
    transition: all 0.3s ease;
    animation: floatingBounce 3s ease-in-out infinite;
}

.floating-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.6);
}

.floating-icon {
    font-size: 1.3rem;
}

@keyframes floatingBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ===== 动画 ===== */
@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ===== 响应式设计 ===== */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    .hero-container {
        padding: 1rem;
    }
    
    .profile-showcase {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .profile-details {
        text-align: center;
    }
    
    .profile-image-container {
        width: 160px;
        height: 160px;
        margin: 0 auto;
    }
    
    .premium-benefits {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .comments-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .final-benefits {
        grid-template-columns: 1fr;
    }
    
    .premium-cta-button,
    .final-cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .floating-button {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }
} 