/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@600;700&family=Lato:wght@300;400;600;700&display=swap');

:root {
    /* Dark Mode Colors */
    --primary-warm: #ff8c42;
    --primary-gold: #ffd700;
    --secondary-teal: #4ecdc4;
    --accent-dark-teal: #376c69;
    --bg-dark: #0a1821;
    --bg-mid: #1a2f3f;
    --text-light: #e8f4f8;
    --text-muted: rgba(232, 244, 248, 0.6);
    --transition-fast: 0.3s;
    --transition-med: 0.5s;
    --warning-accent: #ff6b6b;

    /* Standardized Spacing Variables - Optimized for all zoom levels */
    --section-spacing: clamp(4rem, 16vh, 7rem);
    --section-padding-x: clamp(1rem, 5vw, 5rem);
    --container-max-width: 1200px;
    --content-gap: clamp(1.5rem, 3vw, 3rem);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-mid) 50%, var(--bg-dark) 100%);
    color: var(--text-light);
    overflow-x: hidden;
    line-height: 1.6;
    height: 100%;
    position: relative;
    cursor: default;
}

h1, h2, h3, h4, .logo {
    font-family: 'Cinzel', 'Georgia', serif;
    font-weight: 600;
}

/* PARTICLES */
.particles {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: visible;
}

.particle-layer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    box-sizing: border-box;
    will-change: transform;
    z-index: 0;
}

.mote {
    position: absolute;
    border-radius: 50%;
    will-change: transform;
}

/* NAVIGATION */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 0.5rem var(--section-padding-x);
    background: rgba(10, 24, 33, 0.95);
    backdrop-filter: blur(10px);
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(78, 205, 196, 0.1);
}

.logo img {
    height: clamp(40px, 8vw, 50px);
    width: auto;
}

.nav-links {
    display: flex;
    gap: 0.5rem;
    list-style: none;
}

.nav-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(78, 205, 196, 0.2);
    border-radius: 30px;
    background: rgba(10, 24, 33, 0.4);
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all var(--transition-fast) ease;
    cursor: pointer;
    white-space: nowrap;
}

.nav-btn:hover, .nav-btn:focus {
    transform: translateY(-5px);
    border-color: var(--primary-warm);
    box-shadow: 0 12px 30px rgba(255, 140, 66, 0.25);
    color: var(--bg-dark);
    background: linear-gradient(135deg, var(--primary-warm), var(--primary-gold));
}

.nav-btn svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
}

.nav-btn span {
    transition: all var(--transition-fast);
}

/* Mobile menu toggle button */
.mobile-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 2px solid rgba(78, 205, 196, 0.2);
    border-radius: 8px;
    background: rgba(10, 24, 33, 0.4);
    color: var(--text-light);
    cursor: pointer;
    transition: all var(--transition-fast);
    align-items: center;
    justify-content: center;
    position: relative;
}

.mobile-menu-toggle:hover {
    border-color: var(--primary-warm);
    background: rgba(255, 140, 66, 0.1);
}

.mobile-menu-toggle svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    fill: none;
}

/* Hamburger icon animation */
.hamburger {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hamburger span {
    width: 20px;
    height: 2px;
    background: currentColor;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active .hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active .hamburger span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* SECTIONS - Standardized Spacing */
section {
    position: relative;
    z-index: 3;
    min-height: auto;
    padding: var(--section-spacing) var(--section-padding-x);
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 auto;
}

/* HERO */
.hero {
    min-height: 100vh;
    padding: var(--section-spacing) var(--section-padding-x);
    text-align: center;
    align-items: center;
}

/* Ensure sections don't get too far apart when zoomed out */
@media (min-height: 1200px) {
    section {
        min-height: auto;
        padding: 5rem var(--section-padding-x);
    }

    .hero {
        min-height: 100vh;
        max-height: 100vh;
        padding: 5rem var(--section-padding-x);
    }
}

.hero h1 {
    font-size: clamp(2rem, 8vw, 5rem);
    margin-bottom: 1rem;
    color: var(--primary-warm);
    letter-spacing: 2px;
    text-shadow: 0 0 30px rgba(255, 140, 66, 0.3);
}

.hero .tagline {
    font-size: clamp(0.95rem, 3vw, 1.5rem);
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.hero .cta {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--primary-warm), var(--primary-gold));
    color: var(--bg-dark);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 50px;
    transition: all var(--transition-fast);
    box-shadow: 0 10px 30px rgba(255, 140, 66, 0.25);
}

.hero .cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 140, 66, 0.4);
}

/* ABOUT */
.about-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    width: 100%;
    background: rgba(10, 24, 33, 0.5);
    padding: var(--content-gap);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(78, 205, 196, 0.2);
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: var(--content-gap);
    align-items: flex-start;
}

.about-container h2 {
    grid-column: 1 / -1;
    font-size: clamp(2rem, 5vw, 2.8rem);
    color: var(--secondary-teal);
    margin-bottom: 1.5rem;
    text-align: center;
}

.about-container p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: rgba(232, 244, 248, 0.95);
}

.about-container p:last-child {
    margin-bottom: 0;
}

.about-photo {
    transition: all var(--transition-fast);
    width: 100%;
    max-width: 300px;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid rgba(78, 205, 196, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    flex-shrink: 0;
}

.about-photo:hover {
    transform: translateY(-8px);
    box-shadow: 0 40px 80px rgba(255, 140, 66, 0.2);
}

.about-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* BOOKS SECTION */
.section-header {
    text-align: center;
    margin-bottom: var(--content-gap);
}

.section-header h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--secondary-teal);
    margin-bottom: 1rem;
    letter-spacing: 1px;
    text-shadow: 0 0 15px rgba(78, 205, 196, 0.2);
}

.section-header p {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* CAROUSEL */
.carousel-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    width: 100%;
}

.carousel-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    background: rgba(10, 24, 33, 0.3);
    border: 1px solid rgba(78, 205, 196, 0.15);
}

.carousel-track {
    display: flex;
    transition: transform var(--transition-med) cubic-bezier(0.4, 0, 0.2, 1);
    scroll-snap-type: x mandatory;
}

.book-card {
    flex: 0 0 100%;
    padding: 3rem;
    display: grid;
    grid-template-columns: minmax(250px, 0.45fr) 1fr;
    gap: 3rem;
    align-items: flex-start;
    scroll-snap-align: start;
    backdrop-filter: blur(10px);
}

/* BOOK COVER */
.book-cover-container {
    position: relative;
    display: flex;
    justify-content: center;
}

.book-cover {
    width: 100%;
    max-width: 300px;
    aspect-ratio: 2/3;
    background: linear-gradient(135deg, rgba(26, 47, 63, 0.8), rgba(10, 24, 33, 0.8));
    border: 2px solid var(--accent-dark-teal);
    border-radius: 8px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    position: relative;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    transition: all var(--transition-med);
}

.book-cover:hover {
    transform: translateY(-8px);
    box-shadow: 0 40px 80px rgba(255, 140, 66, 0.2);
}

.book-cover-placeholder {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
}

.book-cover-icon {
    width: 80px;
    height: 80px;
    opacity: 0.6;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.book-cover-status {
    font-size: 0.9rem;
    color: var(--primary-gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.book-progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: var(--progress-height, 0%);
    background: linear-gradient(to top, var(--primary-warm), var(--primary-gold));
    opacity: 0.9;
    transition: height var(--transition-med);
    z-index: 0;
}

/* BOOK INFO */
.book-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    min-width: 0;
}

.book-header {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.book-meta {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.book-badge {
    font-size: 0.75rem;
    padding: 0.5rem 1rem;
    background: rgba(78, 205, 196, 0.15);
    border: 1px solid rgba(78, 205, 196, 0.3);
    border-radius: 20px;
    color: var(--secondary-teal);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.book-badge.series {
    background: rgba(255, 140, 66, 0.1);
    border-color: rgba(255, 140, 66, 0.3);
    color: var(--primary-warm);
}

.book-badge.warning {
    background: rgba(255, 107, 107, 0.1);
    border-color: rgba(255, 107, 107, 0.3);
    color: #ff8a8a;
}

.book-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 140, 66, 0.35);
    border-color: var(--primary-warm);
    color: var(--primary-warm);
}

.book-title {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: var(--primary-warm);
    line-height: 1.2;
    margin: 0;
}

.book-synopsis {
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(232, 244, 248, 0.9);
    margin: 0;
}

/* BOOK STATUS TRACKER */
.book-status-tracker {
    padding: 1.5rem;
    background: rgba(78, 205, 196, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(78, 205, 196, 0.15);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.status-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.status-title {
    font-size: 0.9rem;
    color: #4ecdc4;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.status-percentage {
    font-size: 1.5rem;
    color: #ff8c42;
    font-weight: 700;
}

.status-timeline {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.5rem;
    position: relative;
    padding: 0 10px;
    width: 100%;
    min-height: 80px;
}

.status-timeline::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 50px;
    right: 50px;
    height: 3px;
    background: rgba(78, 205, 196, 0.15);
    z-index: 0;
}

.status-progress-bar {
    content: '';
    position: absolute;
    top: 20px;
    left: calc(100% / 12);  /* Start at center of first icon (1/6 divided by 2) */
    height: 3px;
    background: linear-gradient(to right, #ff6b6b, #ff8c42, #ffd700);
    z-index: 1;
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 10px rgba(255, 140, 66, 0.5);
}

.status-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    z-index: 2;
}

.status-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(10, 24, 33, 0.9);
    border: 3px solid rgba(78, 205, 196, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    position: relative;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.status-step.completed .status-icon {
    background: linear-gradient(135deg, #ff8c42, #ffd700);
    border-color: #ff8c42;
    box-shadow: 0 4px 20px rgba(255, 140, 66, 0.5);
    transform: scale(1.1);
}

.status-step.active .status-icon {
    background: rgba(10, 24, 33, 0.9);
    border-color: #4ecdc4;
    border-width: 3px;
    animation: pulse-active 2s infinite;
    box-shadow: 0 4px 20px rgba(78, 205, 196, 0.4);
}

@keyframes pulse-active {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(78, 205, 196, 0.4), 0 0 0 0 rgba(78, 205, 196, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(78, 205, 196, 0.4), 0 0 0 12px rgba(78, 205, 196, 0);
    }
}

.status-step.published .status-icon {
    background: linear-gradient(135deg, #ffd700, #4ecdc4);
    border-color: #ffd700;
    box-shadow: 0 4px 25px rgba(255, 215, 0, 0.6);
    transform: scale(1.15);
}

.status-icon svg {
    width: 20px;
    height: 20px;
    stroke: rgba(232, 244, 248, 0.6);
    fill: none;
    transition: all 0.3s ease;
}

.status-step.completed .status-icon svg,
.status-step.published .status-icon svg {
    stroke: #0a1821;
    transform: scale(1.1);
}

.status-step.active .status-icon svg {
    stroke: #4ecdc4;
    filter: drop-shadow(0 0 2px #4ecdc4);
}

.status-label {
    font-size: 0.7rem;
    text-align: center;
    color: rgba(232, 244, 248, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.status-step.completed .status-label,
.status-step.published .status-label {
    color: #ff8c42;
    font-weight: 700;
}

.status-step.active .status-label {
    color: #4ecdc4;
    font-weight: 700;
}

.status-step.published .status-label {
    color: #ffd700;
}

.status-details {
    display: flex;
    justify-content: space-around;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(78, 205, 196, 0.1);
    flex-wrap: wrap;
}

.status-metric {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.metric-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ff8c42;
}

.metric-label {
    font-size: 0.7rem;
    color: rgba(232, 244, 248, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* CONTENT WARNINGS */
.content-warnings {
    padding: 1rem;
    background: rgba(255, 107, 107, 0.08);
    border-left: 3px solid #ff8a8a;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.warnings-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #ff8a8a;
    font-weight: 600;
}

.warnings-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: rgba(232, 244, 248, 0.85);
}

.warning-tag {
    position: relative;
    padding: 0.25rem 0.75rem;
    background: rgba(255, 107, 107, 0.15);
    border-radius: 12px;
    border: 1px solid rgba(255, 107, 107, 0.25);
    transition: all var(--transition-fast);
}

.warning-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 107, 0.35);
    border-color: rgba(255, 107, 107, 0.5);
    background: rgba(255, 107, 107, 0.3);
}

.warning-tag .tooltip {
    position: absolute;
    padding: 16px;
    visibility: hidden;
    opacity: 0;
    bottom: 125%;
    left: 50%;
    width: max-content;
    max-width: 280px;
    transform: translateX(-50%);
    padding: 0.5rem 0.75rem;
    color: rgba(232, 244, 248, 0.85);
    backdrop-filter: blur(10px);
    background: linear-gradient(135deg, rgba(71, 53, 64, 0.95), rgba(49, 35, 43, 0.95));
    border: 2px solid rgba(255, 107, 107, 0.25);
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    text-align: left;
    font-size: 0.85rem;
    line-height: 1.4;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    z-index: 1;
}

.warning-tag:hover .tooltip {
    visibility: visible;
    opacity: 1;
    transform: translateX(-50%) translateY(-5px);
}

/* METADATA GRID */
.book-meta-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(78, 205, 196, 0.08);
    border-radius: 8px;
}

.meta-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.meta-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.meta-value {
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 600;
}

.meta-value.status {
    color: var(--secondary-teal);
    font-size: 1rem;
    font-weight: 600;
}

.meta-value.progress {
    font-size: 1rem;
    color: var(--primary-warm);
    font-weight: 600;
}

/* CHARACTER SPOTLIGHT */
.characters-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.characters-label {
    font-size: 0.85rem;
    color: var(--secondary-teal);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.characters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.character-card {
    padding: 1rem;
    background: rgba(78, 205, 196, 0.08);
    border: 1px solid rgba(78, 205, 196, 0.2);
    border-radius: 8px;
    transition: all var(--transition-fast);
    cursor: default;
}

.character-card:hover {
    background: rgba(78, 205, 196, 0.12);
    border-color: rgba(78, 205, 196, 0.35);
    transform: translateY(-2px);
}

.character-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-warm);
    margin-bottom: 0.25rem;
}

.character-role {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-bottom: 0.5rem;
}

.character-desc {
    font-size: 0.8rem;
    line-height: 1.5;
    color: rgba(232, 244, 248, 0.8);
}

/* SAMPLE CHAPTER */
.sample-chapter {
    padding: 1.5rem;
    background: rgba(78, 205, 196, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(78, 205, 196, 0.15);
}

.sample-chapter h4 {
    font-size: 0.9rem;
    color: var(--secondary-teal);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sample-text {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(232, 244, 248, 0.85);
    font-style: italic;
    margin-bottom: 1rem;
    padding: 1rem;
    background: rgba(10, 24, 33, 0.3);
    border-left: 2px solid var(--primary-warm);
    border-radius: 4px;
}

.btn {
    padding: 0.9rem 2rem;
    background: linear-gradient(135deg, var(--primary-warm), var(--primary-gold));
    color: var(--bg-dark);
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
    display: inline-block;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 140, 66, 0.35);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--secondary-teal);
    color: var(--secondary-teal);
}

.btn-secondary:hover {
    background: rgba(78, 205, 196, 0.1);
    border-color: var(--primary-warm);
    color: var(--primary-warm);
}

.book-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* CAROUSEL CONTROLS */
.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border: 2px solid rgba(78, 205, 196, 0.3);
    background: rgba(10, 24, 33, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    cursor: pointer;
    transition: all var(--transition-fast);
    font-size: 1.2rem;
}

.carousel-btn:hover {
    border-color: var(--primary-warm);
    background: rgba(255, 140, 66, 0.1);
    color: var(--primary-warm);
    transform: translateY(-2px);
}

.carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.carousel-indicators {
    display: flex;
    gap: 0.8rem;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(78, 205, 196, 0.2);
    border: 2px solid rgba(78, 205, 196, 0.3);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.indicator.active {
    background: var(--secondary-teal);
    border-color: var(--secondary-teal);
    width: 30px;
    border-radius: 5px;
}

.indicator:hover {
    background: rgba(78, 205, 196, 0.4);
}

/* NEWS/UPDATES */
.news-section {
    min-height: auto;
}

.news-section h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--secondary-teal);
    text-align: center;
    margin-bottom: var(--content-gap);
    letter-spacing: 1px;
}

.news-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    width: 100%;
}

.news-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: var(--content-gap);
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.7rem 1.5rem;
    background: rgba(10, 24, 33, 0.4);
    border: 2px solid rgba(78, 205, 196, 0.2);
    border-radius: 50px;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-warm), var(--primary-gold));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.filter-btn:hover {
    transform: translateY(-3px) scale(1.05);
    border-color: var(--primary-warm);
    background: rgba(255, 140, 66, 0.15);
    color: var(--primary-warm);
    box-shadow: 0 5px 15px rgba(255, 140, 66, 0.2);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--primary-warm), var(--primary-gold));
    color: var(--bg-dark);
    border-color: transparent;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(255, 140, 66, 0.4);
    transform: translateY(-2px);
}

.filter-btn.active:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 140, 66, 0.5);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
    width: 100%;
}

.news-post {
    background: rgba(10, 24, 33, 0.5);
    border-radius: 12px;
    border: 1px solid rgba(78, 205, 196, 0.15);
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    position: relative;
}

.news-post::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%,
                rgba(78, 205, 196, 0.12) 0%,
                transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 12px;
}

.news-post:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--secondary-teal);
    box-shadow: 0 20px 50px rgba(78, 205, 196, 0.3),
                0 0 0 1px rgba(78, 205, 196, 0.2);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.news-post:nth-child(1) { animation-delay: 0.05s; }
.news-post:nth-child(2) { animation-delay: 0.1s; }
.news-post:nth-child(3) { animation-delay: 0.15s; }
.news-post:nth-child(4) { animation-delay: 0.2s; }
.news-post:nth-child(5) { animation-delay: 0.25s; }
.news-post:nth-child(6) { animation-delay: 0.3s; }

.news-post:hover {
    transform: translateY(-15px) scale(1.03);
    border-color: var(--secondary-teal);
    box-shadow: 0 25px 60px rgba(78, 205, 196, 0.4),
                0 0 0 1px rgba(78, 205, 196, 0.3),
                0 10px 30px rgba(0, 0, 0, 0.3);
}

.news-post:hover::before {
    opacity: 1;
}

.news-post.highlight {
    grid-column: span 2;
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.15), rgba(255, 140, 66, 0.1));
    border: 2px solid rgba(78, 205, 196, 0.3);
    position: relative;
    overflow: hidden;
}

.news-post.highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-teal), var(--primary-warm));
}

.news-post.highlight .post-title {
    font-size: 1.8rem;
    color: var(--secondary-teal);
}

.news-post.highlight .post-excerpt {
    font-size: 1.05rem;
    line-height: 1.8;
}

.news-post.highlight:hover {
    border-color: var(--primary-warm);
    box-shadow: 0 20px 50px rgba(78, 205, 196, 0.3);
}

.post-category {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(78, 205, 196, 0.15);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--secondary-teal);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(78, 205, 196, 0.3);
}

.post-category:hover {
    background: rgba(78, 205, 196, 0.25);
    border-color: var(--secondary-teal);
    transform: translateY(-2px);
}

.post-category.progress {
    background: rgba(255, 140, 66, 0.15);
    color: var(--primary-warm);
    border-color: rgba(255, 140, 66, 0.3);
}

.post-category.progress:hover {
    background: rgba(255, 140, 66, 0.25);
    border-color: var(--primary-warm);
}

.post-category.event {
    background: rgba(255, 215, 0, 0.15);
    color: var(--primary-gold);
}

.post-category.behind-scenes {
    background: rgba(78, 205, 196, 0.15);
    color: var(--secondary-teal);
}

.post-category.spotlight {
    background: rgba(255, 107, 107, 0.15);
    color: var(--warning-accent);
}

.post-date {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.post-title {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.news-post:hover .post-title {
    color: var(--secondary-teal);
}

.post-excerpt {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(232, 244, 248, 0.8);
    margin-bottom: 1.5rem;
    transition: color 0.3s ease;
}

.news-post:hover .post-excerpt {
    color: rgba(232, 244, 248, 0.95);
}

.post-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--secondary-teal);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
}

.post-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-warm);
    transition: width 0.3s ease;
}

.post-link:hover {
    color: var(--primary-warm);
    gap: 0.8rem;
}

.post-link:hover::after {
    width: calc(100% - 1.5rem);
}

.post-link svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    transition: transform 0.3s ease;
}

.post-link:hover svg {
    transform: translateX(4px);
}

.news-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.news-carousel-btn {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border: 2px solid rgba(78, 205, 196, 0.3);
    background: rgba(10, 24, 33, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    cursor: pointer;
    transition: all var(--transition-fast);
    font-size: 1.3rem;
    align-self: center;
}

.news-carousel-btn:hover:not(:disabled) {
    transform: scale(1.1);
    border-color: var(--primary-warm);
    background: rgba(255, 140, 66, 0.2);
    box-shadow: 0 8px 20px rgba(255, 140, 66, 0.3);
}

.news-carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* NEWSLETTER */
.newsletter-container {
    max-width: 700px;
    margin: 0 auto;
    width: 100%;
    background: rgba(10, 24, 33, 0.5);
    padding: var(--content-gap);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(78, 205, 196, 0.2);
    text-align: center;
}

.newsletter-container h2 {
    font-size: clamp(2rem, 5vw, 2.8rem);
    color: var(--secondary-teal);
    margin-bottom: 1rem;
}

.newsletter-container p {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.newsletter-form {
    display: flex;
    gap: 0.8rem;
    max-width: 500px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-form input {
    flex: 1 1 200px;
    min-width: 150px;
    padding: 1rem;
    background: rgba(10, 24, 33, 0.6);
    border: 2px solid rgba(78, 205, 196, 0.3);
    border-radius: 50px;
    color: var(--text-light);
    font-size: 1rem;
    transition: all var(--transition-fast);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--secondary-teal);
    background: rgba(10, 24, 33, 0.8);
}

.newsletter-form input::placeholder {
    color: rgba(232, 244, 248, 0.4);
}

.newsletter-form button {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-warm), var(--primary-gold));
    color: var(--bg-dark);
    border: none;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--transition-fast);
    letter-spacing: 0.3px;
    font-size: 0.95rem;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 140, 66, 0.3);
}

/* SOCIAL */
.social-section {
    text-align: center;
    min-height: auto;
}

.social-section h2 {
    font-size: clamp(2rem, 5vw, 2.8rem);
    color: var(--text-light);
    margin-bottom: var(--content-gap);
    letter-spacing: 1px;
}

.social-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    padding: 20px;
}

.social-btn {
    width: 65px;
    height: 65px;
    border: 2px solid rgba(78, 205, 196, 0.2);
    border-radius: 50%;
    background: rgba(10, 24, 33, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    text-decoration: none;
    font-size: 1.8rem;
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.social-btn:hover {
    transform: translateY(-5px);
    border-color: var(--primary-warm);
    box-shadow: 0 12px 30px rgba(255, 140, 66, 0.25);
    color: var(--bg-dark);
}

.social-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-warm), var(--primary-gold));
    opacity: 0;
    transition: opacity var(--transition-fast);
    z-index: 0;
}

.social-btn svg {
    position: relative;
    z-index: 1;
    width: 30px;
    height: 30px;
    fill: currentColor;
}

.social-btn:hover::before {
    opacity: 1;
}

/* FOOTER */
footer {
    text-align: center;
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    background: rgba(10, 24, 33, 0.95);
    color: var(--text-muted);
    border-top: 1px solid rgba(78, 205, 196, 0.1);
    position: relative;
    z-index: 3;
    font-size: 0.95rem;
}

/* RESPONSIVE - Improved consistent spacing */
@media (max-width: 1200px) {
    :root {
        --section-spacing: clamp(3rem, 6vh, 5rem);
    }

    /* Reduce nav button padding */
    .nav-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .nav-btn svg {
        width: 16px;
        height: 16px;   
    }

    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .news-post.highlight {
        grid-column: span 2;
    }
}

@media (max-width: 1024px) {
    .book-card {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }

    .book-cover {
        max-width: 250px;
    }

    .characters-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    section {
        padding: 5rem 3% 2.5rem;
    }

    .book-card {
        padding: 1.5rem;
        gap: 1.5rem;
    }

    .book-cover {
        max-width: 200px;
    }

    .book-meta-info {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 1rem;
    }

    .characters-grid {
        grid-template-columns: 1fr;
    }

    .book-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .content-warnings {
        padding: 0.75rem;
    }

    .warnings-list {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    section {
        padding: 4.5rem 3% 2rem;
    }

    .book-card {
        padding: 1rem;
        gap: 1rem;
    }

    .book-cover {
        max-width: 160px;
    }

    .book-title {
        font-size: 1.3rem;
    }

    .book-synopsis {
        font-size: 0.9rem;
    }

    .book-meta-info {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        padding: 0.75rem;
    }

    .meta-label {
        font-size: 0.7rem;
    }

    .characters-grid {
        grid-template-columns: 1fr;
    }

    .character-card {
        padding: 0.75rem;
    }

    .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }
}

/* ============================================
   MULTI-PAGE SPECIFIC STYLES
   ============================================ */

/* Navigation Dropdowns */
.nav-dropdown {
    position: relative;
}

.dropdown-icon {
    width: 12px;
    height: 12px;
    margin-left: 0.25rem;
    transition: transform var(--transition-fast);
}

.nav-dropdown.active .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    min-width: 200px;
    background: rgba(10, 24, 33, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(78, 205, 196, 0.2);
    border-radius: 12px;
    padding: 0.5rem 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-fast);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 1000;
}

.nav-dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Desktop hover for dropdowns */
@media (min-width: 1025px) {
    .nav-dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-dropdown:hover .dropdown-icon {
        transform: rotate(180deg);
    }
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all var(--transition-fast);
}

.dropdown-menu a:hover {
    background: rgba(78, 205, 196, 0.1);
    color: var(--primary-warm);
    padding-left: 2rem;
}

.dropdown-menu .divider {
    height: 1px;
    background: rgba(78, 205, 196, 0.2);
    margin: 0.5rem 1rem;
}


.btn-primary {
    background: linear-gradient(135deg, var(--primary-warm), var(--primary-gold));
    color: var(--bg-dark);
}

/* About Preview Section */
.about-preview {
    min-height: auto;
}

.about-preview-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: var(--content-gap);
    align-items: center;
    background: rgba(10, 24, 33, 0.5);
    padding: var(--content-gap);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(78, 205, 196, 0.2);
}

.about-preview-container .about-photo {
    width: 250px;
    height: 300px;
}

.about-preview-container .about-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-preview-container h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--secondary-teal);
    margin-bottom: 0;
}

.about-preview-container p {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(232, 244, 248, 0.95);
    margin: 0;
}

/* Latest News Section */
.latest-news-section {
    min-height: auto;
}

.news-preview-grid {
    max-width: var(--container-max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.news-post-preview {
    background: rgba(10, 24, 33, 0.5);
    border-radius: 12px;
    border: 1px solid rgba(78, 205, 196, 0.15);
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    position: relative;
}

.news-post-preview::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%,
                rgba(78, 205, 196, 0.12) 0%,
                transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 12px;
}

.news-post-preview:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--secondary-teal);
    box-shadow: 0 20px 50px rgba(78, 205, 196, 0.3),
                0 0 0 1px rgba(78, 205, 196, 0.2);
}

.news-post-preview:hover::before {
    opacity: 1;
}

.news-post-preview.highlight {
    border: 2px solid rgba(78, 205, 196, 0.3);
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.1), rgba(255, 140, 66, 0.05));
}

.news-cta {
    max-width: var(--container-max-width);
    margin: 2rem auto 0;
    text-align: center;
}

/* Social Section Compact */
.social-section-compact {
    min-height: auto;
    text-align: center;
}

/* Footer Updates */
.footer-content {
    max-width: var(--container-max-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary-warm);
}

.social-links-footer {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all var(--transition-fast);
    border-radius: 50%;
}

.social-link:hover {
    color: var(--primary-warm);
    transform: translateY(-3px);
}

.social-link svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.copyright {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

/* Breadcrumb Navigation */
.breadcrumb {
    position: relative;
    z-index: 3;
    width: 100%;
    background: rgba(10, 24, 33, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(78, 205, 196, 0.1);
    padding: 1rem var(--section-padding-x);
    margin-top: 70px; /* Space for fixed nav bar */
    margin-bottom: 0;
}

.breadcrumb ol {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    list-style: none;
    flex-wrap: wrap;
    max-width: var(--container-max-width);
    margin: 0 auto;
}

.breadcrumb-item {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.breadcrumb-item a {
    color: var(--secondary-teal);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.breadcrumb-item a:hover {
    color: var(--primary-warm);
}

.breadcrumb-item:not(:last-child)::after {
    content: '/';
    margin-left: 0.5rem;
    color: var(--text-muted);
}

.breadcrumb-item.active {
    color: var(--text-light);
}

/* Book Card Preview (for grids) */
.book-card-preview {
    background: rgba(10, 24, 33, 0.5);
    border-radius: 12px;
    border: 1px solid rgba(78, 205, 196, 0.15);
    transition: all var(--transition-fast);
    overflow: hidden;
}

.book-card-preview:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-teal);
    box-shadow: 0 15px 40px rgba(78, 205, 196, 0.2);
}

.book-card-link {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 1.5rem;
    padding: 1.5rem;
    text-decoration: none;
    color: inherit;
}

.book-cover-mini {
    width: 150px;
    aspect-ratio: 2/3;
    background: linear-gradient(135deg, rgba(26, 47, 63, 0.8), rgba(10, 24, 33, 0.8));
    border: 2px solid var(--accent-dark-teal);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.book-cover-mini .book-cover-icon {
    width: 60px;
    height: 60px;
    opacity: 0.6;
}

.release-badge {
    position: absolute;
    bottom: 0.5rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.75rem;
    color: var(--primary-gold);
    font-weight: 600;
    text-transform: uppercase;
}

.book-card-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.book-series-badge {
    font-size: 0.75rem;
    color: var(--secondary-teal);
    text-transform: uppercase;
    font-weight: 600;
}

.book-card-title {
    font-size: 1.3rem;
    color: var(--primary-warm);
    margin: 0;
}

.book-card-synopsis {
    font-size: 0.9rem;
    color: rgba(232, 244, 248, 0.8);
    line-height: 1.6;
    margin: 0;
}

.book-card-meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
    margin-top: auto;
}

.status-badge {
    font-size: 0.75rem;
    padding: 0.35rem 0.75rem;
    border-radius: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.status-badge.status-drafting {
    background: rgba(255, 140, 66, 0.15);
    color: var(--primary-warm);
}

.status-badge.status-revising {
    background: rgba(78, 205, 196, 0.15);
    color: var(--secondary-teal);
}

.status-badge.status-published {
    background: rgba(255, 215, 0, 0.15);
    color: var(--primary-gold);
}

.word-count {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Responsive Adjustments for New Components */
@media (max-width: 1024px) {
    .about-preview-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-preview-container .about-photo {
        margin: 0 auto;
    }

    .news-preview-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Mobile: Dropdowns in sidebar menu */
    .nav-dropdown .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(78, 205, 196, 0.05);
        border: none;
        border-radius: 0;
        padding: 0;
        margin-top: 0.5rem;
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--transition-fast);
    }

    .nav-dropdown.active .dropdown-menu {
        max-height: 500px;
    }

    .dropdown-menu a {
        padding: 0.75rem 1rem 0.75rem 2rem;
        font-size: 0.9rem;
    }

    .news-preview-grid {
        grid-template-columns: 1fr;
    }

    .book-card-link {
        grid-template-columns: 1fr;
    }

    .book-cover-mini {
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .featured-cta {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .footer-links {
        gap: 1rem;
    }
}

/* ============================================
   PAGE-SPECIFIC STYLES
   ============================================ */

/* Page Header */
.page-header {
    min-height: 30vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 3;
    padding: 4rem var(--section-padding-x) 2rem;
}

.page-header-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-header h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--secondary-teal);
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(78, 205, 196, 0.3);
}

.page-header p {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: var(--text-muted);
}

/* News Hub Page */
.news-hub-section {
    min-height: auto;
}

.pagination-info {
    text-align: center;
    margin-top: 2rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ============================================
   ALL BOOKS PAGE STYLES
   ============================================ */

.all-books-section {
    padding: 3rem var(--section-padding-x) var(--section-padding-y);
    min-height: 60vh;
}

.books-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
}

.books-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    padding: 0 1rem;
}

.sort-options {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
    padding: 0 1rem;
}

.sort-options label {
    color: rgba(232, 244, 248, 0.8);
    font-size: 0.9rem;
}

.sort-options select {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(78, 205, 196, 0.2);
    border-radius: 0.5rem;
    padding: 0.5rem 1rem;
    color: rgba(232, 244, 248, 0.9);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sort-options select:hover {
    border-color: rgba(78, 205, 196, 0.4);
    background: rgba(255, 255, 255, 0.08);
}

.sort-options select:focus {
    outline: none;
    border-color: var(--secondary-cool);
    box-shadow: 0 0 0 3px rgba(78, 205, 196, 0.1);
}

.books-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 500px), 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
    justify-items: center;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.book-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    position: relative;
}

.book-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
                rgba(255, 140, 66, 0.15) 0%,
                transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.book-card:hover::before {
    opacity: 1;
}

.book-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.book-card-cover {
    position: relative;
    height: 250px;
    background: linear-gradient(135deg, rgba(255, 140, 66, 0.1), rgba(78, 205, 196, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all 0.4s ease;
}

.book-card:hover .book-card-cover {
    background: linear-gradient(135deg, rgba(255, 140, 66, 0.2), rgba(78, 205, 196, 0.2));
}

.book-card-cover::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg,
                transparent 30%,
                rgba(255, 255, 255, 0.1) 50%,
                transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.book-card:hover .book-card-cover::after {
    transform: translateX(100%);
}

.book-status-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.book-status-badge.drafting {
    background: rgba(255, 140, 66, 0.2);
    border: 1px solid rgba(255, 140, 66, 0.4);
    color: #ff8c42;
}

.book-status-badge.upcoming {
    background: rgba(78, 205, 196, 0.2);
    border: 1px solid rgba(78, 205, 196, 0.4);
    color: #4ecdc4;
}

.book-card-content {
    padding: 2rem;
}

.book-card-meta {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.book-card-title {
    font-size: 1.5rem;
    margin: 0 0 1rem 0;
    color: rgba(232, 244, 248, 0.95);
    transition: color 0.3s ease;
}

.book-card:hover .book-card-title {
    color: var(--primary-warm);
}

.book-card-synopsis {
    color: rgba(232, 244, 248, 0.7);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    transition: color 0.3s ease;
}

.book-card:hover .book-card-synopsis {
    color: rgba(232, 244, 248, 0.85);
}

.book-card-progress {
    margin-bottom: 1.5rem;
}

.progress-bar-mini {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 0.5rem;
    position: relative;
}

.progress-fill-mini {
    height: 100%;
    background: linear-gradient(to right, #ff8c42, #ffd700);
    border-radius: 3px;
    transition: width 0.5s ease;
    position: relative;
    overflow: hidden;
}

.progress-fill-mini::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
                transparent,
                rgba(255, 255, 255, 0.3),
                transparent);
    transform: translateX(-100%);
    animation: progress-shine 2s infinite;
}

@keyframes progress-shine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.progress-text {
    font-size: 0.85rem;
    color: rgba(232, 244, 248, 0.6);
    transition: color 0.3s ease;
}

.book-card:hover .progress-text {
    color: rgba(232, 244, 248, 0.8);
}

.book-card-genres {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.genre-tag {
    padding: 0.35rem 0.75rem;
    background: rgba(78, 205, 196, 0.15);
    border: 1px solid rgba(78, 205, 196, 0.3);
    border-radius: 1rem;
    font-size: 0.8rem;
    color: var(--secondary-cool);
    font-weight: 500;
    transition: all 0.3s ease;
}

.genre-tag:hover {
    background: rgba(78, 205, 196, 0.25);
    border-color: var(--secondary-cool);
    transform: translateY(-2px);
}

.no-results {
    text-align: center;
    padding: 4rem 2rem;
    color: rgba(232, 244, 248, 0.6);
}

/* ============================================
   NEW BOOK CARD DESIGN (Completely Redesigned)
   ============================================ */

.book-card-new {
    width: 100%;
    max-width: 550px;
    background: rgba(10, 24, 33, 0.6);
    border: 1px solid rgba(78, 205, 196, 0.15);
    border-radius: 1.25rem;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    backdrop-filter: blur(20px);
}

.book-card-new::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(255, 140, 66, 0.08),
        transparent 40%
    );
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
    z-index: 1;
}

.book-card-new:hover::before {
    opacity: 1;
}

.book-card-new:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 140, 66, 0.4);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 140, 66, 0.2),
        0 0 50px rgba(255, 140, 66, 0.15);
}

.book-card-link-new {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

/* Book Cover Section */
.book-cover-section {
    position: relative;
    width: 100%;
    height: 280px;
    background: linear-gradient(135deg,
        rgba(26, 47, 63, 0.8) 0%,
        rgba(10, 24, 33, 0.9) 100%);
    overflow: hidden;
}

.book-cover-art {
    width: 100%;
    height: 100%;
    position: relative;
}

.cover-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    position: relative;
    padding: 2rem;
}

.cover-bg-pattern {
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(78, 205, 196, 0.02) 10px,
            rgba(78, 205, 196, 0.02) 20px
        );
    opacity: 0.5;
}

.cover-book-icon {
    width: 100px;
    height: 100px;
    stroke: rgba(255, 140, 66, 0.4);
    filter: drop-shadow(0 0 20px rgba(255, 140, 66, 0.3));
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.book-card-new:hover .cover-book-icon {
    stroke: rgba(255, 140, 66, 0.8);
    transform: scale(1.1) translateY(-5px);
    filter: drop-shadow(0 0 30px rgba(255, 140, 66, 0.5));
}

.cover-title {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: rgba(232, 244, 248, 0.4);
    text-align: center;
    line-height: 1.3;
    max-width: 90%;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.book-card-new:hover .cover-title {
    color: rgba(232, 244, 248, 0.7);
}

.book-status-indicator {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    border-radius: 2rem;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
    z-index: 3;
    transition: all 0.3s ease;
}

.book-status-indicator.published {
    background: rgba(78, 205, 196, 0.25);
    border: 1px solid rgba(78, 205, 196, 0.5);
    color: #4ecdc4;
    box-shadow: 0 4px 15px rgba(78, 205, 196, 0.2);
}

.book-status-indicator.drafting {
    background: rgba(255, 140, 66, 0.25);
    border: 1px solid rgba(255, 140, 66, 0.5);
    color: #ff8c42;
    box-shadow: 0 4px 15px rgba(255, 140, 66, 0.2);
}

.book-status-indicator.upcoming {
    background: rgba(255, 215, 0, 0.2);
    border: 1px solid rgba(255, 215, 0, 0.4);
    color: #ffd700;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.15);
}

.book-status-icon {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
}

/* Book Info Section */
.book-info-section {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.book-header {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.book-series-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.series-number {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    background: linear-gradient(135deg, var(--primary-warm), var(--primary-gold));
    color: var(--bg-dark);
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.series-name {
    font-size: 0.85rem;
    color: rgba(78, 205, 196, 0.9);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.book-title {
    font-family: 'Cinzel', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: rgba(232, 244, 248, 0.95);
    line-height: 1.3;
    margin: 0;
    transition: color 0.3s ease;
}

.book-card-new:hover .book-title {
    color: var(--primary-warm);
}

.book-synopsis {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(232, 244, 248, 0.75);
    margin: 0;
    transition: color 0.3s ease;
}

.book-card-new:hover .book-synopsis {
    color: rgba(232, 244, 248, 0.9);
}

/* Progress Section */
.book-progress-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 0.75rem;
    border: 1px solid rgba(78, 205, 196, 0.1);
}

.progress-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.progress-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(232, 244, 248, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.progress-icon {
    width: 16px;
    height: 16px;
    stroke: var(--primary-warm);
}

.progress-percent {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-warm);
    text-shadow: 0 0 20px rgba(255, 140, 66, 0.3);
}

.progress-bar-container {
    width: 100%;
}

.progress-bar-track {
    width: 100%;
    height: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 5px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg,
        #ff8c42 0%,
        #ffd700 50%,
        #ff8c42 100%);
    background-size: 200% 100%;
    border-radius: 5px;
    position: relative;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    animation: shimmer 3s ease-in-out infinite;
    box-shadow: 0 0 15px rgba(255, 140, 66, 0.5);
}

@keyframes shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.progress-bar-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent);
    animation: glow-slide 2s infinite;
}

@keyframes glow-slide {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(200%); }
}

.progress-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: rgba(232, 244, 248, 0.65);
    white-space: nowrap;
}

.stat-icon {
    width: 14px;
    height: 14px;
    stroke: rgba(78, 205, 196, 0.6);
    flex-shrink: 0;
}

/* Published Info */
.book-published-info {
    padding: 1rem;
    background: rgba(78, 205, 196, 0.08);
    border-radius: 0.75rem;
    border: 1px solid rgba(78, 205, 196, 0.2);
}

.published-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    color: #4ecdc4;
}

.published-icon {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}

/* Footer Section */
.book-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    flex-wrap: wrap;
}

.book-genres {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    flex: 1;
}

.genre-pill {
    padding: 0.4rem 0.85rem;
    background: rgba(78, 205, 196, 0.12);
    border: 1px solid rgba(78, 205, 196, 0.25);
    border-radius: 1.5rem;
    font-size: 0.75rem;
    color: rgba(78, 205, 196, 0.9);
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.genre-pill:hover {
    background: rgba(78, 205, 196, 0.2);
    border-color: rgba(78, 205, 196, 0.4);
    transform: translateY(-2px);
}

.book-cta {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 1.25rem;
    background: rgba(255, 140, 66, 0.1);
    border: 1px solid rgba(255, 140, 66, 0.3);
    border-radius: 2rem;
    color: var(--primary-warm);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.book-card-new:hover .book-cta {
    background: rgba(255, 140, 66, 0.2);
    border-color: var(--primary-warm);
    transform: translateX(5px);
    box-shadow: 0 0 20px rgba(255, 140, 66, 0.2);
}

.cta-text {
    white-space: nowrap;
}

.cta-arrow {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    transition: transform 0.3s ease;
}

.book-card-new:hover .cta-arrow {
    transform: translateX(3px);
}

/* ============================================
   STREAMLINED BOOKS PAGE
   ============================================ */

/* Clean Page Header */
.page-header-clean {
    min-height: auto;
    padding: calc(70px + 3rem) var(--section-padding-x) 3rem;
    position: relative;
    z-index: 3;
}

.header-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.header-text {
    text-align: center;
}

.header-text h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--primary-warm);
    margin-bottom: 0.75rem;
    text-shadow: 0 0 40px rgba(255, 140, 66, 0.4);
}

.header-text p {
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    color: rgba(232, 244, 248, 0.7);
    font-style: italic;
}

/* Integrated Filter Tabs */
.header-filters {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.quick-filter {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1.75rem;
    background: rgba(10, 24, 33, 0.7);
    border: 2px solid rgba(78, 205, 196, 0.15);
    border-radius: 3rem;
    color: rgba(232, 244, 248, 0.8);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.quick-filter::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 140, 66, 0.1), rgba(78, 205, 196, 0.1));
    opacity: 0;
    transition: opacity 0.3s;
}

.quick-filter:hover::before {
    opacity: 1;
}

.quick-filter:hover {
    border-color: rgba(78, 205, 196, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.quick-filter.active {
    background: linear-gradient(135deg,
        rgba(255, 140, 66, 0.2) 0%,
        rgba(78, 205, 196, 0.15) 100%);
    border-color: var(--primary-warm);
    color: var(--primary-warm);
    box-shadow:
        0 8px 30px rgba(255, 140, 66, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.quick-filter.active::before {
    opacity: 1;
}

.filter-count {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    height: 28px;
    padding: 0 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2rem;
    font-size: 0.8rem;
    font-weight: 700;
    font-family: 'Cinzel', serif;
    transition: all 0.3s ease;
}

.quick-filter.active .filter-count {
    background: rgba(255, 140, 66, 0.3);
    color: var(--primary-warm);
    box-shadow: 0 0 15px rgba(255, 140, 66, 0.3);
}

/* Books Main Section */
.books-main-section {
    padding: 2rem var(--section-padding-x) var(--section-spacing);
    min-height: 50vh;
}

.books-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

/* Clean Empty State */
.empty-state-clean {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5rem 2rem;
    text-align: center;
}

.empty-icon-wrapper {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 140, 66, 0.05);
    border: 2px dashed rgba(255, 140, 66, 0.2);
    border-radius: 50%;
    margin-bottom: 2rem;
}

.empty-icon-wrapper svg {
    width: 60px;
    height: 60px;
    stroke: rgba(255, 140, 66, 0.4);
}

.empty-state-clean h3 {
    font-size: 1.75rem;
    color: rgba(232, 244, 248, 0.7);
    margin-bottom: 0.75rem;
}

.empty-state-clean p {
    font-size: 1.1rem;
    color: rgba(232, 244, 248, 0.5);
}

/* Enhanced Books Page Styles */
.books-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.books-filters {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    flex: 1;
}

.filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(78, 205, 196, 0.2);
    border-radius: 2rem;
    color: rgba(232, 244, 248, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.filter-icon {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    flex-shrink: 0;
}

.filter-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(78, 205, 196, 0.4);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: linear-gradient(135deg, rgba(255, 140, 66, 0.2), rgba(78, 205, 196, 0.2));
    border-color: var(--primary-warm);
    color: var(--primary-warm);
    box-shadow: 0 4px 15px rgba(255, 140, 66, 0.3);
}

.sort-options {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.sort-options label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(232, 244, 248, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
}

.sort-icon {
    width: 16px;
    height: 16px;
    stroke: currentColor;
}

.books-count {
    text-align: center;
    font-size: 1rem;
    color: rgba(232, 244, 248, 0.6);
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 0.5rem;
    border: 1px solid rgba(78, 205, 196, 0.1);
}

.books-count .count-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-warm);
    font-family: 'Cinzel', serif;
}

/* Enhanced Book Card Styles */
.book-cover-placeholder {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 300px;
    aspect-ratio: 6 / 7;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.book-cover-icon {
    width: 80px;
    height: 80px;
    stroke: rgba(232, 244, 248, 0.3);
    transition: all 0.4s ease;
}

.book-card:hover .book-cover-icon {
    stroke: var(--primary-warm);
    transform: scale(1.1) rotate(-5deg);
}

.book-cover-status {
    font-size: 1.1rem;
    font-weight: 700;
    color: rgba(232, 244, 248, 0.5);
    font-family: 'Cinzel', serif;
    transition: color 0.3s ease;
}

.book-card:hover .book-cover-status {
    color: var(--primary-warm);
}

.book-status-badge {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.book-status-badge.published {
    background: rgba(78, 205, 196, 0.2);
    border: 1px solid rgba(78, 205, 196, 0.4);
    color: #4ecdc4;
}

.badge-icon {
    width: 14px;
    height: 14px;
}

.book-badge {
    padding: 0.35rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.series-badge {
    background: linear-gradient(135deg, var(--primary-warm), var(--primary-gold));
    color: var(--bg-dark);
    border: none;
}

.series-name-badge {
    background: rgba(78, 205, 196, 0.15);
    border: 1px solid rgba(78, 205, 196, 0.3);
    color: var(--secondary-teal);
}

/* Enhanced Progress Styles */
.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.progress-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(232, 244, 248, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.progress-percentage {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-warm);
    font-family: 'Cinzel', serif;
}

.progress-bar-mini {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    margin-bottom: 0.5rem;
}

.progress-fill-mini {
    height: 100%;
    background: linear-gradient(90deg, #ff8c42, #ffd700, #ff8c42);
    background-size: 200% 100%;
    border-radius: 4px;
    position: relative;
    animation: gradient-shift 3s ease infinite;
}

.progress-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
                transparent,
                rgba(255, 255, 255, 0.4),
                transparent);
    animation: progress-shine 2s infinite;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.progress-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.progress-stage {
    font-size: 0.8rem;
    color: rgba(232, 244, 248, 0.6);
    font-weight: 500;
}

.progress-words {
    font-size: 0.75rem;
    color: rgba(232, 244, 248, 0.5);
    font-family: monospace;
}

/* Enhanced Footer Styles */
.book-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.book-card-action {
    display: flex;
    align-items: center;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-warm);
    transition: all 0.3s ease;
    cursor: pointer;
}

.arrow-icon {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    transition: transform 0.3s ease;
}

.book-card:hover .read-more {
    gap: 0.75rem;
}

.book-card:hover .arrow-icon {
    transform: translateX(5px);
}

/* Empty State */
.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 1rem;
    border: 1px dashed rgba(78, 205, 196, 0.2);
    margin-top: 2rem;
}

.empty-icon {
    width: 80px;
    height: 80px;
    stroke: rgba(232, 244, 248, 0.2);
    margin-bottom: 1.5rem;
}

.empty-state h3 {
    font-size: 1.5rem;
    color: rgba(232, 244, 248, 0.6);
    margin-bottom: 0.5rem;
}

.empty-state p {
    font-size: 1rem;
    color: rgba(232, 244, 248, 0.4);
}

/* ============================================
   ALL SERIES PAGE STYLES
   ============================================ */

.all-series-section {
    padding: 3rem var(--section-padding-x) var(--section-padding-y);
    min-height: 60vh;
}

.series-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
}

.series-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    padding: 0 1rem;
}

.series-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.series-card-large {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.series-card-large:hover {
    border-color: rgba(78, 205, 196, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.series-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.series-card-header {
    padding: 2.5rem 2.5rem 1.5rem 2.5rem;
    background: linear-gradient(135deg, rgba(255, 140, 66, 0.08), rgba(78, 205, 196, 0.08));
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.series-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.series-status-badge {
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.series-status-badge.active {
    background: rgba(78, 205, 196, 0.2);
    border: 1px solid rgba(78, 205, 196, 0.4);
    color: #4ecdc4;
}

.series-status-badge.completed {
    background: rgba(255, 215, 0, 0.2);
    border: 1px solid rgba(255, 215, 0, 0.4);
    color: #ffd700;
}

.series-status-badge.planned {
    background: rgba(255, 140, 66, 0.2);
    border: 1px solid rgba(255, 140, 66, 0.4);
    color: #ff8c42;
}

.series-book-count {
    font-size: 0.85rem;
    color: rgba(232, 244, 248, 0.6);
}

.series-card-title {
    font-size: 2rem;
    margin: 0 0 0.75rem 0;
    color: rgba(232, 244, 248, 0.95);
}

.series-tagline {
    font-size: 1.1rem;
    color: rgba(232, 244, 248, 0.7);
    font-style: italic;
    line-height: 1.5;
    margin: 0;
}

.series-card-body {
    padding: 2rem 2.5rem;
}

.series-description {
    color: rgba(232, 244, 248, 0.75);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.series-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.series-info-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.info-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(232, 244, 248, 0.5);
    font-weight: 600;
}

.info-value {
    font-size: 1rem;
    color: rgba(232, 244, 248, 0.9);
}

.series-themes {
    margin-bottom: 2rem;
}

.series-themes h4 {
    font-size: 1rem;
    margin: 0 0 1rem 0;
    color: rgba(232, 244, 248, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.85rem;
}

.theme-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.theme-tag {
    padding: 0.5rem 1rem;
    background: rgba(255, 140, 66, 0.15);
    border: 1px solid rgba(255, 140, 66, 0.3);
    border-radius: 1rem;
    font-size: 0.85rem;
    color: var(--primary-warm);
}

.series-books-preview {
    margin-top: 2rem;
}

.series-books-preview h4 {
    font-size: 1rem;
    margin: 0 0 1rem 0;
    color: rgba(232, 244, 248, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.85rem;
}

.books-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.books-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.2s ease;
}

.books-list li:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(78, 205, 196, 0.2);
}

.book-number {
    font-size: 0.8rem;
    color: rgba(232, 244, 248, 0.5);
    min-width: 80px;
}

.book-title-small {
    flex: 1;
    color: rgba(232, 244, 248, 0.9);
}

.book-status-small {
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-weight: 600;
}

.book-status-small.published {
    background: rgba(78, 205, 196, 0.2);
    color: #4ecdc4;
}

.book-status-small.upcoming {
    background: rgba(255, 140, 66, 0.2);
    color: #ff8c42;
}

.series-card-footer {
    padding: 1.5rem 2.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.explore-series {
    color: var(--secondary-cool);
    font-weight: 600;
    transition: all 0.3s ease;
}

.series-card-large:hover .explore-series {
    color: var(--primary-warm);
}

/* ============================================
   SERIES PAGE STYLES
   ============================================ */

/* Series Hero Section */
.series-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(20, 20, 30, 0.5), rgba(30, 20, 40, 0.5));
    position: relative;
    overflow: hidden;
    padding: var(--section-spacing) var(--section-padding-x);
    backdrop-filter: blur(10px);
}

.series-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 140, 66, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.series-hero-content {
    max-width: var(--container-max-width);
    width: 100%;
    z-index: 1;
}

.series-hero-text {
    text-align: center;
}

.series-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ff8c42, #ffb366);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.series-tagline {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    font-style: italic;
}

.series-status {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 2rem;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.series-status.active {
    background: rgba(76, 175, 80, 0.2);
    border-color: rgba(76, 175, 80, 0.5);
    color: #4caf50;
}

.series-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.series-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.stat-value {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #ff8c42;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Series Overview Section */
.series-overview {
    padding: var(--section-spacing) var(--section-padding-x);
}

.series-overview-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
}

.series-overview-section {
    margin-bottom: 3rem;
}

.series-overview-section h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 1.5rem;
    text-align: center;
}

.series-description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.series-overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.series-overview-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.series-overview-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 140, 66, 0.3);
    transform: translateY(-5px);
}

.overview-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.overview-card-header svg {
    width: 32px;
    height: 32px;
    color: #ff8c42;
}

.overview-card-header h3 {
    font-size: 1.3rem;
    margin: 0;
}

.theme-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.theme-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
}

.theme-list li:last-child {
    border-bottom: none;
}

.theme-list li::before {
    content: '→';
    color: #ff8c42;
    margin-right: 1rem;
    font-weight: bold;
}

.overview-text {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

/* Series Books Section */
.series-books {
    padding: var(--section-spacing) var(--section-padding-x);
    background: rgba(255, 255, 255, 0.02);
}

.series-books .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.series-books .section-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
}

.series-books .section-header p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
}

.books-grid {
    max-width: var(--container-max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.series-book-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.series-book-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 140, 66, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.book-cover-container {
    width: 100%;
    aspect-ratio: 2/3;
    position: relative;
    overflow: visible;
}

.book-cover-placeholder {
    width: 100%;
    height: 100%;
    max-width: 300px;
    aspect-ratio: 6 / 7;
    background: linear-gradient(135deg, rgba(30, 30, 45, 0.9), rgba(20, 20, 35, 0.9));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.book-cover-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 30%, rgba(255, 140, 66, 0.2) 0%, transparent 60%);
}

.book-cover-icon {
    width: 80px;
    height: 80px;
    color: rgba(255, 140, 66, 0.5);
    margin-bottom: 1rem;
    z-index: 1;
}

.book-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff8c42;
    z-index: 1;
}

.book-card-content {
    padding: 1.5rem;
}

.series-badge {
    background: linear-gradient(135deg, #ff8c42, #ffb366);
    color: #0a0a0f;
    font-weight: 600;
}

.book-card-title {
    font-size: 1.4rem;
    margin: 0.75rem 0 1rem 0;
    color: #fff;
}

.book-card-synopsis {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.book-progress-mini {
    margin-bottom: 1.5rem;
}

.progress-mini-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.progress-mini-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.progress-mini-percentage {
    font-size: 0.9rem;
    font-weight: 600;
    color: #ff8c42;
}

.progress-bar-mini {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.progress-bar-mini-fill {
    height: 100%;
    background: linear-gradient(90deg, #ff8c42, #ffb366);
    border-radius: 3px;
    transition: width 0.5s ease;
}

/* Series News Section */
.series-news {
    padding: var(--section-spacing) var(--section-padding-x);
}

.series-news .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.series-news .section-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
}

.series-news .section-header p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
}

.series-news-grid {
    max-width: var(--container-max-width);
    margin: 0 auto 3rem auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.no-news {
    text-align: center;
    padding: 3rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   ENHANCED SERIES PAGE STYLES
   ============================================ */

/* Enhanced Hero Section */
.series-hero-inner {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.series-badge-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.series-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgba(78, 205, 196, 0.15);
    border: 2px solid rgba(78, 205, 196, 0.4);
    color: var(--primary-cool);
}

.series-badge.active {
    background: linear-gradient(135deg, rgba(255, 140, 66, 0.2), rgba(78, 205, 196, 0.2));
    border-color: var(--primary-warm);
    color: var(--primary-warm);
}

.series-genre-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-size: 0.85rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
}

.series-title-large {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 800;
    margin: 0 0 1.5rem 0;
    background: linear-gradient(135deg, var(--primary-warm), var(--primary-cool));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.series-hero-tagline-large {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 3rem 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    font-weight: 300;
}

.series-meta-enhanced {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.meta-item-large {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.meta-icon {
    width: 40px;
    height: 40px;
    stroke: var(--primary-warm);
    flex-shrink: 0;
}

.meta-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.meta-value {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-light);
}

.meta-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.meta-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, rgba(78, 205, 196, 0.3), transparent);
}

.series-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-large svg {
    width: 20px;
    height: 20px;
}

/* Enhanced Overview Section */
.series-overview-enhanced {
    max-width: 1400px;
    margin: 0 auto;
}

.series-description-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    padding: 3rem;
    margin-bottom: 3rem;
    backdrop-filter: blur(10px);
}

.card-icon-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.card-icon-header svg {
    width: 32px;
    height: 32px;
    stroke: var(--primary-warm);
}

.card-icon-header h2,
.card-icon-header h3 {
    margin: 0;
    color: var(--text-light);
}

.series-description-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
}

.series-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2rem;
}

.info-card-enhanced {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.info-card-enhanced:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 140, 66, 0.3);
    transform: translateY(-5px);
}

.themes-grid-enhanced {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.theme-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: rgba(78, 205, 196, 0.1);
    border: 1px solid rgba(78, 205, 196, 0.3);
    border-radius: 2rem;
    font-size: 0.95rem;
    color: var(--primary-cool);
    transition: all 0.3s ease;
}

.theme-tag:hover {
    background: rgba(78, 205, 196, 0.2);
    border-color: var(--primary-cool);
    transform: scale(1.05);
}

.theme-tag svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
}

.world-building-section,
.magic-system-section {
    margin-top: 2rem;
}

.world-building-section h4,
.magic-system-section h4 {
    color: var(--primary-warm);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.world-building-section p,
.magic-system-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.series-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: rgba(255, 140, 66, 0.05);
    border: 1px solid rgba(255, 140, 66, 0.2);
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: rgba(255, 140, 66, 0.1);
    border-color: var(--primary-warm);
    transform: translateY(-3px);
}

.stat-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem auto;
    stroke: var(--primary-warm);
}

.stat-icon svg {
    width: 100%;
    height: 100%;
}

.stat-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-value-large {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-warm);
    line-height: 1;
}

.stat-label-large {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.content-warnings-enhanced {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 140, 66, 0.05);
    border: 1px solid rgba(255, 140, 66, 0.2);
    border-radius: 1rem;
}

.content-warnings-enhanced h4 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--primary-warm);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.content-warnings-enhanced h4 svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}

.content-warnings-list-enhanced {
    list-style: none;
    padding: 0;
    margin: 0;
}

.content-warnings-list-enhanced li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: rgba(255, 255, 255, 0.8);
}

.content-warnings-list-enhanced li svg {
    width: 16px;
    height: 16px;
    stroke: var(--primary-warm);
    flex-shrink: 0;
}

/* Enhanced Books in Series */
.series-book-card-enhanced {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    overflow: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.series-book-card-enhanced:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 140, 66, 0.4);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 140, 66, 0.2);
}

.series-book-card-enhanced a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.book-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.book-number-large {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-warm), var(--primary-cool));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
}

.book-status-badge {
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.book-status-badge.published {
    background: rgba(78, 205, 196, 0.2);
    border: 1px solid var(--primary-cool);
    color: var(--primary-cool);
}

.book-status-badge.drafting {
    background: rgba(255, 140, 66, 0.2);
    border: 1px solid var(--primary-warm);
    color: var(--primary-warm);
}

.book-status-badge.prewriting {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.8);
}

.book-cover-enhanced {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.book-cover-placeholder-large {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(20, 30, 50, 0.8), rgba(30, 20, 40, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.book-icon-large {
    width: 80px;
    height: 80px;
    stroke: rgba(255, 140, 66, 0.3);
    stroke-width: 1.5;
}

.book-overlay-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255, 140, 66, 0.1) 0%, transparent 70%);
}

.book-info-enhanced {
    padding: 2rem;
}

.book-title-large {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    color: var(--text-light);
    transition: color 0.3s ease;
}

.series-book-card-enhanced:hover .book-title-large {
    color: var(--primary-warm);
}

.book-series-number {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 1.5rem 0;
}

.book-progress-enhanced {
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: rgba(255, 140, 66, 0.05);
    border: 1px solid rgba(255, 140, 66, 0.15);
    border-radius: 1rem;
}

.progress-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.progress-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.progress-percentage {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-warm);
}

.progress-bar-enhanced {
    height: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    overflow: hidden;
    position: relative;
}

.progress-fill-enhanced {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-warm), var(--primary-cool));
    border-radius: 1rem;
    position: relative;
    transition: width 0.5s ease;
}

.progress-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shine 2s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.word-count-info {
    margin-top: 0.75rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
}

.release-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(78, 205, 196, 0.1);
    border: 1px solid rgba(78, 205, 196, 0.2);
    border-radius: 0.75rem;
    color: var(--primary-cool);
    margin: 1.5rem 0;
}

.release-info svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}

.book-synopsis-enhanced {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    margin: 1.5rem 0;
}

.book-card-footer {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.read-more-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-warm);
    font-weight: 600;
    transition: gap 0.3s ease;
}

.series-book-card-enhanced:hover .read-more-link {
    gap: 1rem;
}

.read-more-link svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
}

.no-books-enhanced {
    text-align: center;
    padding: 5rem 2rem;
    grid-column: 1 / -1;
}

.no-books-enhanced svg {
    width: 80px;
    height: 80px;
    stroke: rgba(255, 255, 255, 0.3);
    margin-bottom: 1.5rem;
}

.no-books-enhanced h3 {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.no-books-enhanced p {
    color: rgba(255, 255, 255, 0.6);
}

/* Enhanced News Section */
.news-post-preview-enhanced {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    padding: 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.news-post-preview-enhanced:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(78, 205, 196, 0.3);
    transform: translateY(-5px);
}

.news-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.post-category-enhanced {
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: rgba(78, 205, 196, 0.15);
    border: 1px solid rgba(78, 205, 196, 0.3);
    color: var(--primary-cool);
}

.post-date-enhanced {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.post-title-enhanced {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin: 0 0 1rem 0;
    line-height: 1.3;
}

.post-excerpt-enhanced {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 1.5rem;
}

.post-link-enhanced {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-warm);
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.news-post-preview-enhanced:hover .post-link-enhanced {
    gap: 1rem;
}

.post-link-enhanced svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
}

.no-news-enhanced {
    text-align: center;
    padding: 5rem 2rem;
    grid-column: 1 / -1;
}

.no-news-enhanced svg {
    width: 80px;
    height: 80px;
    stroke: rgba(255, 255, 255, 0.3);
    margin-bottom: 1.5rem;
}

.no-news-enhanced h3 {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.no-news-enhanced p {
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive Adjustments for Enhanced Series Pages */
@media (max-width: 1024px) {
    .series-info-grid {
        grid-template-columns: 1fr;
    }

    .series-meta-enhanced {
        flex-direction: column;
        gap: 1.5rem;
    }

    .meta-divider {
        width: 100px;
        height: 1px;
        background: linear-gradient(to right, transparent, rgba(78, 205, 196, 0.3), transparent);
    }
}

@media (max-width: 768px) {
    .series-description-card,
    .info-card-enhanced {
        padding: 2rem 1.5rem;
    }

    .series-cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-large {
        width: 100%;
        justify-content: center;
    }

    .series-stats-grid {
        grid-template-columns: 1fr;
    }

    .book-card-header {
        padding: 1rem;
    }

    .book-number-large {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .book-info-enhanced {
        padding: 1.5rem;
    }

    .series-book-card-enhanced:hover {
        transform: translateY(-5px);
    }
}

.news-cta {
    text-align: center;
    margin-top: 2rem;
}

/* Responsive adjustments for series pages */
@media (max-width: 768px) {
    .series-stats {
        gap: 2rem;
    }

    .series-overview-grid {
        grid-template-columns: 1fr;
    }

    .books-grid {
        grid-template-columns: 1fr;
    }

    .series-news-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .series-stats {
        gap: 1.5rem;
    }

    .stat-value {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }
}

/* ============================================
   BOOK PAGE STYLES
   ============================================ */

/* Book Hero Section */
.book-hero {
    padding: var(--section-spacing) var(--section-padding-x);
    background: linear-gradient(135deg, rgba(20, 20, 30, 0.5), rgba(30, 20, 40, 0.5));
    position: relative;
    backdrop-filter: blur(10px);
}

.book-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 50%, rgba(255, 140, 66, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

/* Custom Book/Series Backgrounds */
.book-hero.documents-of-martialis,
.series-hero.documents-of-martialis {
    background:
        linear-gradient(135deg, rgba(10, 24, 33, 0.75), rgba(20, 30, 40, 0.85)),
        url('../../assets/images/sentinel_earth.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.book-hero.burning-of-golandra,
.series-hero.burning-of-golandra {
    background:
        linear-gradient(135deg, rgba(10, 24, 33, 0.75), rgba(20, 30, 40, 0.85)),
        url('../../assets/images/golandra.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.book-hero.day-when-servants-reign,
.series-hero.day-when-servants-reign {
    background:
        linear-gradient(135deg, rgba(10, 24, 33, 0.75), rgba(20, 30, 40, 0.85)),
        url('../../assets/images/Immaria.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.series-hero.severance-chronicles {
    background:
        linear-gradient(135deg, rgba(10, 24, 33, 0.85), rgba(20, 30, 40, 0.9)),
        url('../../assets/images/Immaria.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Enhanced overlay for all custom backgrounds */
.book-hero.documents-of-martialis::before,
.book-hero.burning-of-golandra::before,
.book-hero.day-when-servants-reign::before,
.series-hero.documents-of-martialis::before,
.series-hero.burning-of-golandra::before,
.series-hero.day-when-servants-reign::before,
.series-hero.severance-chronicles::before {
    background: radial-gradient(circle at 70% 50%, rgba(255, 140, 66, 0.15) 0%, transparent 60%);
}

.book-hero-content {
    max-width: var(--container-max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: start;
    position: relative;
    z-index: 1;
}

.book-hero-cover {
    position: relative;
}

.book-cover-large {
    width: 100%;
    aspect-ratio: 2/3;
    background: linear-gradient(135deg, rgba(30, 30, 45, 0.9), rgba(20, 20, 35, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.book-cover-large::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 30%, rgba(255, 140, 66, 0.2) 0%, transparent 70%);
}

.book-cover-icon-large {
    width: 120px;
    height: 120px;
    color: rgba(255, 140, 66, 0.5);
    z-index: 1;
}

.book-hero-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.book-hero-badges {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.book-hero-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin: 0;
    background: linear-gradient(135deg, #ff8c42, #ffb366);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.book-hero-synopsis {
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

.book-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
}

.meta-item svg {
    width: 20px;
    height: 20px;
    color: #ff8c42;
}

.book-hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Book Details Section with Tabs */
.book-details {
    padding: var(--section-spacing) var(--section-padding-x);
}

.book-details-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
}

.book-tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.tab-btn {
    padding: 1rem 1.5rem;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    white-space: nowrap;
}

.tab-btn:hover {
    color: rgba(255, 255, 255, 0.9);
}

.tab-btn.active {
    color: #ff8c42;
    border-bottom-color: #ff8c42;
}

.tab-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Overview Tab */
.overview-content {
    max-width: 900px;
}

.overview-main h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.book-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.overview-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.overview-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%,
                rgba(78, 205, 196, 0.08) 0%,
                transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 1rem;
}

.overview-card:hover {
    transform: translateY(-8px);
    border-color: rgba(78, 205, 196, 0.3);
    box-shadow: 0 12px 35px rgba(78, 205, 196, 0.2);
}

.overview-card:hover::before {
    opacity: 1;
}

.overview-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #ff8c42;
    transition: color 0.3s ease;
}

.overview-card:hover h3 {
    color: #4ecdc4;
}

.theme-tags {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.theme-tags li {
    padding: 0.5rem 1rem;
    background: rgba(255, 140, 66, 0.1);
    border: 1px solid rgba(255, 140, 66, 0.3);
    border-radius: 2rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.detail-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.detail-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

.detail-list li:last-child {
    border-bottom: none;
}

.detail-list strong {
    color: #ff8c42;
    margin-right: 0.5rem;
}

.content-warnings-section {
    background: rgba(255, 59, 48, 0.1);
    border: 1px solid rgba(255, 59, 48, 0.3);
    border-radius: 1rem;
    padding: 2rem;
    margin-top: 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.content-warnings-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%,
                rgba(255, 59, 48, 0.15) 0%,
                transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 1rem;
}

.content-warnings-section:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 59, 48, 0.5);
    box-shadow: 0 12px 35px rgba(255, 59, 48, 0.2);
}

.content-warnings-section:hover::before {
    opacity: 1;
}

.content-warnings-section h3 {
    color: #ff3b30;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.content-warnings-section:hover h3 {
    color: #ff6259;
}

.warnings-intro {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    font-style: italic;
}

.warnings-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.warnings-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

.warnings-list li:last-child {
    border-bottom: none;
}

.warnings-list strong {
    color: #ff9500;
}

/* Characters Tab */
.characters-content h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.characters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.character-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    position: relative;
}

.character-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%,
                rgba(255, 140, 66, 0.1) 0%,
                transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 1rem;
}

.character-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(255, 140, 66, 0.5);
    box-shadow: 0 15px 40px rgba(255, 140, 66, 0.3),
                0 0 0 1px rgba(255, 140, 66, 0.2);
}

.character-card:hover::before {
    opacity: 1;
}

.character-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem auto;
    background: linear-gradient(135deg, rgba(255, 140, 66, 0.2), rgba(255, 140, 66, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.character-icon svg {
    width: 40px;
    height: 40px;
    color: #ff8c42;
}

.character-name {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #ff8c42;
}

.character-role {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.character-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.characters-intro {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.character-traits {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1rem;
}

.trait-tag {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    background: rgba(255, 140, 66, 0.15);
    border: 1px solid rgba(255, 140, 66, 0.3);
    border-radius: 1rem;
    font-size: 0.8rem;
    color: var(--primary-warm);
    font-weight: 500;
    transition: all 0.3s ease;
}

.trait-tag:hover {
    background: rgba(255, 140, 66, 0.25);
    border-color: rgba(255, 140, 66, 0.5);
    transform: translateY(-2px);
}

/* Sample Chapter Tab */
.sample-content {
    max-width: 800px;
    margin: 0 auto;
}

.sample-header {
    text-align: center;
    margin-bottom: 3rem;
}

.sample-header h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.sample-note {
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
    font-size: 0.9rem;
}

.sample-text {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 3rem;
    margin-bottom: 3rem;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.sample-text::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%,
                rgba(255, 140, 66, 0.08) 0%,
                transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 1rem;
}

.sample-text:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 140, 66, 0.3);
    box-shadow: 0 12px 35px rgba(255, 140, 66, 0.15);
}

.sample-text:hover::before {
    opacity: 1;
}

.sample-text p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.9;
    margin-bottom: 1.5rem;
    text-indent: 2em;
    transition: color 0.3s ease;
}

.sample-text:hover p {
    color: rgba(255, 255, 255, 0.95);
}

.sample-text p:first-child {
    text-indent: 0;
}

.sample-text p:first-child::first-letter {
    font-size: 3.5em;
    font-weight: 700;
    float: left;
    line-height: 0.85;
    margin: 0.1em 0.1em 0 0;
    color: #ff8c42;
}

.sample-cta {
    text-align: center;
}

.sample-cta p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Progress Tab */
.progress-content {
    max-width: 900px;
    margin: 0 auto;
}

.progress-header {
    text-align: center;
    margin-bottom: 3rem;
}

.progress-header h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.progress-header p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
}

/* Status details in progress context */
.progress-content .status-details {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(78, 205, 196, 0.1);
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 3rem;
    backdrop-filter: blur(10px);
}

.progress-stat-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.progress-stat-card:hover {
    border-color: rgba(255, 140, 66, 0.3);
    transform: translateY(-3px);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(255, 140, 66, 0.2), rgba(255, 140, 66, 0.1));
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon svg {
    width: 30px;
    height: 30px;
    color: #ff8c42;
}

.stat-info h3 {
    font-size: 1.8rem;
    color: #ff8c42;
    margin: 0 0 0.25rem 0;
}

.stat-info p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-size: 0.9rem;
}

.progress-timeline {
    margin-bottom: 4rem;
}

.progress-timeline h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #ff8c42, rgba(255, 140, 66, 0.3));
}

.timeline-item {
    position: relative;
    padding-bottom: 2rem;
}

.timeline-marker {
    position: absolute;
    left: -2rem;
    width: 40px;
    height: 40px;
    background: rgba(10, 24, 33, 0.9);
    border: 3px solid rgba(78, 205, 196, 0.2);
    border-radius: 50%;
    transform: translateX(-18px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.timeline-marker svg {
    width: 20px;
    height: 20px;
    stroke: rgba(232, 244, 248, 0.6);
    fill: none;
    transition: all 0.3s ease;
}

.timeline-item.completed .timeline-marker {
    background: linear-gradient(135deg, #ff8c42, #ffd700);
    border-color: #ff8c42;
    box-shadow: 0 4px 20px rgba(255, 140, 66, 0.5);
    transform: translateX(-18px) scale(1.05);
}

.timeline-item.completed .timeline-marker svg {
    stroke: #0a1821;
}

.timeline-item.current .timeline-marker {
    background: rgba(10, 24, 33, 0.9);
    border-color: #4ecdc4;
    border-width: 3px;
    animation: pulse 2s infinite;
    box-shadow: 0 4px 20px rgba(78, 205, 196, 0.4);
}

.timeline-item.current .timeline-marker svg {
    stroke: #4ecdc4;
    filter: drop-shadow(0 0 2px #4ecdc4);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(78, 205, 196, 0.4), 0 0 0 0 rgba(78, 205, 196, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(78, 205, 196, 0.4), 0 0 0 12px rgba(78, 205, 196, 0);
    }
}

.timeline-content h4 {
    font-size: 1.2rem;
    margin: 0 0 0.5rem 0;
    color: rgba(255, 255, 255, 0.9);
}

.timeline-item.current .timeline-content h4 {
    color: #ff8c42;
}

.timeline-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.timeline-date {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 140, 66, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 140, 66, 0.2);
}

.timeline-date.estimated {
    background: rgba(78, 205, 196, 0.1);
    border-color: rgba(78, 205, 196, 0.2);
    color: rgba(78, 205, 196, 0.7);
}

.timeline-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.timeline-focus {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
    padding: 0.75rem;
    background: rgba(255, 140, 66, 0.1);
    border-left: 3px solid var(--primary-warm);
    border-radius: 4px;
    backdrop-filter: blur(10px);
}

.timeline-focus strong {
    color: var(--primary-warm);
}

.timeline-notes {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stage-progress {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

.progress-updates {
    text-align: center;
}

.progress-updates h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.updates-cta {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
}

.updates-cta a {
    color: #ff8c42;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 140, 66, 0.3);
    transition: border-color 0.3s ease;
}

.updates-cta a:hover {
    border-bottom-color: #ff8c42;
}

/* No Content State */
.no-content {
    text-align: center;
    padding: 4rem 2rem;
}

.no-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2rem;
}

/* Related News Section */
.related-news {
    padding: var(--section-spacing) var(--section-padding-x);
    background: rgba(255, 255, 255, 0.02);
}

.related-news .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.related-news .section-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
}

.related-news .section-header p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
}

.related-news-grid {
    max-width: var(--container-max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

/* Responsive adjustments for book pages */
@media (max-width: 1024px) {
    .book-hero-content {
        grid-template-columns: 250px 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .book-hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .book-hero-cover {
        position: static;
        max-width: 300px;
        margin: 0 auto;
    }

    .book-hero-meta {
        flex-direction: column;
        gap: 1rem;
    }

    .progress-stats-grid {
        grid-template-columns: 1fr;
    }

    .characters-grid {
        grid-template-columns: 1fr;
    }

    .related-news-grid {
        grid-template-columns: 1fr;
    }

    .sample-text {
        padding: 2rem 1.5rem;
    }

    /* Timeline mobile adjustments */
    .timeline {
        padding-left: 1.5rem;
    }

    .timeline-marker {
        width: 35px;
        height: 35px;
        transform: translateX(-16px);
    }

    .timeline-marker svg {
        width: 18px;
        height: 18px;
    }

    .timeline-item.completed .timeline-marker {
        transform: translateX(-16px) scale(1.05);
    }
}

@media (max-width: 480px) {
    .book-tabs {
        gap: 0;
    }

    .tab-btn {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }

    .progress-stat-card {
        flex-direction: column;
        text-align: center;
    }

    /* Very small screens - compact timeline */
    .timeline {
        padding-left: 1rem;
    }

    .timeline-marker {
        width: 30px;
        height: 30px;
        transform: translateX(-13px);
    }

    .timeline-marker svg {
        width: 16px;
        height: 16px;
    }

    .timeline-item.completed .timeline-marker {
        transform: translateX(-13px) scale(1.05);
    }
}

/* ============================================
   RESPONSIVE STYLES FOR ALL BOOKS/SERIES PAGES
   ============================================ */

@media (max-width: 768px) {
    .page-header {
        min-height: 25vh;
        padding: 3rem var(--section-padding-x) 1.5rem;
    }

    .books-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .sort-options {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
        margin-bottom: 2rem;
    }

    .series-card-header {
        padding: 2rem 1.5rem 1rem 1.5rem;
    }

    .series-card-body {
        padding: 1.5rem;
    }

    .series-info-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .series-card-footer {
        padding: 1rem 1.5rem;
    }

    .books-list li {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .book-number {
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 2rem;
    }

    .page-header p {
        font-size: 0.95rem;
    }

    .books-filters,
    .series-filters {
        gap: 0.5rem;
    }

    .filter-btn {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }

    .filter-icon {
        width: 14px;
        height: 14px;
    }

    .books-controls {
        flex-direction: column;
        gap: 1rem;
    }

    .sort-options {
        width: 100%;
        justify-content: space-between;
    }

    .books-count {
        padding: 0.75rem;
        font-size: 0.9rem;
    }

    .books-count .count-number {
        font-size: 1.3rem;
    }

    .book-card-cover {
        height: 200px;
    }

    .book-cover-icon {
        width: 60px;
        height: 60px;
    }

    .book-cover-status {
        font-size: 1rem;
    }

    .book-card-content {
        padding: 1.5rem;
    }

    .book-card-title {
        font-size: 1.3rem;
    }

    .book-card-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .book-card-action {
        width: 100%;
    }

    .read-more {
        width: 100%;
        justify-content: center;
        padding: 0.75rem;
        background: rgba(255, 140, 66, 0.1);
        border-radius: 0.5rem;
        border: 1px solid rgba(255, 140, 66, 0.2);
    }

    .progress-details {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .series-card-title {
        font-size: 1.6rem;
    }

    .series-tagline {
        font-size: 1rem;
    }

    .series-card-header {
        padding: 1.5rem 1rem 0.75rem 1rem;
    }

    .series-card-body {
        padding: 1rem;
    }

    .empty-state {
        padding: 3rem 1.5rem;
    }

    .empty-icon {
        width: 60px;
        height: 60px;
    }

    .empty-state h3 {
        font-size: 1.2rem;
    }

    .empty-state p {
        font-size: 0.9rem;
    }

    /* New Book Card Responsive */
    .book-card-new {
        max-width: 100%;
    }

    .book-cover-section {
        height: 220px;
    }

    .cover-book-icon {
        width: 70px;
        height: 70px;
    }

    .cover-title {
        font-size: 1.2rem;
    }

    .book-info-section {
        padding: 1.5rem;
        gap: 1rem;
    }

    .book-title {
        font-size: 1.4rem;
    }

    .book-synopsis {
        font-size: 0.9rem;
    }

    .book-progress-section {
        padding: 1rem;
    }

    .progress-percent {
        font-size: 1.2rem;
    }

    .progress-stats {
        flex-direction: column;
        gap: 0.5rem;
    }

    .stat-item {
        font-size: 0.75rem;
    }

    .book-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .book-cta {
        width: 100%;
        justify-content: center;
    }

    .books-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Streamlined Header Responsive */
    .page-header-clean {
        padding: calc(70px + 2rem) var(--section-padding-x) 2rem;
    }

    .header-content-wrapper {
        gap: 2rem;
    }

    .header-text h1 {
        font-size: 2.5rem;
    }

    .header-text p {
        font-size: 1rem;
    }

    .header-filters {
        gap: 0.5rem;
    }

    .quick-filter {
        padding: 0.7rem 1.25rem;
        font-size: 0.85rem;
        flex: 1;
        min-width: calc(50% - 0.25rem);
        justify-content: center;
    }

    .filter-count {
        min-width: 24px;
        height: 24px;
        font-size: 0.75rem;
    }

    .empty-icon-wrapper {
        width: 100px;
        height: 100px;
    }

    .empty-icon-wrapper svg {
        width: 50px;
        height: 50px;
    }

    .empty-state-clean h3 {
        font-size: 1.4rem;
    }

    .empty-state-clean p {
        font-size: 1rem;
    }
}
