body {
    font-family: Arial, sans-serif;
    background-image: url('./bookstore-background.png'); /* Replace with your out-of-focus bookstore image */
    background-size: cover;
    background-position: center;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

.content-wrapper {
    background: rgba(0, 0, 0, 0.6);
    padding: 40px 60px;
    border-radius: 10px;
    text-align: center;
    max-width: 600px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

h1, h2 {
    margin: 0;
    line-height: 1.2;
}

h1 {
    font-size: 2.5em;
    color: #ffd700;
}

h2 {
    font-size: 1.5em;
    font-style: italic;
    color: #eee;
    margin-bottom: 20px;
}

p {
    font-size: 1em;
    line-height: 1.6;
}

.book-info {
    margin-bottom: 30px;
}

#countdown-timer {
    margin: 20px 0;
}

#countdown-timer h3 {
    font-size: 2em;
    margin: 10px 0;
    color: #32cd32;
}

.promotion-area {
    margin-top: 30px;
}

#email-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

#email-form label {
    font-size: 1.2em;
}

#email-form input[type="email"] {
    width: 80%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    font-size: 1em;
}

#email-form button {
    padding: 12px 25px;
    background-color: #32cd32;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1em;
    transition: background-color 0.3s;
}

#email-form button:hover {
    background-color: #28a745;
}

.download-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2em;
    transition: background-color 0.3s;
}

.download-button:hover {
    background-color: #0056b3;
}

.success-message {
    color: #32cd32;
    font-size: 1.2em;
}

.error-text {
    color: #dc3545;
    font-size: 1em;
    
.promotion-area {
    display: block; /* Ensures the section is visible */
    /* You can add other styling here as needed, like padding, margin, etc. */
    text-align: center;
    padding: 20px;
}
}