body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #111827;
    color: #f3f4f6;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 3rem 1rem;
}

h1 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #e5e7eb;
    text-align: center;
    width: 100%;
    word-wrap: break-word;
}

input {
    padding: 0.75rem 1rem;
    width: 80%;
    max-width: 500px;
    font-size: 1rem;
    background-color: #1f2937;
    color: #f9fafb;
    border: 1px solid #374151;
    border-radius: 0.5rem;
    outline: none;
    margin-bottom: 2rem;
    transition: border-color 0.2s;
}

input:focus {
    border-color: #3b82f6;
}

button {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border: none;
    border-radius: 0.5rem;
    background-color: #3b82f6;
    color: white;
    cursor: pointer;
    transition: background-color 0.2s;
    margin-left: 0.5rem;
    margin-right: 0.5rem;
}

button:hover {
    background-color: #2563eb;
}

#result {
    margin-top: 0.5rem;
    text-align: center;
}

#artwork {
    margin-bottom: 1.5rem;
    width: 30%;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

a.download-link,
a.download-link-uncompressed {
    display: inline-block;
    margin-top: 0.5rem;
    font-size: 1.1rem;
    color: #60a5fa;
    text-decoration: none;
}

a.download-link:hover,
a.download-link-uncompressed:hover {
    text-decoration: underline;
}

a.download-link.disabled,
a.download-link-uncompressed.disabled-uncompressed {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

#name {
    margin-top: 2rem;
    font-size: 1.2rem;
    font-weight: semibold;
    color: #f3f4f6;
    text-align: center;
    word-wrap: break-word;
}