/* ── PRESSEKONTROLLE OMGUS — Alemania 1945 ── */

.pk-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.92);
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.pk-overlay.open {
    display: flex !important;
}

.pk-box {
    width: 100%;
    max-width: 660px;
    background: #e8e0cc;
    border: 2px solid #2c2c1a;
    font-family: 'Share Tech Mono', monospace;
}

.pk-bar {
    background: #2c2c1a;
    color: #d4c87a;
    padding: 8px 16px;
    display: flex;
    justify-content: space-between;
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.pk-header {
    padding: 20px 24px 16px;
    border-bottom: 2px solid #2c2c1a;
    text-align: center;
}

.pk-seal {
    font-size: 1.4rem;
    color: #2c2c1a;
    margin-bottom: 6px;
}

.pk-agency {
    font-size: 0.62rem;
    letter-spacing: 0.14em;
    color: #5a5030;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.pk-header h2 {
    font-size: 1rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #2c2c1a;
    margin: 0 0 6px;
    font-weight: normal;
}

.pk-docnum {
    font-size: 0.6rem;
    color: #777055;
    letter-spacing: 0.1em;
}

.pk-body {
    padding: 22px 26px 28px;
}

.pk-material {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    color: #2c2c1a;
    background: #d8d0b8;
    border-left: 3px solid #2c2c1a;
    padding: 10px 14px;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.pk-checklist {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pk-check-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.68rem;
    color: #2c2c1a;
    letter-spacing: 0.06em;
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.pk-check-item.visible {
    opacity: 1;
    transform: translateX(0);
}

.pk-check-icon {
    font-size: 0.8rem;
    width: 18px;
    flex-shrink: 0;
}

.pk-check-icon.ok   { color: #2a6a2a; }
.pk-check-icon.fail { color: #8b0000; }
.pk-check-icon.wait { color: #888; animation: waitPulse 0.8s steps(1) infinite; }

@keyframes waitPulse {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.3; }
}

.pk-progress-wrap {
    margin-bottom: 18px;
}

.pk-progress-label {
    font-size: 0.62rem;
    letter-spacing: 0.14em;
    color: #5a5030;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.pk-bar-outer {
    background: #c8c0a8;
    border: 1px solid #2c2c1a;
    height: 14px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.pk-bar-fill {
    height: 100%;
    width: 0%;
    background: #2c2c1a;
    transition: width 0.2s linear;
}

.pk-percent {
    font-size: 0.65rem;
    color: #2c2c1a;
    letter-spacing: 0.12em;
    margin-top: 4px;
    text-align: right;
}

.pk-verdict {
    font-size: 1.3rem;
    font-weight: 900;
    letter-spacing: 0.2em;
    text-align: center;
    padding: 10px 0 4px;
    min-height: 40px;
    transform: rotate(-2deg);
    display: inline-block;
    width: 100%;
}

.pk-verdict.aprobado {
    color: #2a6a2a;
    border: 3px solid #2a6a2a;
}

.pk-verdict.confiscado {
    color: #8b0000;
    border: 3px solid #8b0000;
    animation: verdictBlink 0.5s steps(1) 3;
}

@keyframes verdictBlink {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0; }
}

.pk-redirect {
    font-size: 0.65rem;
    color: #777;
    letter-spacing: 0.14em;
    text-align: center;
    margin-top: 12px;
    min-height: 18px;
}