/* aidianzimeimo.cc 浪漫紫夜主题 */

:root {
    --primary: #e8b4b8;
    --primary-light: #f5d0d4;
    --primary-dark: #c9959a;
    --primary-gradient: linear-gradient(135deg, #c9959a 0%, #e8b4b8 50%, #d4a5c9 100%);
    --accent: #9b6fd4;
    --accent-light: #b794e8;
    --bg-primary: #12081f;
    --bg-secondary: #1a1030;
    --bg-tertiary: #2a1848;
    --text-primary: #f0e6f5;
    --text-secondary: #c4b8d4;
    --text-tertiary: #8a7aa8;
    --text-inverse: #12081f;
    --border-color: rgba(232, 180, 184, 0.28);
    --shadow-glow: 0 0 40px rgba(155, 111, 212, 0.35);
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 16px;
    --border-radius-xl: 20px;
}

body {
    background-color: #12081f;
    background-image:
        radial-gradient(ellipse 80% 50% at 50% -10%, rgba(155, 111, 212, 0.15), transparent 55%),
        radial-gradient(ellipse 60% 40% at 100% 60%, rgba(232, 180, 184, 0.08), transparent 50%),
        linear-gradient(180deg, #12081f 0%, #1a1030 50%, #2a1848 100%);
    color: var(--text-primary);
    font-family: 'Noto Serif SC', serif;
}

h1, h2, h3, h4, .hero-title, .section-title, .logo-text, .page-title {
    font-family: 'Playfair Display', 'Noto Serif SC', serif;
    letter-spacing: 0.02em;
}

/* 导航 */
.header {
    background: rgba(18, 8, 31, 0.75);
    border-bottom: 1px solid rgba(232, 180, 184, 0.2);
    backdrop-filter: blur(16px);
}

.header.scrolled {
    box-shadow: 0 4px 32px rgba(155, 111, 212, 0.2);
}

.logo-text { color: #e8b4b8; }
.nav-link { color: rgba(196, 184, 212, 0.85); }
.nav-link:hover { color: #f5d0d4; }
.nav-link::after { background: #e8b4b8; }
.bar { background: #e8b4b8; }

.btn-lang {
    background: rgba(42, 24, 72, 0.6);
    color: #e8b4b8;
    border: 1px solid rgba(232, 180, 184, 0.4);
    border-radius: 16px;
    padding: 0.4rem 0.75rem;
    font-family: 'Noto Serif SC', serif;
    font-size: 0.8rem;
    margin-right: 0.75rem;
    cursor: pointer;
}
.btn-lang:hover { color: #f5d0d4; border-color: #f5d0d4; }

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.cta-btn {
    background: var(--primary-gradient);
    color: #12081f;
    border-radius: 16px;
    border: 1px solid rgba(232, 180, 184, 0.5);
    box-shadow: 0 4px 24px rgba(155, 111, 212, 0.35);
}

/* Hero */
.hero {
    background: transparent;
    min-height: 92vh;
}

.hero-shape-1 {
    background: linear-gradient(135deg, rgba(155, 111, 212, 0.25), rgba(232, 180, 184, 0.12));
}
.hero-shape-2 {
    background: linear-gradient(135deg, rgba(232, 180, 184, 0.15), rgba(155, 111, 212, 0.1));
}
.hero-shape-3 {
    background: linear-gradient(135deg, rgba(183, 148, 232, 0.12), rgba(232, 180, 184, 0.1));
}

.hero-badge {
    background: rgba(155, 111, 212, 0.15);
    border: 1px solid rgba(232, 180, 184, 0.35);
    border-radius: 16px;
    color: #e8b4b8;
}

.hero-title { color: #f0e6f5; }
.gradient-text {
    background: linear-gradient(120deg, #e8b4b8, #d4a5c9, #b794e8);
    -webkit-background-clip: text;
    background-clip: text;
}

.hero-description {
    color: rgba(196, 184, 212, 0.9);
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
    margin-bottom: 2.5rem;
}

.hero-stats-icons .stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem 1.5rem;
    min-width: 120px;
}

.stat-icon {
    font-size: 1.25rem;
    color: #e8b4b8;
    margin-bottom: 0.5rem;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: #f5d0d4;
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(196, 184, 212, 0.75);
}

.stat-divider {
    width: 1px;
    background: rgba(232, 180, 184, 0.25);
    align-self: stretch;
    margin: 1rem 0;
}

.btn-primary, .btn-cta {
    background: var(--primary-gradient);
    color: #12081f;
    border-radius: 16px;
    border: 1px solid rgba(232, 180, 184, 0.5);
    font-weight: 600;
}

.btn-glow {
    box-shadow: 0 4px 28px rgba(155, 111, 212, 0.45), 0 0 40px rgba(232, 180, 184, 0.2);
    animation: purple-pulse 3s ease-in-out infinite;
}

@keyframes purple-pulse {
    0%, 100% { box-shadow: 0 4px 24px rgba(155, 111, 212, 0.35); }
    50% { box-shadow: 0 4px 40px rgba(155, 111, 212, 0.55), 0 0 50px rgba(232, 180, 184, 0.25); }
}

.btn-secondary {
    background: rgba(42, 24, 72, 0.5);
    color: #e8b4b8;
    border: 1px solid rgba(232, 180, 184, 0.45);
    border-radius: 16px;
    backdrop-filter: blur(8px);
}

.btn-secondary:hover {
    background: rgba(155, 111, 212, 0.15);
    color: #f5d0d4;
    box-shadow: 0 0 20px rgba(155, 111, 212, 0.25);
}

/* 区块通用 */
.features, .highlights, .news, .faq, .reviews {
    background: transparent;
    border-top: 1px solid rgba(232, 180, 184, 0.1);
}

.section-badge {
    background: rgba(155, 111, 212, 0.18);
    color: #e8b4b8;
    border: 1px solid rgba(232, 180, 184, 0.3);
    border-radius: 16px;
}

.section-title { color: #f0e6f5; }
.section-description { color: rgba(196, 184, 212, 0.8); }

/* 卡片 */
.feature-card, .highlight-card, .news-card, .faq-item, .review-card {
    background: rgba(26, 16, 48, 0.75);
    border: 1px solid rgba(232, 180, 184, 0.2);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(12px);
}

.feature-card:hover, .highlight-card:hover, .news-card:hover {
    border-color: rgba(232, 180, 184, 0.45);
    box-shadow: 0 12px 40px rgba(155, 111, 212, 0.2), 0 0 24px rgba(232, 180, 184, 0.1);
}

.feature-icon, .highlight-icon-wrap {
    background: rgba(155, 111, 212, 0.15);
    color: #e8b4b8;
    border-radius: 12px;
}

.feature-title, .highlight-card h3, .news-title {
    color: #f0e6f5;
}

.feature-description, .highlight-card p, .news-excerpt {
    color: rgba(196, 184, 212, 0.85);
}

.news-tag {
    background: rgba(155, 111, 212, 0.25);
    color: #d4a5c9;
    border-radius: 8px;
}

.news-link { color: #e8b4b8; }
.news-link:hover { color: #f5d0d4; }

.highlight-large {
    background: linear-gradient(135deg, rgba(26, 16, 48, 0.9), rgba(42, 24, 72, 0.85));
}

.audience-section {
    border-top: 1px solid rgba(232, 180, 184, 0.12);
}

.audience-title { color: #e8b4b8; }
.audience-tag {
    background: rgba(18, 8, 31, 0.5);
    border: 1px solid rgba(232, 180, 184, 0.25);
    color: rgba(196, 184, 212, 0.9);
    border-radius: 16px;
}

/* FAQ */
.faq-question { color: #f0e6f5; }
.faq-answer p { color: rgba(196, 184, 212, 0.85); }

.faq-item.active {
    border-color: rgba(232, 180, 184, 0.45);
    box-shadow: 0 0 24px rgba(155, 111, 212, 0.15);
}

/* 评价 */
.rating-summary {
    background: rgba(26, 16, 48, 0.8);
    border: 1px solid rgba(232, 180, 184, 0.25);
    border-radius: 16px;
    backdrop-filter: blur(12px);
}

.score-number { color: #f5d0d4; font-family: 'Playfair Display', serif; }
.score-stars { color: #e8b4b8; }
.bar-fill { background: var(--primary-gradient); }
.rating-tag {
    background: rgba(155, 111, 212, 0.12);
    color: #c4b8d4;
    border: 1px solid rgba(232, 180, 184, 0.2);
    border-radius: 12px;
}

.review-content { color: rgba(196, 184, 212, 0.9); }
.review-avatar {
    background: linear-gradient(135deg, #e8b4b8, #9b6fd4);
    color: #12081f;
}

.carousel-btn {
    background: rgba(18, 8, 31, 0.85);
    border: 1px solid rgba(232, 180, 184, 0.35);
    color: #e8b4b8;
    border-radius: 12px;
}

.carousel-dot.active { background: #e8b4b8; }

/* CTA */
.cta-section {
    background: linear-gradient(180deg, transparent 0%, rgba(42, 24, 72, 0.5) 100%);
    border-top: 1px solid rgba(232, 180, 184, 0.2);
}

.cta-content h2 { color: #f0e6f5; }
.cta-content p { color: rgba(196, 184, 212, 0.8); }

/* 页脚 */
.footer {
    background: #12081f;
    border-top: 1px solid rgba(232, 180, 184, 0.2);
}

.footer-column h4 {
    color: #e8b4b8;
    letter-spacing: 0.06em;
}

.footer-column a, .footer-description {
    color: rgba(196, 184, 212, 0.65);
}

.footer-column a:hover { color: #f5d0d4; }
.footer-bottom, .copyright { color: rgba(196, 184, 212, 0.45); }
.social-link {
    border: 1px solid rgba(232, 180, 184, 0.25);
    color: #e8b4b8;
    border-radius: 12px;
}

.back-to-top {
    background: rgba(26, 16, 48, 0.9);
    border: 1px solid rgba(232, 180, 184, 0.4);
    color: #e8b4b8;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(155, 111, 212, 0.25);
}

/* 子页 */
.page-header, .article-header {
    background: #12081f;
    border-bottom: 1px solid rgba(232, 180, 184, 0.15);
}

.article-content, .manual-content, .legal-content {
    background: #12081f;
    color: rgba(196, 184, 212, 0.9);
}

.article-content h2, .legal-content h2 {
    color: #f0e6f5;
}

@media (max-width: 768px) {
    .hero-stats-icons .stat-divider { display: none; }
    .hero-stats-icons { gap: 1rem; }
    .btn-lang { margin-right: 0; }
    .navbar { flex-wrap: wrap; }
}
