:root {
    --bg-color: #2a2a2a;
    --text-color: #e0e0e0;
    --primary-color: #8a0000;
    /* Blood Red */
    --secondary-color: #4f5250;
    /* Dark Gray from cover */
    --accent-color: #ffffff;
    --font-heading: 'Special Elite', cursive;
    /* Typewriter style */
    --font-body: 'Lato', sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    margin: 0;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(to bottom right, #1a1a1a, #2a2a2a);
    padding: 100px 0;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    z-index: 2;
    flex-wrap: wrap;
    gap: 50px;
}

.book-container {
    flex: 1 1 300px;
    display: flex;
    justify-content: center;
}

.book-mockup {
    max-width: 350px;
    /* Thin book size */
    width: 100%;
    height: auto;
    transform: rotateY(-10deg);
    filter: drop-shadow(10px 10px 20px rgba(0, 0, 0, 0.8));
    transition: transform 0.3s ease;
}

.book-mockup:hover {
    transform: rotateY(0deg) scale(1.02);
}

.text-container {
    flex: 1 1 400px;
}

.author {
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #888;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.title {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    line-height: 1;
    color: var(--accent-color);
    margin: 0 0 10px 0;
    text-shadow: 2px 2px 0px var(--primary-color);
}

.subtitle {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 1.5rem;
    color: #ccc;
    margin-bottom: 30px;
    font-style: italic;
}

.tagline {
    font-size: 1.1rem;
    border-left: 3px solid var(--primary-color);
    padding-left: 15px;
    margin-bottom: 40px;
    color: #aaa;
}

.cta-group {
    display: flex;
    gap: 15px;
}

.btn {
    display: inline-block;
    padding: 15px 35px;
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary-color);
}

.btn-secondary {
    background-color: transparent;
    color: #fff;
    border-color: #fff;
}

.btn-secondary:hover {
    background-color: #fff;
    color: #000;
}

/* Synopsis Section */
.synopsis {
    padding: 80px 0;
    background-color: #222;
    border-top: 1px solid #333;
}

.content-block h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.content-block p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #ccc;
}

.content-block strong {
    color: var(--primary-color);
}

/* Quote Section */
.quote-section {
    padding: 100px 0;
    text-align: center;
    background: radial-gradient(circle, #333 0%, #1a1a1a 100%);
}

blockquote {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: #fff;
    margin: 0 0 20px 0;
}

cite {
    color: var(--primary-color);
    font-style: normal;
    font-weight: bold;
    letter-spacing: 1px;
}

/* Excerpt Section */
.excerpt {
    padding: 80px 0;
    background-color: #1f1f1f;
    position: relative;
    overflow: hidden;
}

.excerpt::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-family: var(--font-heading);
    font-size: 10rem;
    color: rgba(255, 255, 255, 0.05);
}

.excerpt-text {
    font-family: 'Special Elite', cursive;
    font-size: 1.2rem;
    color: #bbb;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.btn-centered {
    display: table;
    margin: 0 auto;
}

footer {
    padding: 40px 0;
    background-color: #111;
    text-align: center;
    font-size: 0.9rem;
    color: #555;
    border-top: 1px solid #222;
}

@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .title {
        font-size: 3rem;
    }

    .cta-group {
        justify-content: center;
    }

    .tagline {
        border-left: none;
        border-top: 3px solid var(--primary-color);
        padding-top: 15px;
        padding-left: 0;
    }
}