:root {
    --text-color: #333;
    --background-color: #fff;
    --accent-color: #007bff;
    --border-color: #ddd;
    --font-family-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --font-family-logo: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

body {
    font-family: var(--font-family-body);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    margin: 0;
    padding: 2rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    max-width: 800px;
    width: 90%;
    margin: auto;
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

header {
    text-align: center;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo {
    font-family: var(--font-family-logo);
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: transparent;
    -webkit-text-stroke: 1px #333;
    -moz-text-stroke: 1px #333;
    text-stroke: 1px #333;
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
    margin: 0 auto;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 150px;
    height: 1px;
    background-color: #333;
}

.subtitle {
    font-size: 1.25rem;
    font-weight: bold;
    color: #A0A0A0;
    margin: 0.25rem 0 0 0;
    text-align: center;
}

.welcome-section p {
    font-size: 1.25rem;
    text-align: left;
    margin-bottom: 1rem;
}

.search-section {
    text-align: center;
}

h2 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

form {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

input {
    width: 100%;
    max-width: 400px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border: 2px solid #555;
    border-radius: 25px;
    background-color: #fff;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}

button[type="submit"] {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    color: #fff;
    background-color: var(--accent-color);
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
    background-color: #0056b3;
}

footer {
    text-align: center;
    margin-top: 3rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
    font-size: 0.9rem;
    color: #888;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.legal-links a {
    color: #888;
    text-decoration: none;
    margin: 0 0.5rem;
}

.legal-links a:hover {
    text-decoration: underline;
}

@media (min-width: 600px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }
}
