/* ============================================
   西方奇幻小说推介网站 - 主样式表
   ============================================ */

/* ---------- CSS 变量 ---------- */
:root {
    --color-bg-dark: #0d0a08;
    --color-bg-panel: #1a1410;
    --color-bg-card: #221a14;
    --color-bg-hover: #2a1f17;
    --color-gold: #c9a84c;
    --color-gold-bright: #e8c870;
    --color-gold-dim: #8a6f2e;
    --color-text-main: #d4c8b8;
    --color-text-muted: #8a7e6e;
    --color-text-heading: #e8dcc8;
    --color-accent-red: #8b2020;
    --color-accent-blue: #2a4a6a;
    --color-border: #3a2e22;
    --color-border-gold: #5a4a2e;

    --font-heading: 'Cinzel', 'Noto Serif SC', Georgia, serif;
    --font-body: 'EB Garamond', 'Noto Serif SC', Georgia, serif;
    --font-nav: 'Cinzel', 'Noto Sans SC', sans-serif;

    --max-width: 1200px;
    --content-width: 760px;
    --transition: all 0.3s ease;
}

/* ---------- 基础重置 ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.8;
    color: var(--color-text-main);
    background-color: var(--color-bg-dark);
    background-image:
        radial-gradient(ellipse at 20% 0%, rgba(139, 32, 32, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 100%, rgba(42, 74, 106, 0.08) 0%, transparent 50%),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cpath d='M0 0h40v40H0z' fill='none'/%3E%3Cpath d='M20 20m-1 0a1 1 0 1 0 2 0a1 1 0 1 0-2 0' fill='%23c9a84c' fill-opacity='0.03'/%3E%3C/svg%3E");
    min-height: 100vh;
    overflow-x: hidden;
}

a {
    color: var(--color-gold);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--color-gold-bright);
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ---------- 导航栏 ---------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(13, 10, 8, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border-gold);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.navbar-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.navbar-brand {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--color-gold-bright);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.navbar-brand:hover {
    text-decoration: none;
    color: var(--color-gold);
}

.navbar-logo {
    height: 48px;
    width: auto;
    display: block;
}

.navbar-links {
    display: flex;
    gap: 35px;
    list-style: none;
    align-items: center;
}

.navbar-links a {
    font-family: var(--font-nav);
    font-size: 0.85rem;
    color: var(--color-text-main);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 8px 0;
    position: relative;
}

.navbar-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-gold);
    transition: width 0.3s ease;
}

.navbar-links a:hover {
    text-decoration: none;
    color: var(--color-gold-bright);
}

.navbar-links a:hover::after {
    width: 100%;
}

.navbar-links a.active {
    color: var(--color-gold-bright);
}

.navbar-links a.active::after {
    width: 100%;
}

/* 移动端汉堡菜单 */
.navbar-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
}

.navbar-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-gold);
    transition: var(--transition);
}

/* ---------- 页面通用容器 ---------- */
.page-wrapper {
    padding-top: 64px;
    min-height: 100vh;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 30px;
}

.content-container {
    max-width: var(--content-width);
    margin: 0 auto;
    padding: 0 30px;
}

/* ---------- 首页 Hero 区 ---------- */
.hero {
    position: relative;
    min-height: calc(100vh - 64px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 60px 30px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at center, rgba(201, 168, 76, 0.06) 0%, transparent 60%),
        linear-gradient(180deg, rgba(13, 10, 8, 0.4) 0%, rgba(13, 10, 8, 0.9) 100%);
    z-index: 0;
}

/* 装饰性烟雾/粒子效果 */
.hero-bg::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 120%;
    height: 140%;
    background:
        radial-gradient(circle at 30% 40%, rgba(139, 32, 32, 0.06) 0%, transparent 25%),
        radial-gradient(circle at 70% 60%, rgba(42, 74, 106, 0.06) 0%, transparent 25%);
    animation: drift 20s ease-in-out infinite alternate;
}

@keyframes drift {
    from { transform: translate(0, 0) scale(1); }
    to { transform: translate(-30px, 20px) scale(1.05); }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-eyebrow {
    font-family: var(--font-nav);
    font-size: 0.8rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--color-gold-dim);
    margin-bottom: 20px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    color: var(--color-gold-bright);
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 2px 30px rgba(201, 168, 76, 0.2);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--color-text-muted);
    font-style: italic;
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-divider {
    width: 60px;
    height: 1px;
    background: var(--color-gold);
    margin: 0 auto 40px;
    position: relative;
}

.hero-divider::before,
.hero-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 6px;
    height: 6px;
    background: var(--color-gold);
    transform: translateY(-50%) rotate(45deg);
}

.hero-divider::before { left: -18px; }
.hero-divider::after { right: -18px; }

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

/* ---------- 按钮 ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 36px;
    font-family: var(--font-nav);
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid var(--color-gold);
    background: transparent;
    color: var(--color-gold);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.15), transparent);
    transition: left 0.5s ease;
}

.btn:hover {
    background: rgba(201, 168, 76, 0.08);
    color: var(--color-gold-bright);
    text-decoration: none;
    box-shadow: 0 0 20px rgba(201, 168, 76, 0.15);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--color-gold);
    color: var(--color-bg-dark);
}

.btn-primary:hover {
    background: var(--color-gold-bright);
    color: var(--color-bg-dark);
}

/* ---------- 通用 Section ---------- */
section {
    padding: 80px 0;
    position: relative;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-text-heading);
    text-align: center;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--color-text-muted);
    font-style: italic;
    margin-bottom: 50px;
}

/* 图片页标题与副标题统一为金色，与其他页面主标题一致 */
.gallery .section-title {
    color: var(--color-gold-bright);
}
.gallery .section-subtitle {
    color: var(--color-gold);
}

.section-divider {
    width: 80px;
    height: 1px;
    background: var(--color-border-gold);
    margin: 0 auto 50px;
    position: relative;
}

.section-divider::after {
    content: '\2726';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--color-bg-dark);
    color: var(--color-gold);
    padding: 0 12px;
    font-size: 0.8rem;
}

/* ---------- 小说简介区 ---------- */
.synopsis {
    background: var(--color-bg-panel);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.synopsis-text {
    max-width: var(--content-width);
    margin: 0 auto;
    text-align: justify;
    font-size: 1.1rem;
    line-height: 2;
    color: var(--color-text-main);
}

.synopsis-text p {
    margin-bottom: 1.5em;
}

.synopsis-text p:first-of-type::first-letter {
    font-family: var(--font-heading);
    font-size: 3.5em;
    float: left;
    line-height: 0.8;
    padding: 8px 12px 0 0;
    color: var(--color-gold);
}

/* ---------- 主角展示区 ---------- */
.character-showcase {
    text-align: center;
}

.character-frame {
    display: inline-block;
    position: relative;
    padding: 15px;
    border: 1px solid var(--color-border-gold);
    background: var(--color-bg-card);
    margin-bottom: 30px;
    max-width: 400px;
}

.character-frame::before,
.character-frame::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid var(--color-gold);
}

.character-frame::before {
    top: -1px;
    left: -1px;
    border-right: none;
    border-bottom: none;
}

.character-frame::after {
    bottom: -1px;
    right: -1px;
    border-left: none;
    border-top: none;
}

.character-image {
    width: 360px;
    height: 480px;
    object-fit: cover;
    background: var(--color-bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}

.character-placeholder {
    width: 360px;
    height: 480px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-bg-dark), var(--color-bg-card));
    color: var(--color-text-muted);
    font-size: 0.9rem;
    gap: 12px;
}

.character-placeholder .icon {
    font-size: 3rem;
    color: var(--color-gold-dim);
}

.character-name {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--color-gold-bright);
    margin-bottom: 10px;
}

.character-desc {
    max-width: 500px;
    color: var(--color-text-muted);
    font-style: italic;
    line-height: 1.8;
}

/* ---------- 版本入口卡片区 ---------- */
.editions {
    background: var(--color-bg-panel);
    border-top: 1px solid var(--color-border);
}

.editions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.edition-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.edition-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.edition-card:hover {
    border-color: var(--color-border-gold);
    background: var(--color-bg-hover);
    transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.edition-card:hover::before {
    transform: scaleX(1);
}

.edition-icon {
    font-size: 2.5rem;
    color: var(--color-gold);
    margin-bottom: 20px;
}

.edition-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--color-text-heading);
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.edition-desc {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-bottom: 25px;
    line-height: 1.7;
}

.edition-link {
    font-family: var(--font-nav);
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-gold);
}

/* ---------- 阅读页（章节页）通用 ---------- */
.reading-page {
    padding-top: 100px;
    padding-bottom: 80px;
}

.reading-header {
    text-align: center;
    margin-bottom: 60px;
}

.reading-header h1 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-gold-bright);
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.reading-header .subtitle {
    color: var(--color-text-muted);
    font-style: italic;
}

/* 章节目录列表 */
.chapter-list {
    list-style: none;
    max-width: var(--content-width);
    margin: 0 auto;
}

.chapter-list li {
    border-bottom: 1px solid var(--color-border);
}

.chapter-list li:first-child {
    border-top: 1px solid var(--color-border);
}

.chapter-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    color: var(--color-text-main);
    transition: var(--transition);
}

.chapter-list a:hover {
    background: var(--color-bg-card);
    color: var(--color-gold-bright);
    text-decoration: none;
    padding-left: 30px;
}

.chapter-number {
    font-family: var(--font-heading);
    color: var(--color-gold-dim);
    font-size: 0.9rem;
    min-width: 60px;
}

.chapter-title {
    flex: 1;
    padding: 0 20px;
}

.chapter-status {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ---------- 章节阅读页 ---------- */
.chapter-page {
    padding-top: 90px;
    padding-bottom: 80px;
}

.chapter-nav-top {
    max-width: var(--content-width);
    margin: 0 auto 40px;
    padding: 0 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.chapter-nav-top a {
    font-family: var(--font-nav);
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.chapter-content {
    max-width: var(--content-width);
    margin: 0 auto;
    padding: 0 30px;
}

.chapter-content h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--color-gold-bright);
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.chapter-content .chapter-text {
    font-size: 1.1rem;
    line-height: 2.1;
    text-align: justify;
    color: var(--color-text-main);
}

.chapter-content .chapter-text p {
    margin-bottom: 1.5em;
    text-indent: 2em;
}

/* 章节正文首字下沉 */
.chapter-content .chapter-text p:first-of-type::first-letter {
    font-family: var(--font-heading);
    font-size: 3.5em;
    float: left;
    line-height: 0.8;
    padding: 8px 12px 0 0;
    color: var(--color-gold);
}

/* 章节注释区 */
.chapter-notes {
    margin-top: 60px;
    padding: 30px;
    background: var(--color-bg-panel);
    border: 1px solid var(--color-border);
    border-radius: 2px;
}

.chapter-notes h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--color-gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--color-border-gold);
}

.chapter-notes dt {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: var(--color-gold-bright);
    margin-bottom: 4px;
    margin-top: 14px;
}

.chapter-notes dt:first-child {
    margin-top: 0;
}

.chapter-notes dd {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    padding-left: 0;
}

/* 章节底部导航 */
.chapter-nav-bottom {
    max-width: var(--content-width);
    margin: 60px auto 0;
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--color-border);
}

.chapter-nav-bottom .btn {
    padding: 10px 28px;
    font-size: 0.75rem;
}

/* ---------- 角色卡（左图右文） ---------- */
.character-card {
    display: flex;
    gap: 40px;
    align-items: stretch;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    padding: 30px;
    margin: 0 auto 40px;
    max-width: 900px;
    transition: var(--transition);
    position: relative;
}

.character-card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    width: 24px;
    height: 24px;
    border-top: 2px solid var(--color-gold);
    border-left: 2px solid var(--color-gold);
}

.character-card::after {
    content: '';
    position: absolute;
    bottom: -1px;
    right: -1px;
    width: 24px;
    height: 24px;
    border-bottom: 2px solid var(--color-gold);
    border-right: 2px solid var(--color-gold);
}

.character-card:hover {
    border-color: var(--color-border-gold);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    transform: translateY(-2px);
}

.character-card-image {
    flex: 0 0 42%;
    max-width: 42%;
    position: relative;
}

.character-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border: 1px solid var(--color-border-gold);
    background: var(--color-bg-dark);
}

.character-card-info {
    flex: 1;
    padding: 8px 4px;
    display: flex;
    flex-direction: column;
}

.character-card-name {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-gold-bright);
    margin-bottom: 6px;
    letter-spacing: 6px;
}

.character-card-role {
    font-family: var(--font-nav);
    font-size: 0.85rem;
    color: var(--color-gold-dim);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 24px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--color-border-gold);
}

.character-card-details {
    margin: 0;
}

.character-card-details dt {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: var(--color-gold);
    letter-spacing: 3px;
    margin-top: 18px;
    margin-bottom: 8px;
    padding-left: 14px;
    border-left: 2px solid var(--color-gold-dim);
}

.character-card-details dt:first-child {
    margin-top: 0;
}

.character-card-details dd {
    color: var(--color-text-main);
    font-size: 1.05rem;
    line-height: 1.9;
    text-align: justify;
    padding-left: 16px;
}

@media (max-width: 768px) {
    .character-card {
        flex-direction: column;
        padding: 20px;
        gap: 24px;
    }
    .character-card-image {
        flex: 0 0 auto;
        max-width: 100%;
    }
    .character-card-name {
        font-size: 1.5rem;
        letter-spacing: 4px;
    }
    .character-card-role {
        font-size: 0.75rem;
        margin-bottom: 16px;
    }
    .character-card-details dt,
    .character-card-details dd {
        font-size: 0.95rem;
    }
}

/* ---------- 关于页面 ---------- */
.about-section {
    margin-bottom: 30px;
    margin-top: 20px;
}

.about-heading {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--color-gold);
    margin-bottom: 20px;
    margin-top: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--color-border-gold);
    letter-spacing: 1px;
}

.about-content {
    padding-left: 10px;
    font-size: 1.05rem;
    line-height: 2;
    color: var(--color-text-main);
}

.about-content a {
    color: var(--color-gold);
    word-break: break-all;
}

/* ---------- 广告卡片（站长推荐） ---------- */
.ad-card {
    display: block;
    text-decoration: none;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border-gold);
    border-radius: 10px;
    padding: 28px 30px;
    margin-top: 5px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.ad-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--color-gold-bright), var(--color-gold-dim));
}

.ad-card:hover {
    background: var(--color-bg-hover);
    border-color: var(--color-gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(201, 168, 76, 0.15);
}

.ad-card-tag {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: var(--color-gold-dim);
    border: 1px solid var(--color-border-gold);
    border-radius: 4px;
    padding: 2px 10px;
    margin-bottom: 14px;
}

.ad-card-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-gold);
    margin-bottom: 6px;
    letter-spacing: 1px;
}

.ad-card-desc {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin-bottom: 16px;
}

.ad-card-tools {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}

.ad-card-tools span {
    font-size: 0.82rem;
    color: var(--color-text-main);
    background: var(--color-bg-panel);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    padding: 3px 12px;
}

.ad-card-cta {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: var(--color-gold-bright);
    letter-spacing: 1px;
}

.ad-card:hover .ad-card-cta {
    text-decoration: underline;
}

/* ---------- 页脚 ---------- */
footer {
    background: var(--color-bg-panel);
    border-top: 1px solid var(--color-border-gold);
    padding: 40px 30px;
    text-align: center;
}

footer p {
    color: var(--color-text-muted);
    font-size: 0.85rem;
    line-height: 1.8;
}

footer .footer-brand {
    font-family: var(--font-heading);
    color: var(--color-gold-dim);
    letter-spacing: 2px;
    margin-bottom: 8px;
}

/* ---------- 图片展示页 ---------- */
.gallery {
    background: var(--color-bg-panel);
    border-top: 1px solid var(--color-border);
    padding: 80px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.gallery-item {
    margin: 0;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 6px;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
}

.gallery-item figcaption {
    padding: 12px 16px;
    font-size: 0.9rem;
    color: var(--color-text-muted);
    text-align: center;
}

/* ---------- 响应式 ---------- */
@media (max-width: 768px) {
    .navbar-toggle {
        display: flex;
    }

    .navbar-links {
        position: fixed;
        top: 64px;
        left: 0;
        width: 100%;
        flex-direction: column;
        background: rgba(13, 10, 8, 0.98);
        padding: 20px;
        gap: 15px;
        transform: translateY(-100%);
        opacity: 0;
        transition: var(--transition);
        pointer-events: none;
        border-bottom: 1px solid var(--color-border-gold);
    }

    .navbar-links.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .editions-grid {
        grid-template-columns: 1fr;
    }

    .character-image,
    .character-placeholder {
        width: 280px;
        height: 380px;
    }

    section {
        padding: 50px 0;
    }

    .reading-header h1 {
        font-size: 1.8rem;
    }

    .chapter-nav-top,
    .chapter-nav-bottom {
        flex-direction: column;
        gap: 15px;
    }
}
