body {
    font-family: 'Montserrat', sans-serif;
    background-color: #f5f5f5;
    color: #333;
    margin: 0;
    padding: 0;
}

/* Glossy Black Header */
header {
    background: linear-gradient(to bottom, #000000, #1a1a1a); /* Deep black gradient */
    color: white;
    text-align: center;
    padding: 25px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    letter-spacing: 1.5px;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 10;
    overflow: hidden;
}

/* Glossy highlight line */
header::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to bottom, rgba(255,255,255,0.15), rgba(255,255,255,0));
    pointer-events: none;
}

/* Header Text */
header h1 {
    font-family: 'Times New Roman', Times, serif;
    font-weight: 400;
    font-size: 2.2em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8),
                 0 0 6px rgba(255, 255, 255, 0.4); /* Slight shine/glow */
    margin: 0;
}

.book-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
}

.book-cover img {
    max-width: 300px;
    height: auto;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.book-details h2 {
    font-family: 'Times New Roman', Times, serif;
    font-size: 2em;
    margin-bottom: 10px;
    font-weight: 700;           /* Bold */
    text-transform: uppercase;  /* UNSTUCK in all caps */
}

.book-details p {
    font-size: 1.2em;
    margin-bottom: 20px;
    font-weight: 400;
}

button#buyNow {
    background-color: #ff6a00;
    color: white;
    border: none;
    padding: 12px 25px;
    font-size: 1.2em;
    cursor: pointer;
    border-radius: 5px;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

button#buyNow:hover {
    background-color: #e55d00;
    transform: scale(1.02);
}

/* Store Buttons Container */
.store-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;       /* Center buttons */
    gap: 12px;
    margin-top: 12px;
    width: 100%;
}

/* Shared Button Style */
.amazon-btn, .google-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 15px;
    font-weight: 600;
    padding: 12px 18px;
    border-radius: 8px;
    text-decoration: none;
    width: 220px;              /* Reduced width */
    height: 46px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.12);
    transition: all 0.25s ease;
}

/* Amazon Kindle/Paperback Button */
.amazon-btn {
    background: linear-gradient(to bottom, #f7dfa5, #f0c14b); /* authentic Amazon color */
    color: #111;
    font-family: 'Amazon Ember', Arial, sans-serif;
    font-weight: 600;
    font-size: 15px;
    padding: 10px 18px;
    border: 1px solid #a88734;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 220px;
    height: 46px;
    box-shadow: 0 1px 0 rgba(255,255,255,0.6) inset, 0 2px 5px rgba(0,0,0,0.1);
    text-decoration: none;
    transition: background 0.2s ease, transform 0.1s ease;
}

.amazon-btn:hover {
    background: linear-gradient(to bottom, #f0c14b, #ddb347);
    transform: translateY(-1px);
}

.amazon-btn img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    background: #fff;
    border-radius: 4px;
    padding: 2px;
}

/* Google Play Button */
.google-btn {
    background: #fff;
    color: #202124;
    border: 1px solid #dadce0;
}
.google-btn:hover {
    background: #f1f3f4;
    transform: scale(1.02);
}

/* Logos */
.store-buttons img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    background: #fff;        /* White background for contrast */
    border-radius: 5px;
    padding: 2px;
}

.about-section {
    background-color: white;
    padding: 30px 20px;
    text-align: center;
    border-top: 1px solid #ccc;
    font-family: 'Montserrat', sans-serif;
}

footer {
    text-align: center;
    background-color: #1f1f1f;
    color: white;
    padding: 15px;
    margin-top: 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
}

/* Classic font for W.B. Archer */
header h1 {
    font-family: 'Times New Roman', Times, serif;
    font-weight: 400;
}