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

body {
    font-family: Georgia, 'Times New Roman', serif;
    background-color: #ffffff;
    color: #1a1a1a;
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.content {
    text-align: center;
    max-width: 600px;
    width: 100%;
}

.book-cover {
    max-width: 300px;
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 30px;
    object-fit: contain;
}

h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #8b0000;
    letter-spacing: 2px;
}

h2 {
    font-size: 1.5rem;
    font-weight: normal;
    margin-bottom: 30px;
    color: #666666;
    font-style: italic;
}

.coming-soon {
    font-size: 1.8rem;
    font-weight: bold;
    color: #8b0000;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.links {
    margin-bottom: 50px;
}

.substack-link {
    display: inline-block;
    background-color: #8b0000;
    color: #ffffff;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.substack-link:hover {
    background-color: #660000;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.3);
}

.mailing-list {
    padding-top: 30px;
}

.listmonk-form {
    text-align: left;
    max-width: 400px;
    margin: 0 auto;
}

.listmonk-form h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #8b0000;
    text-align: center;
}

.listmonk-form input[type="email"],
.listmonk-form input[type="text"] {
    width: 100%;
    padding: 12px;
    border: 2px solid #cccccc;
    background-color: #ffffff;
    color: #1a1a1a;
    border-radius: 5px;
    font-size: 1rem;
    margin-bottom: 15px;
}

.listmonk-form input[type="email"]:focus,
.listmonk-form input[type="text"]:focus {
    outline: none;
    border-color: #8b0000;
}

.listmonk-form input[type="checkbox"] {
    margin-right: 8px;
    transform: scale(1.2);
}

.listmonk-form label {
    color: #1a1a1a;
    font-weight: bold;
    cursor: pointer;
}

.listmonk-form span {
    color: #666666;
    font-size: 0.9rem;
    line-height: 1.4;
    display: block;
    margin-top: 5px;
}

.listmonk-form input[type="submit"] {
    width: 100%;
    background-color: #8b0000;
    color: #ffffff;
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 15px;
}

.listmonk-form input[type="submit"]:hover {
    background-color: #660000;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.3);
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 1.3rem;
    }
    
    .coming-soon {
        font-size: 1.5rem;
    }
    
    .substack-link {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 15px;
    }
    
    h1 {
        font-size: 2rem;
        letter-spacing: 1px;
    }
    
    .coming-soon {
        font-size: 1.3rem;
        letter-spacing: 2px;
    }
}