:root {
    --den-bg: #f5f5f7;
    --den-card: #fff;
    --den-border: #e5e5e5;
    --den-ink: #1d1d1f;
    --den-muted: #64748b;
    --den-red: #EB1000;
}

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

html, body {
    min-height: 100vh;
    min-height: 100dvh;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background: var(--den-bg);
    color: var(--den-ink);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 16px;
}

.denied {
    width: 100%;
    max-width: 440px;
}

.denied__card {
    background: var(--den-card);
    border: 1px solid var(--den-border);
    border-radius: 14px;
    box-shadow: 0 10px 36px rgba(0, 0, 0, 0.08);
    padding: 32px 28px 26px;
    text-align: center;
    animation: den-in 0.35s ease both;
}

@keyframes den-in {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

.denied__brand {
    margin-bottom: 14px;
}

.denied__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 14px;
    border-radius: 50%;
    background: rgba(235, 16, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.denied__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--den-red);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.denied__label {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--den-ink);
    margin-bottom: 10px;
}

.denied__msg {
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--den-muted);
    margin-bottom: 18px;
}

.denied__alert {
    text-align: left;
    font-size: 0.8125rem;
    line-height: 1.55;
    color: #444;
    background: #fff5f5;
    border: 1px solid #fecaca;
    border-radius: 8px;
    padding: 12px 14px;
    margin-bottom: 16px;
}

.denied__alert strong {
    color: var(--den-red);
}

.denied__fine {
    font-size: 0.75rem;
    color: #94a3b8;
}

@media (max-width: 480px) {
    .denied__card { padding: 26px 20px 22px; }
    .denied__title { font-size: 1.3rem; }
}
