/* Body and Background */
body {
    background-color: #acd3fa;
    /* Light blue background */
    margin: 0;
    padding: 20px;
    font-family: 'Verdana', sans-serif;
    color: #333;
    text-align: center;
}

/* Header Styling */
.site-header {
    background-color: #2d4d9e;
    /* Deep red background */
    color: white;
    padding: 20px;
}

.site-header h1 {
    margin: 0;
    font-size: 2.5em;
}

.site-header p {
    margin-top: 10px;
    font-size: 1.2em;
}

/* Kindle Unlimited Banner Styling */
.ku-banner {
    background-color: #1a53ff;
    /* Same blue as your categories */
    color: white;
    /* White text color */
    padding: 20px;
    border-radius: 10px;
    margin: 20px auto;
    max-width: 1000px;
    /* Adjust the width as needed */
    text-align: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.ku-banner a {
    text-decoration: none;
    color: inherit;
    /* Inherits the white color */
    font-family: 'Verdana', sans-serif;
    display: block;
}

.ku-banner p {
    margin: 0;
    font-size: 1.2em;
}

.ku-banner .cta-link {
    color: #ffcc00;
    /* Yellow color to highlight the CTA */
    font-weight: bold;
    text-decoration: underline;
}

/* Hover effect for the banner */
.ku-banner:hover {
    background-color: #0041cc;
    /* Darker blue on hover */
}

.ku-banner a:hover .cta-link {
    color: #ffd700;
    /* Lighter yellow on hover */
}


/* Genre Container */
.genre-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    text-align: center;
}

/* Genre Item (Each box) */
.genre-item {
    flex: 0 1 220px;
    text-align: center;
    margin-bottom: 20px;
}

.genre-box {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    transition: transform 0.3s;
}

.genre-box:hover {
    transform: scale(1.05);
    /* Slight zoom effect on hover */
}

.genre-box h2 {
    font-size: 1.5em;
    color: #003acc;
    /* Deep red color for headings */
    margin-bottom: 10px;
}

.genre-box p {
    font-size: 1em;
    color: #666;
}

/* Footer Styling */
.site-footer {
    background-color: #333;
    color: white;
    padding: 10px;
}

.site-footer p {
    margin: 0;
}