body {
    margin: 0;
    font-family: system-ui, sans-serif;
    background: #111;
    color: #eee;
    display: flex;
    justify-content: center;
}

.container {
    width: 100%;
    max-width: 480px;
    padding: 16px;
}

select, button {
    width: 100%;
    padding: 14px;
    font-size: 1.1rem;
    margin-bottom: 16px;
    border-radius: 10px;
    border: none;
}

button {
    background: #4da3ff;
    font-weight: bold;
	cursor: pointer;
}

button.secondary {
    background: #2a2a2a;
    color: #ccc;
    font-size: 0.9rem;
    padding: 10px;
	cursor: pointer;
}

.card {
    background: #1c1c1c;
    border-radius: 12px;
    padding: 16px;
}

.line {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.translation {
    color: #a0d8ff;
    margin-bottom: 10px;
    cursor: pointer;
}

.translation.hidden {
    filter: blur(8px);
    user-select: none;
}

.translation.hidden::after {
    content: " (tap to reveal)";
    font-size: 0.85rem;
    color: #888;
}

.source {
    font-size: 0.95rem;
	color: rgba(0, 0, 0, 0.0); /*0.0 = completely transparent. Increase it to increase opacity*/
    /*color: #ccc;*/
}