/* SK Nudge — okno s nabídkou hnojik.sk pro slovenské návštěvníky.
   Markup je v DOM vždy; zobrazení řeší JS (atribut [hidden]). */

.hvg-skn[hidden] { display: none; }

.hvg-skn {
    position: fixed;
    inset: 0;
    z-index: 100000;            /* nad headerem (9999) */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.hvg-skn__overlay {
    position: absolute;
    inset: 0;
    background: rgba(17, 24, 39, 0.55);
    backdrop-filter: blur(2px);
}

.hvg-skn__card {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 420px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    padding: 28px 26px 24px;
    text-align: center;
    animation: hvg-skn-in 0.18s ease-out;
}

@keyframes hvg-skn-in {
    from { opacity: 0; transform: translateY(12px) scale(0.98); }
    to   { opacity: 1; transform: none; }
}

.hvg-skn__x {
    position: absolute;
    top: 10px;
    right: 12px;
    border: 0;
    background: transparent;
    font-size: 26px;
    line-height: 1;
    color: #9ca3af;
    cursor: pointer;
    padding: 4px 8px;
}
.hvg-skn__x:hover { color: #1f2937; }

.hvg-skn__flag {
    font-size: 40px;
    line-height: 1;
    margin-bottom: 6px;
}

.hvg-skn__title {
    margin: 4px 0 10px;
    font-size: 22px;
    font-weight: 700;
    color: #1f2937;
}

.hvg-skn__body {
    margin: 0 0 22px;
    font-size: 15px;
    line-height: 1.55;
    color: #4b5563;
}
.hvg-skn__body strong { color: #1f2937; }

.hvg-skn__actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hvg-skn__go {
    display: block;
    background: #16a34a;
    color: #fff !important;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    padding: 13px 18px;
    border-radius: 10px;
    transition: background 0.15s ease;
}
.hvg-skn__go:hover { background: #15803d; color: #fff !important; }

.hvg-skn__stay {
    border: 0;
    background: transparent;
    color: #6b7280;
    font-size: 14px;
    padding: 6px;
    cursor: pointer;
}
.hvg-skn__stay:hover { color: #1f2937; text-decoration: underline; }

/* Zamezit scrollu pozadí, když je okno otevřené. */
body.hvg-skn-open { overflow: hidden; }
