body {
    background-color: #4d1c7d; /* Matches your background purple */
    font-family: 'Modak', cursive;
    color: rgb(202, 192, 192);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    text-align: center;
    max-width: 400px;
    padding: 20px;
}

.logo { width: 100%; margin-bottom: 20px; }

.description { font-size: 1.2rem; line-height: 1.4; margin-bottom: 30px; }

.message-box {
    background: rgb(236, 208, 208);
    color: #333;
    padding: 20px;
    border-radius: 20px;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 30px;
    border: 4px solid #fff;
}

#generate-btn {
    background: none;
    border: none;
    cursor: pointer;
    transition: transform 0.2s;
}

#generate-btn:active { transform: scale(0.95); }

.btn-image { width: 120px; }

.footer-nav {
    margin-top: 30px;
    text-align: center;
}

.home-link {
    color: #ffde59; /* A nice contrasting yellow */
    text-decoration: none;
    font-family: 'Modak', cursive;
    font-size: 1.2rem;
    transition: opacity 0.3s;
}

.home-link:hover {
    opacity: 0.8;
    text-decoration: underline;
}