/* dzmmai.cc 史诗暗黑主题覆盖 */

:root {
    --primary: #b8860b;
    --primary-light: #d4af37;
    --primary-dark: #8b6914;
    --primary-gradient: linear-gradient(135deg, #8b6914 0%, #b8860b 50%, #d4af37 100%);
    --accent: #8b0000;
    --accent-light: #a52a2a;
    --bg-primary: #000000;
    --bg-secondary: #0a0a0a;
    --bg-tertiary: #111111;
    --text-primary: #e8e4dc;
    --text-secondary: #c9c4bc;
    --text-tertiary: #8a8580;
    --text-inverse: #0a0a0a;
    --border-color: rgba(184, 134, 11, 0.25);
    --shadow-glow: 0 0 40px rgba(184, 134, 11, 0.35);
    --border-radius-sm: 2px;
    --border-radius-md: 2px;
    --border-radius-lg: 2px;
    --border-radius-xl: 4px;
}

body {
    background-color: #000;
    background-image:
        radial-gradient(ellipse 70% 45% at 50% -5%, rgba(184, 134, 11, 0.1), transparent 55%),
        radial-gradient(ellipse 50% 35% at 0% 50%, rgba(139, 0, 0, 0.06), transparent 50%);
    color: var(--text-primary);
    font-family: 'Noto Sans SC', sans-serif;
}

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

/* 导航 */
.header {
    background: rgba(0, 0, 0, 0.92);
    border-bottom: 1px solid rgba(184, 134, 11, 0.35);
    backdrop-filter: blur(12px);
}

.header.scrolled {
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.6);
}

.logo-text { color: #d4af37; }
.nav-link { color: rgba(201, 196, 188, 0.8); font-family: 'Noto Serif SC', serif; }
.nav-link:hover { color: #d4af37; }
.nav-link::after { background: #b8860b; }
.bar { background: #d4af37; }

.btn-lang {
    background: transparent;
    color: #b8860b;
    border: 1px solid rgba(184, 134, 11, 0.45);
    border-radius: 2px;
    padding: 0.4rem 0.65rem;
    font-family: 'Cinzel', serif;
    font-size: 0.75rem;
    margin-right: 0.75rem;
    cursor: pointer;
}
.btn-lang:hover { color: #d4af37; border-color: #d4af37; }

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

.cta-btn {
    background: var(--primary-gradient);
    color: #0a0a0a;
    border-radius: 2px;
    border: 1px solid rgba(212, 175, 55, 0.5);
}

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

.hero-shape-1 {
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.2), rgba(184, 134, 11, 0.12));
}
.hero-shape-2 {
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.15), rgba(139, 0, 0, 0.08));
}
.hero-shape-3 {
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.12), rgba(184, 134, 11, 0.1));
}

.hero-badge {
    background: rgba(139, 0, 0, 0.15);
    border: 1px solid rgba(184, 134, 11, 0.4);
    border-radius: 2px;
    color: #d4af37;
    font-family: 'Noto Serif SC', serif;
}

.hero-title { color: #e8e4dc; }
.gradient-text {
    background: linear-gradient(120deg, #d4af37, #b8860b, #8b2500);
    -webkit-background-clip: text;
    background-clip: text;
}

.hero-description {
    color: rgba(201, 196, 188, 0.75);
    font-family: 'Noto Serif SC', serif;
    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: #b8860b;
    margin-bottom: 0.5rem;
}

.stat-number {
    font-family: 'Cinzel', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #d4af37;
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(201, 196, 188, 0.6);
    font-family: 'Noto Serif SC', serif;
    letter-spacing: 0.08em;
}

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

.btn-primary, .btn-cta {
    background: var(--primary-gradient);
    color: #0a0a0a;
    border-radius: 2px;
    border: 1px solid rgba(212, 175, 55, 0.6);
    font-family: 'Cinzel', serif;
}

.btn-glow {
    box-shadow: 0 0 24px rgba(184, 134, 11, 0.45), 0 4px 16px rgba(139, 0, 0, 0.2);
    animation: gold-pulse 3s ease-in-out infinite;
}

@keyframes gold-pulse {
    0%, 100% { box-shadow: 0 0 24px rgba(184, 134, 11, 0.35); }
    50% { box-shadow: 0 0 40px rgba(184, 134, 11, 0.55), 0 0 60px rgba(139, 0, 0, 0.15); }
}

.btn-secondary {
    background: transparent;
    color: #d4af37;
    border: 1px solid rgba(184, 134, 11, 0.55);
    border-radius: 2px;
    font-family: 'Cinzel', serif;
}

.btn-secondary:hover {
    background: rgba(184, 134, 11, 0.1);
    color: #f0d78c;
}

/* 区块通用 */
.features, .highlights, .news, .faq, .reviews {
    background: #000;
    border-top: 1px solid rgba(184, 134, 11, 0.12);
}

.section-badge {
    background: rgba(139, 0, 0, 0.2);
    color: #d4af37;
    border: 1px solid rgba(184, 134, 11, 0.3);
    border-radius: 2px;
}

.section-title { color: #e8e4dc; }
.section-description { color: rgba(201, 196, 188, 0.65); font-family: 'Noto Serif SC', serif; }

/* 卡片 */
.feature-card, .highlight-card, .news-card, .faq-item, .review-card {
    background: rgba(8, 8, 8, 0.95);
    border: 1px solid rgba(184, 134, 11, 0.28);
    border-radius: 2px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.feature-card:hover, .highlight-card:hover, .news-card:hover {
    border-color: rgba(184, 134, 11, 0.5);
    box-shadow: 0 8px 32px rgba(139, 0, 0, 0.1);
}

.feature-icon, .highlight-icon-wrap {
    background: rgba(184, 134, 11, 0.12);
    color: #d4af37;
}

.feature-title, .highlight-card h3, .news-title {
    color: #e8e4dc;
    font-family: 'Cinzel', serif;
}

.feature-description, .highlight-card p, .news-excerpt {
    color: rgba(201, 196, 188, 0.7);
}

.news-tag {
    background: rgba(139, 0, 0, 0.25);
    color: #d4af37;
}

.news-link { color: #b8860b; }
.news-link:hover { color: #d4af37; }

.highlight-large {
    background: linear-gradient(135deg, rgba(8, 8, 8, 0.98), rgba(20, 10, 5, 0.95));
}

.audience-section {
    border-top: 1px solid rgba(184, 134, 11, 0.15);
}

.audience-title { color: #d4af37; }
.audience-tag {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(184, 134, 11, 0.3);
    color: rgba(201, 196, 188, 0.85);
    border-radius: 2px;
}

/* FAQ */
.faq-question {
    color: #e8e4dc;
    font-family: 'Noto Serif SC', serif;
}

.faq-answer p { color: rgba(201, 196, 188, 0.72); }

.faq-item.active {
    border-color: rgba(184, 134, 11, 0.5);
}

/* 评价 */
.rating-summary {
    background: rgba(8, 8, 8, 0.9);
    border: 1px solid rgba(184, 134, 11, 0.3);
    border-radius: 2px;
}

.score-number { color: #d4af37; font-family: 'Cinzel', serif; }
.score-stars { color: #b8860b; }
.bar-fill { background: var(--primary-gradient); }
.rating-tag {
    background: rgba(184, 134, 11, 0.1);
    color: #c9c4bc;
    border: 1px solid rgba(184, 134, 11, 0.25);
}

.review-content { color: rgba(201, 196, 188, 0.8); }
.review-avatar {
    background: linear-gradient(135deg, #8b6914, #8b0000);
    color: #000;
}

.carousel-btn {
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(184, 134, 11, 0.4);
    color: #b8860b;
}

/* CTA */
.cta-section {
    background: linear-gradient(180deg, #000 0%, #0a0505 100%);
    border-top: 1px solid rgba(184, 134, 11, 0.25);
}

.cta-content h2 {
    color: #e8e4dc;
    font-family: 'Cinzel', serif;
}

.cta-content p { color: rgba(201, 196, 188, 0.7); }

/* 页脚 */
.footer {
    background: #000;
    border-top: 1px solid rgba(184, 134, 11, 0.3);
}

.footer-column h4 {
    color: #b8860b;
    font-family: 'Cinzel', serif;
    letter-spacing: 0.1em;
}

.footer-column a, .footer-description {
    color: rgba(201, 196, 188, 0.6);
}

.footer-column a:hover { color: #d4af37; }
.footer-bottom, .copyright { color: rgba(201, 196, 188, 0.45); }
.social-link {
    border: 1px solid rgba(184, 134, 11, 0.3);
    color: #b8860b;
}

.back-to-top {
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid rgba(184, 134, 11, 0.5);
    color: #b8860b;
    border-radius: 2px;
}

/* 子页 */
.page-header, .article-header {
    background: #000;
    border-bottom: 1px solid rgba(184, 134, 11, 0.2);
}

.article-content, .manual-content, .legal-content {
    background: #000;
    color: rgba(201, 196, 188, 0.85);
}

.article-content h2, .legal-content h2 {
    color: #e8e4dc;
    font-family: 'Cinzel', serif;
}

@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; }
}
