* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: system-ui, -apple-system, sans-serif;
    background: linear-gradient(to right, #000 50%, #d4af37 50%);
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

h1 {
    margin-bottom: 1rem;
}

.menu {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin: 1.5rem 0;
}

.menu-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #333;
    background: #f5f5f5;
    border-radius: 10px;
    padding: 1rem;
    width: 160px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.menu-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.menu-card img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

.menu-card span {
    font-weight: 600;
}

button {
    margin: 1.5rem 0 1rem;
    padding: 0.6rem 1.2rem;
    font-size: 1rem;
    border: none;
    border-radius: 6px;
    background: #2a7;
    color: #fff;
    cursor: pointer;
}

button:hover {
    background: #1f8c5e;
}

#result {
    font-size: 2rem;
    font-weight: bold;
    min-height: 2.5rem;
}

#status {
    color: #666;
}

#status.ok {
    color: #2a7;
}

#status.error {
    color: #c33;
}
