        :root {
            --color-bg-dark: #0D0A0B;
            --color-bg-section: #151213;
            --color-blood: #722F37;
            --color-blood-dark: #4A1F24;
            --color-blood-light: #A84B55;
            --color-bone: #E8E0D5;
            --color-bone-muted: #A89F94;
            --color-text: #C9C2B8;
            --font-display: 'Cinzel', serif;
            --font-body: 'Crimson Pro', serif;
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-body);
            background-color: var(--color-bg-dark);
            color: var(--color-text);
            font-size: clamp(16px, 2.5vw, 18px);
            line-height: 1.7;
            overflow-x: hidden;
        }

        /* Noise texture overlay */
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
            opacity: 0.03;
            pointer-events: none;
            z-index: 1000;
        }

        img {
            max-width: 100%;
            height: auto;
        }
a {
    color: var(--color-blood-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-bone);
}
        /* ==================== NAVIGATION ==================== */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            padding: 1.2rem 4%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: transparent;
            transition: background 0.3s ease, box-shadow 0.3s ease;
        }

        nav.scrolled {
            background: rgba(13, 10, 11, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
        }

        .logo {
            font-family: var(--font-display);
            font-size: clamp(0.8rem, 2.5vw, 1.1rem);
            letter-spacing: 0.15em;
            color: var(--color-bone);
            text-decoration: none;
            text-transform: uppercase;
            z-index: 101;
        }

        .nav-links {
            display: flex;
            gap: clamp(1.5rem, 3vw, 3rem);
            list-style: none;
        }

        .nav-links a {
            font-family: var(--font-display);
            font-size: 0.75rem;
            letter-spacing: 0.12em;
            color: var(--color-bone-muted);
            text-decoration: none;
            text-transform: uppercase;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--color-blood-light);
            transition: width 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--color-bone);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        /* Hamburger Menu */
        .hamburger {
            display: none;
            flex-direction: column;
            justify-content: space-between;
            width: 28px;
            height: 20px;
            cursor: pointer;
            z-index: 101;
            background: none;
            border: none;
            padding: 0;
        }

        .hamburger span {
            display: block;
            width: 100%;
            height: 2px;
            background: var(--color-bone);
            transition: all 0.3s ease;
            transform-origin: center;
        }

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

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

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

        /* Mobile Menu Overlay */
        .mobile-menu {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(13, 10, 11, 0.98);
            z-index: 99;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 2rem;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }

        .mobile-menu.active {
            opacity: 1;
            visibility: visible;
        }

        .mobile-menu a {
            font-family: var(--font-display);
            font-size: 1.2rem;
            letter-spacing: 0.15em;
            color: var(--color-bone);
            text-decoration: none;
            text-transform: uppercase;
            padding: 0.5rem 1rem;
            transition: color 0.3s ease;
        }

        .mobile-menu a:hover {
            color: var(--color-blood-light);
        }

        /* ==================== HERO IMAGE (FULLSCREEN) ==================== */
        .hero-image {
            position: relative;
            height: 100vh;
            height: 100dvh;
            width: 100%;
            overflow: hidden;
        }

        .hero-image-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 120%;
            background-image: url('../images/herobild.jpg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            will-change: transform;
        }

        .hero-image-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(
                to bottom,
                rgba(13, 10, 11, 0.4) 0%,
                rgba(13, 10, 11, 0.2) 40%,
                rgba(13, 10, 11, 0.7) 100%
            );
        }

        .hero-image-content {
            position: absolute;
            bottom: 10%;
            left: 50%;
            transform: translateX(-50%);
            text-align: center;
            z-index: 2;
            width: 90%;
        }

        .hero-main-title {
            font-family: var(--font-display);
            font-size: clamp(2.5rem, 8vw, 6rem);
            font-weight: 400;
            color: var(--color-bone);
            line-height: 1.1;
            letter-spacing: 0.02em;
            margin-bottom: 2rem;
            text-shadow: 0 4px 30px rgba(0, 0, 0, 0.8);
        }

        .hero-main-title span {
            color: var(--color-blood-light);
        }

        .scroll-indicator {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
            color: var(--color-bone);
            font-family: var(--font-display);
            font-size: 0.7rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            animation: bounce 2s infinite;
        }

        .scroll-indicator svg {
            width: 24px;
            height: 24px;
            stroke: var(--color-bone);
            stroke-width: 2;
            fill: none;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0);
            }
            40% {
                transform: translateY(-10px);
            }
            60% {
                transform: translateY(-5px);
            }
        }

        /* ==================== BOOK INFO SECTION ==================== */
        .book-info {
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: center;
            padding: 6rem 4% 5rem;
            gap: 2rem;
            position: relative;
            overflow: hidden;
            background: var(--color-bg-dark);
        }

        .book-info::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 60%;
            height: 100%;
            background: radial-gradient(ellipse at 70% 50%, var(--color-blood-dark) 0%, transparent 60%);
            opacity: 0.3;
            pointer-events: none;
        }

        .book-info-content {
            padding-right: 2rem;
            animation: fadeInUp 1s ease-out;
            position: relative;
            z-index: 1;
        }

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

        .badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: var(--color-blood-dark);
            padding: 0.4rem 0.8rem;
            font-family: var(--font-display);
            font-size: clamp(0.6rem, 1.5vw, 0.7rem);
            letter-spacing: 0.1em;
            text-transform: uppercase;
            margin-bottom: 1.5rem;
            border-left: 2px solid var(--color-blood);
        }

        .badge svg {
            width: 14px;
            height: 14px;
            fill: var(--color-bone);
            flex-shrink: 0;
        }

        .book-title {
            font-family: var(--font-display);
            font-size: clamp(1.8rem, 5vw, 4rem);
            font-weight: 400;
            color: var(--color-bone);
            line-height: 1.2;
            margin-bottom: 1.2rem;
            letter-spacing: 0.02em;
        }

        .book-title span {
            color: var(--color-blood-light);
        }

        .tagline {
            font-size: clamp(1rem, 2.5vw, 1.4rem);
            font-style: italic;
            font-weight: 300;
            color: var(--color-bone-muted);
            margin-bottom: 1.5rem;
            padding-left: 1.2rem;
            border-left: 2px solid var(--color-blood);
        }

        .book-description {
            font-size: clamp(0.95rem, 2vw, 1.1rem);
            max-width: 500px;
            margin-bottom: 2rem;
            color: var(--color-text);
        }

        .book-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            margin-bottom: 2rem;
            padding: 1.2rem 0;
            border-top: 1px solid rgba(232, 224, 213, 0.1);
            border-bottom: 1px solid rgba(232, 224, 213, 0.1);
        }

        .meta-item {
            text-align: left;
        }

        .meta-label {
            font-family: var(--font-display);
            font-size: clamp(0.55rem, 1.2vw, 0.65rem);
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--color-bone-muted);
            margin-bottom: 0.25rem;
        }

        .meta-value {
            font-size: clamp(0.85rem, 1.8vw, 1rem);
            color: var(--color-bone);
        }

        .cta-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .btn {
            font-family: var(--font-display);
            font-size: clamp(0.65rem, 1.5vw, 0.75rem);
            letter-spacing: 0.12em;
            text-transform: uppercase;
            text-decoration: none;
            padding: 0.9rem 1.5rem;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
            text-align: center;
        }

        .btn-primary {
            background: var(--color-blood);
            color: var(--color-bone);
        }

        .btn-primary:hover {
            background: var(--color-blood-light);
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(114, 47, 55, 0.3);
        }

        .btn-secondary {
            background: transparent;
            color: var(--color-bone);
            border: 1px solid rgba(232, 224, 213, 0.3);
        }

        .btn-secondary:hover {
            border-color: var(--color-bone);
            background: rgba(232, 224, 213, 0.05);
        }

        /* Book Cover */
        .book-info-visual {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .book-cover {
            position: relative;
            transform: perspective(1000px) rotateY(-5deg);
            transition: transform 0.5s ease;
        }

        .book-cover:hover {
            transform: perspective(1000px) rotateY(0deg);
        }

        .book-cover img {
            max-height: 60vh;
            width: auto;
            box-shadow: 
                -20px 20px 60px rgba(0, 0, 0, 0.5),
                0 0 100px rgba(114, 47, 55, 0.2);
        }

        /* ==================== SECTIONS ==================== */
        section {
            padding: clamp(3rem, 8vw, 8rem) 4%;
            position: relative;
        }

        .section-header {
            text-align: center;
            margin-bottom: clamp(2rem, 5vw, 4rem);
        }

        .section-label {
            font-family: var(--font-display);
            font-size: clamp(0.8rem, 2vw, 0.95rem);
            letter-spacing: 0.25em;
            text-transform: uppercase;
            color: var(--color-blood-light);
            margin-bottom: 0.8rem;
        }

        .section-title {
            font-family: var(--font-display);
            font-size: clamp(1.5rem, 4vw, 3rem);
            font-weight: 400;
            color: var(--color-bone);
            letter-spacing: 0.05em;
        }

        /* ==================== ABOUT SECTION ==================== */
        .about {
            background: var(--color-bg-dark);
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: clamp(2rem, 5vw, 4rem);
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .author-image {
            position: relative;
        }

        .author-image img {
            width: 100%;
            height: auto;
            aspect-ratio: 1/1;
            object-fit: cover;
            object-position: center top;
            border: 1px solid rgba(232, 224, 213, 0.1);
        }

        .author-image::after {
            content: '';
            position: absolute;
            top: 1rem;
            left: 1rem;
            right: -1rem;
            bottom: -1rem;
            border: 1px solid var(--color-blood);
            z-index: -1;
        }

        .about-content h3 {
            font-family: var(--font-display);
            font-size: clamp(1.2rem, 3vw, 1.8rem);
            font-weight: 400;
            color: var(--color-bone);
            margin-bottom: 1.2rem;
        }

        .about-content p {
            margin-bottom: 1.2rem;
        }

        .story-highlight {
            background: var(--color-bg-section);
            padding: 1.2rem 1.5rem;
            border-left: 3px solid var(--color-blood);
            margin: 1.5rem 0;
            font-style: italic;
        }

        /* ==================== WORLD SECTION ==================== */
        .world {
            background: var(--color-bg-section);
        }

        .map-container {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
        }

        .map-container img {
            width: 100%;
            height: auto;
            filter: sepia(10%) contrast(1.1);
            border: 1px solid rgba(232, 224, 213, 0.1);
        }

        .map-caption {
            text-align: center;
            margin-top: 1.2rem;
            font-style: italic;
            color: var(--color-bone-muted);
            font-size: clamp(0.9rem, 2vw, 1rem);
        }

        /* ==================== PRESS SECTION ==================== */
        .press {
            background: var(--color-bg-section);
        }

        .press-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
            max-width: 900px;
            margin: 0 auto;
        }

        .press-item {
            background: var(--color-bg-dark);
            padding: clamp(1.2rem, 3vw, 2rem);
            border: 1px solid rgba(232, 224, 213, 0.1);
            transition: border-color 0.3s ease;
        }

        .press-item:hover {
            border-color: var(--color-blood);
        }

        .press-source {
            font-family: var(--font-display);
            font-size: 0.7rem;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--color-blood-light);
            margin-bottom: 0.8rem;
        }

        .press-title {
            font-size: clamp(1rem, 2.5vw, 1.2rem);
            color: var(--color-bone);
            margin-bottom: 0.5rem;
        }

        .press-link {
            font-family: var(--font-display);
            font-size: 0.7rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--color-bone-muted);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            margin-top: 1rem;
            transition: color 0.3s ease;
        }

        .press-link:hover {
            color: var(--color-bone);
        }

        /* ==================== CONTACT SECTION ==================== */
        .contact {
            background: var(--color-bg-dark);
            text-align: center;
        }

        .contact-intro {
            max-width: 600px;
            margin: 0 auto 2rem;
            font-size: clamp(0.95rem, 2vw, 1.1rem);
        }

        .contact-email {
            font-family: var(--font-display);
            font-size: clamp(0.9rem, 2.5vw, 1.5rem);
            color: var(--color-bone);
            text-decoration: none;
            letter-spacing: 0.03em;
            padding: 0.8rem 1.5rem;
            border: 1px solid rgba(232, 224, 213, 0.2);
            display: inline-block;
            transition: all 0.3s ease;
            word-break: break-all;
        }

        .contact-email:hover {
            border-color: var(--color-blood);
            background: rgba(114, 47, 55, 0.1);
        }

        /* ==================== FOOTER ==================== */
        footer {
            padding: 2rem 4%;
            border-top: 1px solid rgba(232, 224, 213, 0.1);
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
            font-size: 0.85rem;
            color: var(--color-bone-muted);
        }

        .footer-links {
            display: flex;
            gap: 1.5rem;
        }

        .footer-links a {
            color: var(--color-bone-muted);
            text-decoration: none;
            transition: color 0.3s ease;
        }

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

        /* ==================== RESPONSIVE: TABLET ==================== */
        @media (max-width: 1024px) {
            .book-info {
                grid-template-columns: 1fr;
                text-align: center;
                padding-top: 4rem;
                gap: 2rem;
            }

            .book-info-content {
                padding-right: 0;
                order: 2;
            }

            .book-info-visual {
                order: 1;
            }

            .book-cover {
                transform: none;
            }

            .book-cover:hover {
                transform: scale(1.02);
            }

            .book-cover img {
                max-height: 45vh;
            }

            .tagline {
                padding-left: 0;
                border-left: none;
                border-top: 2px solid var(--color-blood);
                border-bottom: 2px solid var(--color-blood);
                padding: 1rem 0;
                max-width: 400px;
                margin-left: auto;
                margin-right: auto;
            }

            .book-description {
                margin-left: auto;
                margin-right: auto;
            }

            .book-meta {
                justify-content: center;
            }

            .cta-buttons {
                justify-content: center;
            }

            .about-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .author-image {
                max-width: 300px;
                margin: 0 auto 1rem;
            }

            .author-image::after {
                display: none;
            }

            .story-highlight {
                text-align: left;
            }

            .about-content p {
                text-align: left;
            }
        }

        /* ==================== RESPONSIVE: MOBILE ==================== */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .hamburger {
                display: flex;
            }

            .mobile-menu {
                display: flex;
            }

           .hero-image {
    height: 60vh;
    height: 60dvh;
}

            .hero-image-bg {
                background-image: url('../images/herobild-mobile.jpg');
                background-position: center center;
            }

            .hero-image-content {
    bottom: 40%;
}
.scroll-indicator {
    position: absolute;
    bottom: -90%;
    left: 40%;
    transform: translateX(-50%);
}
            .book-cover img {
                max-height: 35vh;
                max-width: 60vw;
            }

            .book-meta {
                gap: 1.5rem;
            }

            .meta-item {
                text-align: center;
            }

            .cta-buttons {
                flex-direction: column;
                width: 100%;
                max-width: 280px;
                margin: 0 auto;
            }

            .btn {
                width: 100%;
            }

            .about-content h3 {
                text-align: center;
            }
        }

        /* ==================== RESPONSIVE: SMALL MOBILE ==================== */
        @media (max-width: 480px) {
            .badge {
                font-size: 0.55rem;
                padding: 0.35rem 0.6rem;
            }

            .book-cover img {
                max-height: 30vh;
            }

            .scroll-indicator {
                font-size: 0.6rem;
            }

            footer {
                flex-direction: column;
                text-align: center;
            }

            .footer-links {
                justify-content: center;
            }
        }

/* ==================== DAS BUCH PAGE STYLES ==================== */

main {
    padding-top: 5rem;
}

/* Intro Section */
.intro {
    background: var(--color-bg-dark);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
    max-width: 1400px;
    margin: 0 auto;
}

.intro-text {
    padding-right: 2rem;
}

.battle-cry {
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: var(--color-blood-light);
    line-height: 1.5;
    margin-bottom: 2rem;
    padding: 1.5rem;
    border-left: 3px solid var(--color-blood);
    background: var(--color-bg-section);
}

.battle-cry span {
    display: block;
    margin-bottom: 0.3rem;
}

.intro-text p {
    margin-bottom: 1.5rem;
}

.intro-text p:last-child {
    font-style: italic;
    color: var(--color-bone-muted);
}

.intro-map {
    position: relative;
}

.intro-map img {
    width: 100%;
    height: auto;
    border: 1px solid rgba(232, 224, 213, 0.1);
}

/* Characters Section */
.characters {
    background: var(--color-bg-section);
}

.characters-list {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.character-card {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2.5rem;
    align-items: start;
}

.character-card:nth-child(even) {
    grid-template-columns: 1fr 300px;
}

.character-card:nth-child(even) .character-image {
    order: 2;
}

.character-card:nth-child(even) .character-content {
    order: 1;
}

.character-image {
    position: relative;
}

.character-image img {
    width: 250px;
    height: 250px;
    aspect-ratio: 1/1;
    object-fit: cover;
    object-position: center top;
    border-radius: 50%;
    border: 2px solid var(--color-blood);
}

.character-image::after {
    display: none;
}

.character-content h3 {
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-weight: 400;
    color: var(--color-bone);
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
}

.character-content h3 span {
    display: block;
    font-size: 0.6em;
    color: var(--color-blood-light);
    letter-spacing: 0.1em;
    margin-top: 0.3rem;
}

.character-content p {
    line-height: 1.8;
}

/* Responsive: Das Buch Page */
@media (max-width: 1024px) {
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .intro-text {
        padding-right: 0;
    }

    .intro-map {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .character-card,
    .character-card:nth-child(even) {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .character-card:nth-child(even) .character-image,
    .character-card:nth-child(even) .character-content {
        order: unset;
    }

    .character-image {
        max-width: 280px;
        margin: 0 auto;
    }

    .character-image::after,
    .character-card:nth-child(even) .character-image::after {
        display: none;
    }

    .character-content {
        text-align: center;
    }

    .character-content p {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .battle-cry {
        font-size: 1rem;
        padding: 1rem;
    }
}

/* ==================== LEGAL PAGES ==================== */

.page-header {
    text-align: center;
    padding: 6rem 4% 3rem;
}

.page-label {
    font-family: var(--font-display);
    font-size: clamp(0.8rem, 2vw, 0.95rem);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--color-blood-light);
    margin-bottom: 0.8rem;
}

.page-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 400;
    color: var(--color-bone);
    letter-spacing: 0.05em;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 4% 4rem;
}

.legal-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-weight: 400;
    color: var(--color-bone);
    margin: 2.5rem 0 1rem;
    letter-spacing: 0.02em;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-family: var(--font-display);
    font-size: clamp(1rem, 2vw, 1.15rem);
    font-weight: 400;
    color: var(--color-bone-muted);
    margin: 1.5rem 0 0.8rem;
    letter-spacing: 0.02em;
}

.legal-content p {
    margin-bottom: 1rem;
}

.legal-content ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

.placeholder {
    color: var(--color-blood-light);
    font-style: italic;
}
