* {
    box-sizing: border-box;
}

body {
    margin: 0;
    display: grid;
    place-items: center;
    min-height: 100vh;
    padding: 14px;
    background:
        linear-gradient(180deg, rgba(47, 191, 159, 0.1), transparent 300px),
        radial-gradient(circle at 78% 8%, rgba(217, 143, 69, 0.18), transparent 340px),
        radial-gradient(circle at 18% 82%, rgba(47, 191, 159, 0.12), transparent 300px),
        #0e1116;
    color: #e8edf2;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    line-height: 1.4;
}

.fallback-card {
    position: relative;
    display: grid;
    grid-template-columns: 74px minmax(0, 1fr);
    align-items: center;
    gap: 13px;
    width: min(460px, 100%);
    padding: 12px;
    overflow: hidden;
    border: 1px solid #2a3340;
    border-radius: 5px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.045), transparent 42%),
        rgba(23, 28, 37, 0.96);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.32);
}

.fallback-card::before {
    position: absolute;
    inset: 0;
    content: "";
    border-top: 1px solid rgba(69, 216, 184, 0.3);
    pointer-events: none;
}

.shield-wrap {
    display: grid;
    place-items: center;
    width: 74px;
    height: 104px;
    border: 1px solid rgba(47, 191, 159, 0.22);
    border-radius: 5px;
    background:
        linear-gradient(180deg, rgba(47, 191, 159, 0.08), transparent),
        #121720;
}

.shield-mark {
    display: block;
    width: 58px;
    max-width: 58px;
    height: auto;
    filter: drop-shadow(0 12px 20px rgba(47, 191, 159, 0.16));
}

.fallback-copy {
    min-width: 0;
}

.eyebrow {
    margin: 0 0 2px;
    color: #45d8b8;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

h1 {
    margin: 0;
    font-size: clamp(20px, 4vw, 25px);
    font-weight: 600;
    letter-spacing: 0;
}

.message {
    max-width: 330px;
    margin: 4px 0 0;
    color: #a3adba;
    font-size: 12px;
}

.status-line {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    padding: 4px 6px;
    border: 1px solid #2a3340;
    border-radius: 5px;
    background: #121720;
    color: #8f9aa8;
    font-size: 11px;
}

.status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #d98f45;
    box-shadow: 0 0 0 4px rgba(217, 143, 69, 0.12);
}

@media (max-width: 420px) {
    .fallback-card {
        grid-template-columns: 62px minmax(0, 1fr);
        gap: 10px;
        padding: 10px;
    }

    .shield-wrap {
        width: 62px;
        height: 104px;
    }

    .shield-mark {
        width: 48px;
        max-width: 48px;
    }
}
