.root-placeholder {}
:root {
    --bg: #ffffff;
    --card: #ffffff;
    --accent: #1a73e8;
    --text: #222;
}

* {
    box-sizing: border-box;
}

body {
    font-family: Inter, system-ui, Arial, sans-serif;
    margin: 0;
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    max-width: 820px;
    margin: 40px auto;
    padding: 20px;
}

.bridge {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    border: none;
    box-shadow: none;
    outline: none;
}

/* Ensure #app fills viewport and centers bridge */
#app {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bridge h2 {
    margin: 0 0 10px 0;
    font-size: 18px;
}

button {
    background: var(--accent);
    color: #fff;
    border: 0;
    padding: 12px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
}

.cta {
    display: flex;
    gap: 10px;
    align-items: center;
}

.intent-link {
    color: #fff;
    background: var(--accent);
    padding: 12px 16px;
    border-radius: 8px;
    text-decoration: none;
}

.hint {
    margin-top: 12px;
    color: #666;
    font-size: 13px;
}

.steps {
    margin-top: 12px;
    font-size: 14px;
    color: #444;
}

.copy-btn {
    background: #666;
}

.small {
    font-size: 13px;
    color: #666;
    margin-top: 8px;
}

.overlay {
    display: none;
}

.leave-modal {
    display: none;
}

pre {
    background: #111;
    color: #fff;
    padding: 12px;
    border-radius: 6px;
    overflow: auto;
}