body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    display: grid;
    place-content: center;
    min-height: 100vh;
    background-color: oklch(98% 0.01 240);
    color: oklch(25% 0.05 240);
}

main {
    text-align: center;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
}

#lotto-numbers-container {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
    justify-content: center;
}

#generate-button {
    font-size: 1.2rem;
    padding: 0.8em 1.5em;
    border: none;
    border-radius: 8px;
    background-color: oklch(65% 0.15 260);
    color: white;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    box-shadow: 0 4px 15px 0 oklch(65% 0.15 260 / 35%);
}

#generate-button:hover, #generate-button:focus {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 oklch(65% 0.15 260 / 45%);
}

#contact-form-section {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid oklch(90% 0.01 240);
    width: 100%;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    text-align: left;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

label {
    font-weight: 600;
    font-size: 0.9rem;
}

input, textarea {
    padding: 0.8rem;
    border: 1px solid oklch(85% 0.01 240);
    border-radius: 6px;
    font-family: inherit;
    background-color: white;
}

textarea {
    min-height: 100px;
    resize: vertical;
}

.submit-button {
    font-size: 1rem;
    padding: 0.8em;
    border: none;
    border-radius: 6px;
    background-color: oklch(60% 0.1 150);
    color: white;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.2s;
}

.submit-button:hover {
    background-color: oklch(55% 0.1 150);
}

#comments-section {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid oklch(90% 0.01 240);
    width: 100%;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}