/* =============================================================================
   CASINO THERMAL — main.css
   Etapa 1 — layout + statika  (přepis 1:1 podle reference)
   Prefixy: .ct- (global header/footer)  .nun-  .htx-  .jpn-  .akh-  .uvod-  .kt-
   =========================================================================== */

/* -----------------------------------------------------------------------------
   1) DESIGN TOKENS  (z reference)
   -------------------------------------------------------------------------- */
:root {
    --c-text:        #313131;
    --c-text-muted:  #666666;
    --c-text-quiet:  #888888;
    --c-bg:          #ffffff;
    --c-bg-soft:     #f5f5f3;
    --c-bg-warm:     #f0ede8;
    --c-border:      #e8e8e4;

    --c-green:       #18633D;
    --c-green-dark:  #0f4228;
    --c-gold:        #c0a068;
    --c-gold-soft:   #D1B577;

    --c-pulse:       #04C012;    /* zelená "live" pulzace */
    --c-overlay:     #d34545;    /* červená OVERLAY badge */

    --c-footer-bg:   #4B2A0B;

    --ff-display: "Libre Caslon Text", "Georgia", serif;
    --ff-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

    --container: 1360px;
    --header-h:        80px;
    --header-h-tablet: 72px;
    --header-h-phone:  70px;

    --transition-fast: 0.2s ease;
    --transition-med:  0.3s ease;
}

/* -----------------------------------------------------------------------------
   2) RESET / BASE
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
    margin: 0;
    font-family: var(--ff-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--c-text);
    background: var(--c-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: 0; padding: 0; }
h1, h2, h3, h4, h5, h6 {
    font-family: var(--ff-display);
    font-weight: 400;
    color: var(--c-text);
    margin: 0;
}
p { margin: 0 0 1em 0; }
p:last-child { margin-bottom: 0; }
ul { padding: 0; margin: 0; list-style: none; }

.site-main {
    display: block;
    min-height: calc(100vh - var(--header-h));
}

/* -----------------------------------------------------------------------------
   3) HEADER (.ct-header) — beze změny, z reference
   -------------------------------------------------------------------------- */
.ct-header {
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
    background: #fff;
    border-bottom: 1px solid var(--c-border);
}
.ct-header__inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 32px;
    height: var(--header-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}
.ct-header__left, .ct-header__right { display: flex; align-items: center; }
.ct-header__left  { gap: 56px; }
.ct-header__right { gap: 28px; }
.ct-header__logo { display: block; flex-shrink: 0; }
.ct-header__logo img { display: block; height: 48px; width: auto; }

.ct-nav__list { display: flex; align-items: center; gap: 36px; }
.ct-nav__link {
    display: inline-block;
    font-family: var(--ff-body);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--c-text);
    padding: 8px 0;
    position: relative;
    transition: color var(--transition-fast);
}
.ct-nav__link::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: 2px;
    height: 1px;
    background: var(--c-gold);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease;
}
.ct-nav__link:hover, .ct-nav__link--active { color: var(--c-gold); }
.ct-nav__link:hover::after, .ct-nav__link--active::after { transform: scaleX(1); }

.ct-header__socials { display: flex; align-items: center; gap: 14px; }
.ct-header__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px; height: 24px;
    color: var(--c-text);
    transition: color var(--transition-fast);
}
.ct-header__icon:hover { color: var(--c-gold); }
.ct-header__icon svg { width: 100%; height: 100%; display: block; }
.ct-header__icon--360 {
    width: auto;
    height: 24px;
    padding: 0;
    border: none;
    border-radius: 0;
    background: transparent;
}
.ct-header__icon--360 img {
    width: auto;
    height: 100%;
    display: block;
    transition: opacity var(--transition-fast);
}
.ct-header__icon--360:hover img { opacity: 0.75; }

.ct-lang-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 28px;
    padding: 0 8px;
    font-family: var(--ff-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--c-text);
    border: 1px solid var(--c-border);
    border-radius: 4px;
    text-transform: uppercase;
    background: #fff;
    transition: color var(--transition-fast), border-color var(--transition-fast);
}
.ct-lang-toggle:hover { color: var(--c-gold); border-color: var(--c-gold); }

.ct-lang { display: inline-flex; align-items: center; gap: 14px; font-family: var(--ff-body); }
.ct-lang__btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--c-text);
    padding: 4px 0;
    opacity: 0.5;
    transition: opacity var(--transition-fast), color var(--transition-fast);
}
.ct-lang__btn:hover { opacity: 1; }
.ct-lang__btn--active { opacity: 1; color: var(--c-text); }
.ct-lang__flag {
    display: block;
    width: 20px;
    height: 15px;
    border-radius: 2px;
    object-fit: cover;
    flex-shrink: 0;
}
.ct-lang-toggle__flag {
    display: block;
    width: 20px;
    height: 15px;
    border-radius: 2px;
    object-fit: cover;
    flex-shrink: 0;
}
.ct-lang-toggle { gap: 6px; }

.ct-burger {
    display: none;
    width: 36px; height: 36px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 7px;
}
.ct-burger__line {
    display: block;
    width: 28px;
    height: 2.5px;
    background: var(--c-text);
    transition: all var(--transition-med);
}

.ct-mobile {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: #fff;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: opacity var(--transition-med), transform var(--transition-med), visibility var(--transition-med);
    overflow-y: auto;
}
.ct-mobile--open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.ct-mobile__inner {
    min-height: 100vh;
    padding: 88px 32px 48px;
    display: flex;
    flex-direction: column;
    text-align: center;
}
.ct-mobile__close {
    position: absolute;
    top: 20px; right: 20px;
    width: 44px; height: 44px;
    border: 1px solid var(--c-border);
    background: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--c-text);
    transition: color var(--transition-fast), border-color var(--transition-fast);
}
.ct-mobile__close:hover { color: var(--c-gold); border-color: var(--c-gold); }
.ct-mobile__logo { display: flex; justify-content: center; margin-bottom: 32px; }
.ct-mobile__logo img { height: 56px; width: auto; }
.ct-mobile__nav { max-width: 480px; margin: 0 auto 40px; width: 100%; }
.ct-mobile__list { width: 100%; }
.ct-mobile__list li { border-bottom: 1px solid var(--c-border); }
.ct-mobile__list li:first-child { border-top: 1px solid var(--c-border); }
.ct-mobile__link {
    display: block;
    padding: 18px 0;
    font-family: var(--ff-body);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--c-text);
    transition: color var(--transition-fast);
}
.ct-mobile__link:hover { color: var(--c-gold); }
.ct-mobile__footer { display: flex; align-items: center; justify-content: space-between; max-width: 480px; margin: 0 auto; gap: 16px; }
.ct-mobile__socials { display: flex; align-items: center; gap: 20px; }
.ct-mobile__lang { display: flex; align-items: center; gap: 12px; font-family: var(--ff-body); }

/* -----------------------------------------------------------------------------
   4) HERO — jen video, žádný text, fixní výška 650px (z reference)
   -------------------------------------------------------------------------- */
.hero--video {
    position: relative;
    width: 100%;
    min-height: 650px;
    overflow: hidden;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero--video .hero__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
@media (max-width: 768px) {
    .hero--video { min-height: 420px; }
}
@media (max-width: 480px) {
    .hero--video { min-height: 340px; }
}

/* -----------------------------------------------------------------------------
   5) UVOD — Vítejte v Casinu Thermal (z reference 1:1)
   -------------------------------------------------------------------------- */
.uvod-wrap {
    padding: 40px 32px 100px;
    background: #ffffff;
}
.uvod-section {
    max-width: var(--container);
    margin: 0 auto;
    text-align: center;
    font-family: var(--ff-body);
    color: var(--c-text);
}
.uvod-title {
    font-family: var(--ff-display);
    font-size: 44px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--c-text);
    margin: 0 0 32px 0;
}
.uvod-text-wrap { position: relative; }
.uvod-text {
    font-family: var(--ff-body);
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 0.25px;
    color: var(--c-text);
    line-height: 1.65;
}
.uvod-text p { margin: 0 0 20px 0; }
.uvod-text p:last-child { margin: 0; }
.uvod-fade { display: none; }
.uvod-toggle { display: none; }

@media (max-width: 768px) {
    .uvod-wrap { padding: 40px 20px; }
    .uvod-title { font-size: 30px; line-height: 1.4; margin-bottom: 20px; }
    .uvod-text-wrap {
        max-height: 200px;
        overflow: hidden;
        transition: max-height 0.4s ease;
    }
    .uvod-text-wrap.is-open { max-height: 2000px; }
    .uvod-fade {
        display: block;
        position: absolute;
        bottom: 0; left: 0; right: 0;
        height: 80px;
        background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, #fff 100%);
        pointer-events: none;
        transition: opacity 0.3s ease;
    }
    .uvod-text-wrap.is-open .uvod-fade { opacity: 0; }
    .uvod-toggle {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        margin-top: 16px;
        padding: 8px 0;
        font-family: var(--ff-body);
        font-size: 13px;
        font-weight: 500;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        color: var(--c-gold);
        cursor: pointer;
    }
    .uvod-toggle__icon { width: 14px; height: 14px; }
    .uvod-text-wrap.is-open + .uvod-toggle { display: none; }
}

/* -----------------------------------------------------------------------------
   6) NAJDETE U NÁS (.nun-*)  — z reference 1:1
   -------------------------------------------------------------------------- */
.nun-wrap {
    padding: 0 clamp(16px, 3vw, 32px) 60px;
    margin-top: 80px;
    background: linear-gradient(180deg, #ffffff 0%, #F7F7F7 60%);
    position: relative;
    overflow-x: clip; /* prevence drobných sub-pixel overflow při zoomu */
}
.nun-inner {
    max-width: var(--container);
    margin: -140px auto 0;     /* karty vyjedou do bílé Vítejte sekce */
    padding-top: 40px;
    position: relative;
    z-index: 2;                /* nad šedou */
    box-sizing: border-box;
    width: 100%;
}
.nun-heading {
    font-family: var(--ff-display);
    font-size: 40px;
    font-weight: 400;
    color: var(--c-text);
    margin: 0 0 40px 0;
    line-height: 1.15;
    text-align: center;
}
.nun-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
}
.nun-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    padding: 24px;
    min-width: 0; /* grid item safety — bez tohoto může text vytlačit kartu */
}
.nun-card__image {
    overflow: hidden;
    aspect-ratio: 4 / 3;
}
.nun-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}
.nun-card__image:hover img { transform: scale(1.03); }
.nun-card__body {
    padding: 32px 8px 8px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.nun-card__title {
    font-family: var(--ff-display);
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 400;
    color: var(--c-text);
    margin: 0 0 24px 0;
    line-height: 1.15;
}
.nun-card__text {
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 0.5px;
    color: var(--c-text);
    line-height: 1.7;
    margin: 0 0 28px 0;
    /* min-height pryč — flex 1 na __body + margin-top: auto na buttonu zajistí stejnou pozici CTA */
}
.nun-card__list {
    margin: 0 0 32px 0;
    display: flex;
    flex-direction: column;
    flex: 1; /* roztáhne se podle obsahu, ne fixně */
}
.nun-card__list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-family: var(--ff-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--c-text);
    line-height: 1.5;
    padding: 9px 0;
}
.nun-usp-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    min-width: 22px;
    border-radius: 50%;
    background: var(--c-gold);
    margin-top: 1px;
}
.nun-usp-icon svg {
    width: 11px;
    height: 11px;
    fill: #fff;
}
.nun-card__btn {
    display: block;
    width: 100%;
    background: var(--c-green);
    color: #fff !important;
    font-family: var(--ff-body);
    font-size: clamp(14px, 1.2vw, 18px);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 1px solid var(--c-green);
    padding: 16px 18px;
    text-align: center;
    transition: background var(--transition-med), border-color var(--transition-med);
    line-height: 1.2;
    margin-top: auto;
    word-break: keep-all;
}
.nun-card__btn:hover {
    background: var(--c-green-dark);
    border-color: var(--c-green-dark);
}

/* Tablet: 2 sloupce */
@media (max-width: 1100px) {
    .nun-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    /* 3. karta vycentruj sama na novém řádku */
    .nun-card:nth-child(3) {
        grid-column: 1 / -1;
        max-width: calc(50% - 12px);
        margin: 0 auto;
    }
}

/* Mobil: 1 sloupec */
@media (max-width: 720px) {
    .nun-wrap { margin-top: 0; }
    .nun-inner { margin-top: 0; padding-top: 56px; }
    .nun-grid { grid-template-columns: 1fr; gap: 20px; }
    .nun-card,
    .nun-card:nth-child(3) {
        padding: 0;
        background: transparent;
        max-width: none;
        margin: 0;
    }
    .nun-card__image { aspect-ratio: auto; height: 280px; }
    .nun-card__body { padding: 20px 4px 4px; }
    .nun-card__title { font-size: 26px; margin-bottom: 14px; }
    .nun-card__text { font-size: 14px; line-height: 1.6; margin-bottom: 18px; }
    .nun-card__list { margin-bottom: 24px; }
    .nun-card__list li { font-size: 13px; padding: 7px 0; }
    .nun-card__btn { font-size: 14px; padding: 16px 20px; }
}

@media (max-width: 480px) {
    .nun-wrap { padding: 0 16px 56px; }
    .nun-inner { padding-top: 40px; }
    .nun-card__image { height: 200px; }
    .nun-heading { font-size: 32px; margin-bottom: 28px; }
}

/* -----------------------------------------------------------------------------
   7) NEJBLIŽŠÍ POKER TURNAJE  (.ph-*) — placeholder layout
   -------------------------------------------------------------------------- */
.ph-wrap {
    padding: 40px 32px 20px;
    background: #ffffff;
}
.ph-wrap--gray {
    background: #f5f5f3;
    padding: 64px 32px 80px;
}
.ph-inner {
    max-width: var(--container);
    margin: 0 auto;
}
.ph-heading {
    font-family: var(--ff-display);
    font-size: 40px;
    font-weight: 400;
    text-align: center;
    margin: 0 0 40px 0;
    color: var(--c-text);
}
.ph-heading--left {
    text-align: left;
    font-size: 32px;
    margin-bottom: 28px;
}
.ph-table-head {
    display: grid;
    grid-template-columns: 30px 30px 1fr 1fr 1.5fr 1fr 1fr;
    gap: 15px;
    padding: 15px 30px;
    background: var(--c-bg-soft);
    border-bottom: 1px solid var(--c-border);
    font-family: var(--ff-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--c-text-quiet);
    align-items: center;
}
.ph-empty {
    text-align: center;
    padding: 56px 20px;
    color: var(--c-text-muted);
    font-style: italic;
    background: var(--c-bg-soft);
    border-top: 1px solid var(--c-border);
}
.ph-empty small {
    display: block;
    margin-top: 8px;
    font-size: 12px;
    font-style: normal;
}

@media (max-width: 768px) {
    .ph-wrap { padding: 56px 16px; }
    .ph-heading { font-size: 30px; margin-bottom: 24px; }
    .ph-table-head { display: none; }
}

/* Turnaj item — collapsible row */
.turnaj-item {
    border-bottom: 1px solid #e0e0e0;
    background: transparent;
    overflow: hidden;
}
.turnaj-item.active { background: transparent; }
.turnaj-item.is-live .datum-text { color: var(--c-green); font-weight: 700; }

.turnaj-header {
    display: grid;
    grid-template-columns: 30px 30px 1fr 1fr 1.5fr 1fr 1fr;
    gap: 15px;
    padding: 15px 30px;
    cursor: pointer;
    align-items: center;
    font-family: var(--ff-body);
    font-size: 14px;
    color: var(--c-text);
}
.turnaj-arrow {
    font-size: 22px;
    color: var(--c-text-muted);
    transition: transform var(--transition-med);
    transform-origin: center;
}
.turnaj-item.active .turnaj-arrow { transform: rotate(90deg); color: var(--c-green); }

.turnaj-col { padding: 4px 0; }
.turnaj-col.turnaj-buyin { font-weight: 700; color: var(--c-green); }
.turnaj-col.turnaj-garance { font-weight: 700; color: var(--c-green); }
.turnaj-col.turnaj-status { text-align: center; }
.turnaj-col.turnaj-datum { font-weight: 600; }

.turnaj-status-dot {
    display: inline-block;
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--c-pulse);
    animation: tnow-pulse 1.6s infinite;
}

.turnaj-body { display: none; padding: 0; }
.turnaj-item.active .turnaj-body {
    display: block;
    padding: 24px 30px 30px;
    border-top: 1px solid var(--c-border-soft);
}
.turnaj-body-row {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 20px;
}
.turnaj-body-row > div {
    flex: 1 1 140px;
    font-size: 13px;
    color: var(--c-text);
    line-height: 1.6;
}
.turnaj-body-row strong {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--c-text-quiet);
    margin-bottom: 2px;
}

.turnaj-live-status {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}
.turnaj-overlay {
    display: inline-block;
    background: var(--c-overlay);
    color: #fff;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    animation: overlay-pulse 1.2s infinite;
}
@keyframes overlay-pulse {
    0%,100% { box-shadow: 0 0 0 0 rgba(211, 69, 69, 0.55); }
    70%     { box-shadow: 0 0 0 10px rgba(211, 69, 69, 0); }
}
.turnaj-live-pill {
    display: inline-block;
    background: var(--c-bg-soft);
    color: var(--c-text);
    padding: 6px 14px;
    font-size: 13px;
    border: 1px solid var(--c-border);
}

.turnaj-structure-toggle { margin-top: 24px; }
.turnaj-structure-toggle h4 {
    font-family: var(--ff-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--c-text-muted);
    margin: 0 0 10px;
}
.btn-struktura-toggle {
    background: var(--c-text);
    color: #fff;
    padding: 9px 18px;
    border: 0;
    font-family: var(--ff-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
}
.btn-struktura-toggle:hover { background: var(--c-green); }

.turnaj-structure { display: none; margin-top: 14px; }
.turnaj-structure.active { display: block; }
.turnajova-struktura-tab {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--ff-body);
    font-size: 13px;
}
.turnajova-struktura-tab th {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--c-text-muted);
    background: var(--c-bg-soft);
    padding: 10px 14px;
    text-align: left;
    border: 1px solid var(--c-border);
}
.turnajova-struktura-tab td {
    border: 1px solid var(--c-border);
    padding: 8px 14px;
    color: var(--c-text);
}
.turnajova-struktura-tab .blind-marker td {
    background: var(--c-text);
    border-color: var(--c-text);
    text-align: center;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #fff;
    font-size: 12px;
    padding: 10px 14px;
}

@media (max-width: 900px) {
    .turnaj-header {
        grid-template-columns: 24px 24px 1fr 1fr 1fr;
        gap: 10px;
        padding: 14px 16px;
        font-size: 13px;
    }
    /* Skryj sloupce Casino + Buy-in na úzkém — zůstane datum, název, garance */
    .turnaj-header .turnaj-col:nth-child(4),
    .turnaj-header .turnaj-col.turnaj-buyin { display: none; }
    .turnaj-item.active .turnaj-body { padding: 20px 16px 24px; }
    .turnajova-struktura-tab th, .turnajova-struktura-tab td { padding: 6px 8px; }
}

/* ============================================================================
   POKER PAGE — .pk-actual / .tnow-card / .cash-card
   ============================================================================ */
.pk-actual {
    padding: 60px 32px;
    background: #ffffff;
}
.pk-actual__inner {
    max-width: var(--container);
    margin: 0 auto;
}
.pk-actual__eyebrow {
    font-family: var(--ff-body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--c-gold);
    margin: 0 0 10px;
}
.pk-actual__title {
    font-family: var(--ff-display);
    font-size: 44px;
    font-weight: 400;
    margin: 0 0 32px;
    color: var(--c-text);
}
.pk-actual__grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 16px;
}

.tnow-card {
    background: var(--c-bg-soft);
    border: 1px solid var(--c-border);
    padding: 28px 32px;
    position: relative;
}
.tnow-card.is-live { border-color: var(--c-green); }
.tnow-card__head {
    padding-bottom: 18px;
    border-bottom: 1px solid var(--c-border);
    margin-bottom: 18px;
}
.tnow-card__label {
    font-family: var(--ff-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--c-text-quiet);
    margin: 0 0 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.tnow-dot {
    display: inline-block;
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--c-pulse);
    animation: tnow-pulse 1.6s infinite;
}
.tnow-card__title {
    font-family: var(--ff-display);
    font-size: 32px;
    font-weight: 400;
    margin: 0;
    color: var(--c-text);
}
.tnow-card__table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
    font-family: var(--ff-body);
    font-size: 14px;
    color: var(--c-text);
    font-weight: 700;
    table-layout: fixed;
}
.tnow-card__table td {
    width: 50%;
    padding: 14px 20px;
    border-bottom: 1px solid #e8e8e4;
    vertical-align: middle;
    line-height: 1.4;
}
.tnow-card__table td:first-child {
    padding-left: 0;
    border-right: 1px solid #e8e8e4;
}
.tnow-card__table td:last-child {
    padding-right: 0;
}
.tnow-card__table tr:last-child td { border-bottom: 0; }
@media (max-width: 480px) {
    .tnow-card__table,
    .tnow-card__table tbody,
    .tnow-card__table tr,
    .tnow-card__table td { display: block; width: 100%; }
    .tnow-card__table td {
        padding: 8px 0;
        border-right: 0 !important;
        border-bottom: 1px solid #e8e8e4;
    }
}

.tnow-card__overlay {
    margin-top: 18px;
    display: inline-block;
    background: var(--c-overlay);
    color: #fff;
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    animation: overlay-pulse 1.2s infinite;
}

.cash-card {
    background: var(--c-green);
    color: #fff;
    padding: 24px 24px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.cash-card__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center; /* centruje empty message; tabulka má margin-bottom:auto pro top-align */
}
.cash-card__body .cash-card__table {
    margin-bottom: auto; /* tabulka sticky nahoře, neroztahuje se */
}
.cash-card::after {
    content: '♠♦♣♥';
    position: absolute;
    top: -10px; right: 0;
    font-size: 80px;
    color: rgba(255,255,255,0.06);
    letter-spacing: -8px;
    line-height: 1;
    pointer-events: none;
}
.cash-card__head {
    border-bottom: 1px solid rgba(255,255,255,0.18);
    padding-bottom: 12px;
    margin-bottom: 14px;
    position: relative;
}
.cash-card__label {
    font-family: var(--ff-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--c-gold-soft);
    margin: 0 0 6px;
}
.cash-card__title {
    font-family: var(--ff-display);
    font-size: 24px;
    color: #fff;
    margin: 0;
}
.cash-card__empty {
    text-align: center;
    color: rgba(255,255,255,0.7);
    padding: 20px 0;
    font-style: italic;
    margin: 0;
}
.cash-card__table {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--ff-body);
    font-size: 14px;
}
.cash-card__table td {
    padding: 8px 4px;
    color: #fff;
    vertical-align: middle;
    border-bottom: 1px dotted rgba(255,255,255,0.1);
}
.cash-card__table tr:last-child td { border-bottom: 0; }
.cash-card__table td:first-child {
    font-weight: 600;
    white-space: nowrap;
}
.cash-card__table td:nth-child(2) {
    font-family: 'SF Mono', Menlo, monospace;
    font-size: 13px;
    color: rgba(255,255,255,0.95);
    white-space: nowrap;
}
.cash-card__table td:last-child {
    text-align: right;
    color: rgba(255,255,255,0.8);
    font-size: 13px;
}
.cash-dot {
    display: inline-block;
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--c-pulse);
    margin-right: 8px;
    vertical-align: middle;
    animation: tnow-pulse 1.6s infinite;
}

@keyframes tnow-pulse {
    0%,100% { box-shadow: 0 0 0 0 rgba(4,192,18,0.5); }
    70%     { box-shadow: 0 0 0 10px rgba(4,192,18,0); }
}

@media (max-width: 768px) {
    .pk-actual { padding: 40px 16px; }
    .pk-actual__title { font-size: 32px; }
    .pk-actual__grid { grid-template-columns: 1fr; }
    .tnow-card { padding: 22px 20px; }
    .tnow-card__title { font-size: 26px; }
    .tnow-card__body { grid-template-columns: 1fr; }
}

/* -----------------------------------------------------------------------------
   8) AKCE A UDÁLOSTI (.akh-*)  — z reference 1:1
   -------------------------------------------------------------------------- */
.akh-wrap {
    padding: 60px 32px;
    background: transparent;   /* PRŮHLEDNÉ — ať JPN šedá podlézá */
    position: relative;
}
/* karty + jejich kontejner zůstanou NAD JPN šedou pomocí z-indexu */
.akh-wrap .akh-section,
.akh-wrap .akh-card {
    position: relative;
    z-index: 2;
}
.akh-inner {
    max-width: var(--container);
    margin: 0 auto;
}
.akh-heading {
    font-family: var(--ff-display);
    font-size: 40px;
    font-weight: 400;
    color: var(--c-text);
    text-align: center;
    margin: 0 0 40px 0;
}
.akh-section .akh-container {
    max-width: var(--container);
    margin: 0 auto;
}
.akh-section .akh-carousel { position: relative; }
.akh-section .akh-viewport {
    overflow-x: auto;
    overflow-y: visible;
    padding-bottom: 2px;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.akh-section .akh-viewport::-webkit-scrollbar { display: none; }
.akh-section .akh-track {
    display: flex;
}
.akh-section .akh-slide {
    flex: 0 0 calc((100% - 48px) / 3);
    margin-right: 24px;
    box-sizing: border-box;
    display: flex;
    scroll-snap-align: start;
}
.akh-section .akh-slide:last-child { margin-right: 0; }

/* Šipky a dotty se zobrazují pouze když je co scrollovat */
.akh-section .akh-nav,
.akh-section .akh-dots { display: none; }
.akh-section .akh-carousel.is-scrollable .akh-nav  { display: flex; }
.akh-section .akh-carousel.is-scrollable .akh-dots { display: flex; }
.akh-section .akh-nav.is-disabled { display: none !important; }
.akh-section .akh-card {
    background: #fff;
    border: 1px solid var(--c-border);
    display: flex;
    flex-direction: column;
    width: 100%;
    transition: border-color var(--transition-med);
}
.akh-section .akh-card:hover { border-color: var(--c-gold); }
.akh-section .akh-card-image {
    display: block;
    width: 100%;
    aspect-ratio: 20 / 11;
    overflow: hidden;
    background: var(--c-bg-soft);
}
.akh-section .akh-card-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.akh-section .akh-card:hover .akh-card-image img { transform: scale(1.04); }
.akh-section .akh-card-body {
    padding: 36px 32px 32px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.akh-section .akh-card-date {
    font-family: var(--ff-body);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 14px;
}
.akh-section .akh-card-title {
    font-family: var(--ff-display);
    font-weight: 400;
    font-size: 28px;
    color: var(--c-text);
    margin: 0 0 24px 0;
    line-height: 1.2;
    letter-spacing: -0.005em;
    min-height: calc(1.1em * 2);
    display: flex;
    align-items: flex-start;
}
.akh-section .akh-card-title .akh-card-title-link {
    color: var(--c-text);
    transition: color var(--transition-med);
}
.akh-section .akh-card-title .akh-card-title-link:hover {
    color: var(--c-green);
}
.akh-section .akh-card-desc {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.7;
    color: #666;
    letter-spacing: 0.5px;
    margin: 0 0 32px 0;
    flex: 1;
}
.akh-section .akh-card-cta { margin-top: 60px; }
.akh-section .akh-btn {
    display: block;
    width: 100%;
    background: var(--c-green);
    color: #fff !important;
    border: 1px solid var(--c-green);
    padding: 14px 24px;
    font-family: var(--ff-body);
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: center;
    box-sizing: border-box;
    transition: background var(--transition-med), border-color var(--transition-med);
}
.akh-section .akh-btn:hover {
    background: var(--c-green-dark);
    border-color: var(--c-green-dark);
}

@media (max-width: 960px) {
    .akh-wrap { padding: 50px 16px; }
    .akh-section .akh-card-body { padding: 30px 26px 26px 26px; }
    .akh-section .akh-card-title { font-size: 24px; min-height: calc(1.2em * 2); }
    .akh-section .akh-slide {
        flex: 0 0 calc((100% - 20px) / 2);
        margin-right: 20px;
    }
}
/* Dotty — vizuální styl */
.akh-section .akh-dots {
    text-align: center;
    margin-top: 24px;
    gap: 8px;
    justify-content: center;
}
.akh-section .akh-dot {
    width: 7px;
    height: 7px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #d8d8d8;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.25s ease;
}
.akh-section .akh-dot.is-active {
    background: var(--c-green);
    transform: scale(1.25);
}

/* Šipky — vizuální styl (vychází z reference) */
.akh-section .akh-nav {
    position: absolute;
    top: 42%;
    transform: translateY(-50%);
    z-index: 3;
    width: 44px;
    height: 44px;
    background: #fff;
    border: 1px solid #e8e8e4;
    border-radius: 50%;
    color: #313131;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(0,0,0,0.10);
    transition: background 0.2s, color 0.2s, border-color 0.2s, opacity 0.2s, box-shadow 0.2s;
    padding: 0;
}
.akh-section .akh-nav:hover {
    background: var(--c-green);
    color: #fff;
    border-color: var(--c-green);
    box-shadow: 0 6px 18px rgba(0,0,0,0.18);
}
.akh-section .akh-nav svg {
    width: 18px;
    height: 18px;
    display: block;
}
.akh-section .akh-nav.is-disabled {
    opacity: 0;
    pointer-events: none;
}
.akh-section .akh-nav-prev { left: -22px; }
.akh-section .akh-nav-next { right: -22px; }
@media (max-width: 1340px) {
    .akh-section .akh-nav-prev { left: 8px; }
    .akh-section .akh-nav-next { right: 8px; }
}

@media (max-width: 760px) {
    .akh-wrap { padding: 40px 16px; }
    .akh-section .akh-viewport { padding-bottom: 12px; }
    .akh-section .akh-slide {
        flex: 0 0 85%;
        margin-right: 16px;
    }
    .akh-section .akh-card-title { min-height: 0; }
    /* Šipky na mobilu nedávají smysl — schováme */
    .akh-section .akh-nav { display: none !important; }
}
@media (max-width: 500px) {
    .akh-section .akh-card-body { padding: 26px 22px 22px 22px; }
    .akh-section .akh-card-title { font-size: 22px; }
    .akh-section .akh-card-desc  { font-size: 15px; }
}

/* -----------------------------------------------------------------------------
   9) AKTUÁLNÍ SLOTS JACKPOTS (.jpn-inline-*)  — z reference 1:1
   -------------------------------------------------------------------------- */
.jpn-inline-wrap {
    background: #F7F7F7;
    /* Overlap trik z reference: sekce začíná o 280px výš, content posunut paddingem */
    margin-top: -280px;
    padding: 280px 32px 60px;
    position: relative;
    z-index: 1;          /* pod Akce karty */
}
.jpn-inline-section {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
}
.jpn-inline-header img {
    filter: brightness(0) invert(0) opacity(0.81);
    object-fit: contain;
}
.jpn-inline-title {
    font-family: var(--ff-display);
    font-size: 40px;
    font-weight: 400;
    color: var(--c-text);
    margin: 0 0 40px 0;
    line-height: 1.15;
    text-align: center;
}
.jpn-inline-scroller {
    display: flex;
    flex-wrap: nowrap;
    gap: 48px;
}
.jpn-inline-card {
    flex: 1 1 0;
    background: transparent;
    padding: 20px;
    position: relative;
    min-width: 180px;
}
.jpn-inline-card + .jpn-inline-card::before {
    content: '';
    position: absolute;
    left: -24px;
    top: 10%;
    bottom: 10%;
    width: 1px;
    background: #d8d8d8;
}
.jpn-inline-header {
    text-align: center;
    margin-bottom: 20px;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.jpn-inline-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}
.jpn-inline-row:last-child {
    border-bottom: 0;
}
.jpn-inline-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--ff-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--c-text);
}
.jpn-inline-line {
    display: inline-block;
    width: 7px;
    height: 16px;
}
.jpn-inline-value {
    font-family: var(--ff-body);
    font-size: 16px;
    font-weight: 700;
    color: var(--c-text);
}

@media (max-width: 1024px) {
    .jpn-inline-wrap {
        /* Vypnout overlap na tabletu — kdyby způsoboval problém */
        margin-top: -180px;
        padding-top: 180px;
    }
    .jpn-inline-scroller {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        gap: 32px;
    }
    .jpn-inline-card {
        flex: 0 0 220px;
    }
    .jpn-inline-card + .jpn-inline-card::before { left: -16px; }
}
@media (max-width: 768px) {
    .jpn-inline-wrap {
        /* Bez overlapu na mobilu — sekce normálně pod sebou */
        margin-top: 0;
        padding: 40px 16px;
    }
    .jpn-inline-title { font-size: 28px; margin-bottom: 24px; }
    .jpn-inline-card { padding: 16px; min-width: 180px; }
}

/* -----------------------------------------------------------------------------
   10) HOTEL THERMAL (.htx-*)  — z reference 1:1
   -------------------------------------------------------------------------- */
.htx-wrap {
    padding: 80px 32px;
    background: #ffffff;
}
.htx-inner {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}
.htx-media {
    overflow: hidden;
    aspect-ratio: 3 / 2;
    background: var(--c-bg-soft);
}
.htx-media img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.htx-thermal { max-width: 720px; }
.htx-thermal p { margin-bottom: 0; }
.htx-thermal__stars { display: flex; gap: 3px; margin-bottom: 16px; }
.htx-thermal__stars span {
    color: var(--c-gold);
    font-size: 18px;
    line-height: 1;
}
.htx-thermal__title {
    font-family: var(--ff-display);
    font-size: 48px;
    font-weight: 400;
    line-height: 1.05;
    color: var(--c-text);
    margin: 0 0 20px 0;
}
.htx-thermal__text {
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 0.5px;
    color: var(--c-text);
    line-height: 1.75;
    margin: 0 0 28px 0;
}
.htx-thermal__usps {
    margin: 24px 0 32px 0;
    display: flex;
    flex-direction: column;
}
.htx-thermal__usps li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-family: var(--ff-body);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: var(--c-text);
    line-height: 1.5;
    padding: 7px 0;
}
.htx-usp-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    min-width: 22px;
    border-radius: 50%;
    background: var(--c-gold);
    margin-top: 1px;
}
.htx-usp-icon svg {
    width: 11px;
    height: 11px;
    fill: #fff;
}
.htx-thermal__cta {
    display: inline-block;
    background: var(--c-green);
    color: #fff !important;
    font-family: var(--ff-body);
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 1px solid var(--c-green);
    padding: 17px 57px;
    line-height: 1;
    margin-top: 8px;
    text-align: center;
    transition: background var(--transition-med), border-color var(--transition-med);
}
.htx-thermal__cta:hover {
    background: var(--c-green-dark);
    border-color: var(--c-green-dark);
}
.htx-thermal__icon-usps {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
    margin: 32px 0 42px 0;
}
.htx-thermal__icon-usp {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--c-bg-soft);
    padding: 16px 18px;
}
.htx-thermal__icon-usp svg {
    width: 28px;
    height: 28px;
    min-width: 28px;
    stroke: var(--c-gold);
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.htx-thermal__icon-usp-text {
    font-family: var(--ff-body);
    font-size: 13px;
    font-weight: 600;
    color: var(--c-text);
    line-height: 1.35;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

@media (max-width: 960px) {
    .htx-inner { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 760px) {
    .htx-wrap { padding: 56px 16px; }
    .htx-thermal__title { font-size: 36px; }
    .htx-thermal__icon-usps { grid-template-columns: 1fr; }
    .htx-thermal__cta { display: block; width: 100%; padding: 17px 24px; }
}

/* -----------------------------------------------------------------------------
   11) KONTAKTY (.kt-*)  — z reference 1:1
   -------------------------------------------------------------------------- */
.kt-wrap {
    padding: 70px 32px;
    background: linear-gradient(180deg, #F7F7F7 0%, #ffffff 100%);
}
.kt-section {
    max-width: var(--container);
    margin: 0 auto;
    color: var(--c-text);
}
.kt-grid {
    display: grid;
    grid-template-columns: 29fr 71fr;
    gap: 80px;
    align-items: center;
}
.kt-contacts { display: flex; flex-direction: column; }
.kt-title {
    font-family: var(--ff-display);
    font-size: 44px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--c-text);
    margin: 0 0 40px 0;
}
.kt-group { margin-top: 32px; }
.kt-group:first-of-type { margin-top: 0; }
.kt-divider + .kt-group { margin-top: 0; }
.kt-group__title {
    font-family: var(--ff-body);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--c-text);
    margin-bottom: 10px;
}
.kt-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 3px 0;
    font-size: 15px;
    line-height: 1.5;
    color: var(--c-text);
    transition: color var(--transition-fast);
}
.kt-item--link:hover { color: var(--c-gold); }
.kt-item--link:hover .kt-item__icon { color: var(--c-gold); }
.kt-item__icon {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    color: var(--c-text);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: color var(--transition-fast);
}
.kt-item__icon svg { width: 100%; height: 100%; }
.kt-item__text { flex-grow: 1; }
.kt-divider {
    border: 0;
    border-top: 1px solid var(--c-border);
    margin: 25px 0;
    width: 100%;
}
.kt-social__title {
    font-family: var(--ff-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--c-text);
    margin-bottom: 16px;
}
.kt-social__icons {
    display: flex;
    align-items: center;
    gap: 18px;
}
.kt-social__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    color: var(--c-text);
    transition: color var(--transition-fast);
}
.kt-social__link svg { width: 100%; height: 100%; display: block; }
.kt-social__link:hover { color: var(--c-gold); }
.kt-map {
    display: flex;
    align-items: center;
    justify-content: center;
}
.kt-map__link {
    display: block;
    width: 100%;
    max-width: 800px;
    transition: opacity var(--transition-fast);
}
.kt-map__link:hover { opacity: 0.85; }
.kt-map__img {
    width: 100%;
    height: auto;
}

@media (max-width: 1024px) {
    .kt-grid { gap: 48px; }
    .kt-title { font-size: 36px; }
}
@media (max-width: 768px) {
    .kt-wrap { padding: 32px 16px; }
    .kt-grid { grid-template-columns: 1fr; gap: 0; }
    .kt-map { display: none; }
    .kt-title { font-size: 32px; margin-bottom: 24px; }
}
@media (max-width: 480px) {
    .kt-title { font-size: 28px; }
    .kt-item { font-size: 14px; }
}

/* -----------------------------------------------------------------------------
   12) FOOTER  (.ct-footer)  — z reference 1:1
       Background #4B2A0B, padding 55px, max-width 1360
   -------------------------------------------------------------------------- */
.ct-footer {
    background: var(--c-footer-bg);
    padding: 55px 0;
    color: #fff;
    font-family: var(--ff-body);
}
.ct-footer__inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.footer-linkso {
    font-size: 17px;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    text-align: center;
}
.footer-linkso a {
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s;
}
.footer-linkso a:hover { opacity: 0.7; color: #fff; }
.ct-footer__divider {
    border: 0;
    border-top: 1px solid #fff;
    width: 80%;
    margin: 0 auto;
}
.ct-footer__legal {
    text-align: center;
    font-family: var(--ff-body);
    font-weight: 300;
    letter-spacing: 0.5px;
    color: #fff;
    font-size: 14px;
    line-height: 1.7;
    margin: 0 auto;
    max-width: 1100px;
}
.White-linko {
    color: #fff !important;
    text-decoration: none;
    transition: opacity 0.3s ease;
}
.White-linko:hover {
    opacity: 0.8;
    text-decoration: underline;
}
.ct-footer__brand {
    text-align: center;
}
.ct-footer__logo {
    display: block;
    margin: 0 auto;
    width: 90px;
    height: auto;
}
.ct-footer__copy {
    margin: 20px 0 0;
    font-family: var(--ff-body);
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    text-align: center;
}

@media (max-width: 767px) {
    .ct-footer { padding: 30px 0; }
    .ct-footer__inner { padding: 0 15px; }
    .footer-linkso { font-size: 14px; gap: 16px; }
    .ct-footer__legal { font-size: 13px; }
    .ct-footer__logo { width: 40%; max-width: 160px; }
}

/* -----------------------------------------------------------------------------
   12.5) JACKPOT POPUP — 1:1 podle reference (.jackpot-* + .jc-*)
   -------------------------------------------------------------------------- */
.jackpot-overlay {
    display: flex;
    visibility: hidden;
    opacity: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.3);
    z-index: 999999;
    justify-content: center;
    align-items: center;
    transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out;
    padding: 20px;
    backdrop-filter: blur(17px);
    -webkit-backdrop-filter: blur(17px);
}
.jackpot-overlay.active {
    visibility: visible;
    opacity: 1;
}

.jackpot-content {
    background: #fdfdfd;
    width: 100%;
    max-width: 1100px;
    max-height: 90vh;
    border-radius: 12px;
    padding: 40px 30px;
    position: relative;
    overflow-y: auto;
    box-shadow: 0 6px 13px rgba(0,0,0,0.1);
    border: 1px solid #e2e2e2;
}

.jackpot-popup-title {
    font-family: var(--ff-display, 'Libre Caslon Text'), serif;
    text-align: center;
    font-size: 32px;
    margin: 0 0 30px;
    font-weight: 400;
    color: #111;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.jackpot-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 32px;
    color: #333;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
    user-select: none;
}
.jackpot-close:hover { color: #d34545; }

.jackpot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    justify-content: center;
}

.jackpot-card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

.jc-slots-only-card {
    background: #fff;
    padding: 20px;
}
.jc-header {
    text-align: center;
    margin-bottom: 20px;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.jc-header img { object-fit: contain; max-width: 100%; }

.jc-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}
.jc-row:last-child { border-bottom: none; }

.jc-label {
    font-weight: 600;
    color: #111;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.jc-line {
    display: inline-block;
    width: 7px;
    height: 16px;
}
.jc-value {
    font-weight: 700;
    font-size: 16px;
    color: #111;
}

/* PROMO „Jackpot Night" karta */
.jc-promo-night-card {
    position: relative;
    border: 1px solid #e5cd6c;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 280px;
    padding: 0;
    background: url('../img/jpn_new_bg.webp') center/cover no-repeat #06522b;
}
.jc-promo-night-content {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 25px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-sizing: border-box;
}
.jc-promo-night-logo {
    max-width: 70%;
    height: auto;
    margin-bottom: 15px;
    filter: drop-shadow(0 5px 10px rgba(0,0,0,0.4));
}
.jc-promo-night-online {
    display: inline-block;
    background: var(--c-pulse, #04C012);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 99px;
    margin-bottom: 10px;
    animation: jcSmallPulse 3s ease-in-out infinite;
}
.jc-promo-night-date {
    font-family: var(--ff-display, 'Libre Caslon Text'), serif;
    color: #fff;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 5px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.8);
}
.jc-promo-night-amount {
    color: #ebcd9d;
    font-size: 42px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 15px;
    text-shadow: 0 3px 8px rgba(0,0,0,0.5);
}
.jc-promo-night-pulse {
    background-color: #00cc00;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 8px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
    display: inline-block;
    letter-spacing: 0.5px;
    animation: jcSmallPulse 3s ease-in-out infinite;
    transform-origin: center;
    width: auto;
    margin-top: -5px;
}

@keyframes jcSmallPulse {
    0%, 100% { transform: scale(1);    box-shadow: 0 4px 12px rgba(0, 204, 0, 0.35); }
    50%      { transform: scale(1.04); box-shadow: 0 6px 18px rgba(0, 204, 0, 0.6); }
}

@media (max-width: 768px) {
    .jackpot-content      { padding: 30px 15px; }
    .jackpot-popup-title  { font-size: 24px; margin-bottom: 20px; }
    .jackpot-grid         { grid-template-columns: 1fr; }
    .jc-promo-night-amount{ font-size: 38px; }
}

/* ============================================================
   12.5b) LIVEGAME LIMITS POPUP (.lg-*)
   ============================================================ */
.lg-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,0.85);
    z-index: 999999;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    box-sizing: border-box;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    overflow-y: auto;
}
.lg-overlay.lg-active {
    display: flex;
    animation: lgFadeIn 0.25s ease;
}
@keyframes lgFadeIn { from { opacity: 0; } to { opacity: 1; } }

.lg-box {
    position: relative;
    width: 100%;
    max-width: 900px;
    max-height: 92vh;
    background-color: #fff;
    overflow-y: auto;
    box-sizing: border-box;
}

.lg-close {
    position: absolute;
    top: 14px;
    right: 18px;
    width: 36px;
    height: 36px;
    background: none;
    border: 1px solid rgba(255,255,255,0.4);
    color: #fff;
    font-size: 22px;
    font-weight: 300;
    cursor: pointer;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    padding: 0;
    z-index: 5;
}
.lg-close:hover { background-color: #fff; color: #313131; border-color: #fff; }

.lg-header {
    background-color: #18633D;
    padding: 36px 44px;
    position: relative;
    overflow: hidden;
}
.lg-header::before {
    content: '\2660\2666\2663\2665';
    position: absolute;
    top: -20px;
    right: -10px;
    font-size: 100px;
    color: rgba(209,181,119,0.07);
    letter-spacing: -10px;
    line-height: 1;
}
.lg-header__label {
    font-family: var(--ff-body, Inter), sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #D1B577;
    margin-bottom: 12px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
}
.lg-header__label::before {
    content: '';
    display: inline-block;
    width: 28px;
    height: 1px;
    background-color: #D1B577;
}
.lg-header__title {
    font-family: var(--ff-display, 'Libre Caslon Text'), serif;
    font-size: 38px;
    font-weight: 400;
    color: #fff;
    margin: 0;
    padding: 0;
    background: none;
    line-height: 1.1;
    letter-spacing: -0.005em;
    position: relative;
}

.lg-body { padding: 36px 44px 44px; }
.lg-game { margin-bottom: 36px; }
.lg-game:last-child { margin-bottom: 0; }

.lg-game__title {
    font-family: var(--ff-display, 'Libre Caslon Text'), serif;
    font-size: 26px;
    font-weight: 400;
    color: #313131;
    margin: 0 0 16px 0;
    padding: 0;
    background: none;
    line-height: 1.2;
    display: flex;
    align-items: center;
    gap: 12px;
}
.lg-game__title::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: #D1B577;
    border-radius: 50%;
}

.lg-table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    font-family: var(--ff-body, Inter), sans-serif;
    border: 1px solid #f0ede8;
    table-layout: fixed;
}
.lg-table th,
.lg-table td {
    padding: 14px 16px;
    text-align: left;
    font-size: 14px;
    letter-spacing: 0.5px;
    border-bottom: 1px solid #f0ede8;
    border-right: none;
    border-left: none;
    border-top: none;
}
.lg-table th {
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #888;
    background-color: #fafaf8;
}
.lg-table td { color: #313131; font-weight: 400; }
.lg-table td.lg-table__bet    { font-weight: 600; color: #313131; }
.lg-table td.lg-table__amount { font-weight: 500; color: #18633D; white-space: nowrap; }
.lg-table tr:last-child td    { border-bottom: none; }

@media (max-width: 720px) {
    .lg-overlay        { padding: 20px 12px; }
    .lg-header         { padding: 28px 24px; }
    .lg-header__title  { font-size: 28px; }
    .lg-body           { padding: 24px 24px 32px; }
    .lg-game__title    { font-size: 22px; }
    .lg-table th, .lg-table td { padding: 11px 10px; font-size: 13px; }
    .lg-close          { top: 10px; right: 12px; width: 32px; height: 32px; }
}

/* -----------------------------------------------------------------------------
   12.7) AKCE LIST  (z reference 1:1)
   -------------------------------------------------------------------------- */
.akce-list-wrap {
    padding: 60px 32px 80px;
    background: #ffffff;
}
.akce-list-inner {
    max-width: var(--container);
    margin: 0 auto;
}
.akce-list-eyebrow {
    font-family: var(--ff-body);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--c-gold);
    margin: 0 0 12px;
}
.akce-list-heading {
    font-family: var(--ff-display);
    font-size: 44px;
    font-weight: 400;
    line-height: 1.15;
    color: var(--c-text);
    margin: 0 0 30px;
}

/* Filtr akcí — viz reference */
.akce-filtr-form {
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.akce-filtr-form label {
    font-family: var(--ff-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--c-text);
}
.akce-filtr-form select {
    padding: 9px 14px;
    font-family: inherit;
    font-size: 14px;
    color: var(--c-text);
    border: 1px solid #ccc;
    border-radius: 5px;
    background: #fff;
    min-width: 280px;
    cursor: pointer;
    transition: border-color var(--transition-fast);
}
.akce-filtr-form select:focus,
.akce-filtr-form select:hover { border-color: var(--c-gold); outline: none; }

.akce-empty {
    text-align: center;
    color: var(--c-text-muted);
    padding: 40px 20px;
    background: var(--c-bg-soft);
    border: 1px solid var(--c-border);
}

.akce-item {
    display: flex;
    gap: 50px;
    margin-bottom: 20px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 40px;
    align-items: flex-start;
}
.akce-item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}
.akce-thumbnail {
    display: block;
    flex: 0 0 auto;
    overflow: hidden;
    max-width: 640px;
}
.akce-thumbnail img {
    width: 640px;
    max-width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.akce-thumbnail:hover img { transform: scale(1.03); }

.akce-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.akce-meta {
    font-size: 16px;
    color: #999;
    margin-bottom: 12px;
    display: flex;
    align-items: baseline;
    gap: 10px;
    flex-wrap: wrap;
}
.akce-datum {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
}
.akce-nazev {
    font-family: var(--ff-display);
    font-size: 32px;
    font-weight: 400;
    color: var(--c-text);
    line-height: 1.2;
    text-decoration: none;
    display: inline-block;
}
.akce-nazev:hover { color: var(--c-green); }

.akce-line {
    border: 0;
    border-top: 1px solid #ddd;
    margin: 15px 0 20px;
    background: none;
    height: 0;
}
.akce-popis {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #525252;
    text-align: justify;
    font-weight: 300;
}
.akce-tlacitko { margin-top: 4px; }
.btn-akce {
    display: inline-block;
    background: var(--c-green);
    color: #fff !important;
    padding: 10px 30px;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.02em;
    transition: background 0.3s ease;
}
.btn-akce:hover { background: var(--c-green-dark); }

/* Proběhlé akce — zešednou + opacity, na hover se vybarví */
.akce-item.akce-item-past {
    opacity: 0.7;
    transition: opacity 0.3s ease;
}
.akce-item.akce-item-past .akce-thumbnail img {
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}
.akce-item.akce-item-past:hover { opacity: 1; }
.akce-item.akce-item-past:hover .akce-thumbnail img { filter: grayscale(0); }

@media (max-width: 768px) {
    .akce-list-wrap { padding: 40px 16px 56px; }
    .akce-list-heading { font-size: 30px; margin-bottom: 28px; }
    .akce-item {
        flex-direction: column;
        gap: 24px;
        padding-bottom: 28px;
    }
    .akce-thumbnail img { width: 100%; }
    .akce-content { align-items: flex-start; width: 100%; }
    .akce-meta  { font-size: 15px; }
    .akce-nazev { font-size: 26px; }
    .akce-line  { margin: 10px 0 12px; }
    .akce-popis { font-size: 15px; line-height: 1.5; }
}

/* -----------------------------------------------------------------------------
   12.8) AKCE DETAIL (.akd-*)  z reference 1:1
   -------------------------------------------------------------------------- */
.akd-wrap {
    padding: 40px 32px 80px;
    background: #ffffff;
}
.akd-article {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    font-family: var(--ff-body);
    color: var(--c-text);
}
.akd-hero {
    margin: 0 0 40px 0;
    overflow: hidden;
}
.akd-hero__img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 520px;
    object-fit: cover;
}
.akd-head { margin-bottom: 32px; }
.akd-title {
    font-family: var(--ff-display);
    font-size: 42px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--c-text);
    margin: 0 0 16px;
}
.akd-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--c-border);
}
.akd-date {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #888;
    letter-spacing: 0.02em;
}
.akd-date__icon { width: 18px; height: 18px; flex-shrink: 0; }
.akd-date--permanent { color: var(--c-gold); }

/* Obsah z Quillu */
.akd-content {
    font-size: 16px;
    line-height: 1.7;
    color: var(--c-text);
}
.akd-content > *:first-child { margin-top: 0; }
.akd-content > *:last-child  { margin-bottom: 0; }
.akd-content p { margin: 0 0 1.2em; }
.akd-content h2 {
    font-family: var(--ff-display);
    font-size: 28px;
    font-weight: 400;
    color: var(--c-text);
    margin: 2em 0 0.6em;
    line-height: 1.3;
}
.akd-content h3 {
    font-family: var(--ff-display);
    font-size: 22px;
    font-weight: 400;
    color: var(--c-text);
    margin: 1.6em 0 0.5em;
}
.akd-content h4 {
    font-family: var(--ff-body);
    font-size: 17px;
    font-weight: 600;
    color: var(--c-text);
    margin: 1.4em 0 0.4em;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.akd-content a {
    color: var(--c-gold);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color var(--transition-fast);
}
.akd-content a:hover { color: var(--c-green); }
.akd-content ul, .akd-content ol {
    margin: 0 0 1.2em;
    padding-left: 24px;
    list-style: revert;
}
.akd-content li { margin-bottom: 0.4em; }
.akd-content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 1.5em 0;
}
.akd-content blockquote {
    margin: 1.5em 0;
    padding: 16px 24px;
    border-left: 3px solid var(--c-gold);
    background: #fafaf8;
    font-style: italic;
    color: #555;
}
.akd-content strong { font-weight: 600; color: var(--c-text); }
.akd-content hr {
    border: 0;
    border-top: 1px solid var(--c-border);
    margin: 2em 0;
}

@media (max-width: 768px) {
    .akd-wrap { padding: 24px 16px 56px; }
    .akd-hero { margin-bottom: 28px; }
    .akd-hero__img { max-height: 320px; }
    .akd-title { font-size: 28px; }
    .akd-content { font-size: 15px; }
    .akd-content h2 { font-size: 24px; }
    .akd-content h3 { font-size: 19px; }
}

/* Divider mezi detail článkem a karuselem dalších akcí */
.akd-related-divider {
    max-width: 1200px;
    margin: 0 auto;
    border: 0;
    border-top: 1px solid var(--c-border);
}
.akd-related { padding-top: 40px; padding-bottom: 80px; }
.akd-related .akh-container { padding: 0 32px; }
@media (max-width: 768px) {
    .akd-related { padding-top: 24px; padding-bottom: 56px; }
    .akd-related .akh-container { padding: 0 16px; }
}

/* -----------------------------------------------------------------------------
   12.9) HOTEL PAGE (.ht-*) — z reference 1:1
   -------------------------------------------------------------------------- */
.ht-page { padding: 40px 32px 80px; background: #ffffff; }
.ht-page__inner { max-width: var(--container); margin: 0 auto; }

/* Buttons */
.ht-btn-primary,
.ht-btn-outline-dark,
.ht-btn-outline,
.ht-btn-outline-green {
    display: inline-block;
    font-family: var(--ff-body);
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 14px 28px;
    border-radius: 0;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
    line-height: 1;
    text-decoration: none;
    text-align: center;
}
.ht-btn-primary {
    background: var(--c-green);
    color: #fff !important;
    border: 1px solid var(--c-green);
}
.ht-btn-primary:hover {
    background: var(--c-green-dark);
    border-color: var(--c-green-dark);
}
.ht-btn-outline {
    background: transparent;
    color: var(--c-text) !important;
    border: 1px solid var(--c-text);
}
.ht-btn-outline:hover {
    background: var(--c-text);
    color: #fff !important;
}
.ht-btn-outline-dark {
    background: transparent;
    color: var(--c-text) !important;
    border: 1px solid var(--c-text);
}
.ht-btn-outline-dark:hover {
    background: var(--c-text);
    color: #fff !important;
}
.ht-btn-outline-green {
    background: transparent;
    color: var(--c-green) !important;
    border: 1px solid var(--c-green);
}
.ht-btn-outline-green:hover {
    background: var(--c-green);
    color: #fff !important;
}

/* USP ikona */
.ht-usp-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px; height: 22px;
    min-width: 22px;
    border-radius: 50%;
    background: var(--c-gold);
    margin-top: 1px;
    flex-shrink: 0;
}
.ht-usp-icon svg {
    width: 11px; height: 11px;
    fill: #fff;
}

/* Thermal hero */
.ht-thermal-hero {
    display: grid;
    grid-template-columns: 47% 53%;
    overflow: hidden;
    border: 1px solid var(--c-border);
    margin-bottom: 60px;
}
.ht-thermal-hero__left { display: flex; flex-direction: column; }
.ht-thermal-hero__main-img {
    overflow: hidden;
    flex: 1;
    min-height: 300px;
    position: relative;
}
.ht-thermal-hero__main-img img,
.ht-thermal-hero__thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.ht-thermal-hero__main-img:hover img,
.ht-thermal-hero__thumb:hover img { transform: scale(1.04); }
.ht-thermal-hero__thumbs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3px;
    margin-top: 3px;
}
.ht-thermal-hero__thumb {
    overflow: hidden;
    height: 250px;
    position: relative;
}
.ht-thermal-hero__content {
    background: #fff;
    padding: 56px 52px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 1px solid var(--c-border);
}
.ht-thermal-hero__stars {
    display: flex;
    gap: 3px;
    margin-bottom: 16px;
    color: var(--c-gold);
    font-size: 18px;
    line-height: 1;
}
.ht-thermal-hero__title {
    font-family: var(--ff-display);
    font-size: 48px;
    font-weight: 400;
    line-height: 1.05;
    color: var(--c-text);
    margin: 0 0 20px;
}
.ht-thermal-hero__text {
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 0.5px;
    color: var(--c-text);
    line-height: 1.75;
    margin-bottom: 28px;
}
.ht-thermal-hero__usps {
    margin: 24px 0 32px;
    display: flex;
    flex-direction: column;
}
.ht-thermal-hero__usps li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-family: var(--ff-body);
    font-size: 14px;
    letter-spacing: 0.5px;
    color: var(--c-text);
    line-height: 1.5;
    padding: 7px 0;
}
.ht-thermal-hero__buttons {
    display: flex;
    gap: 12px;
    margin-top: 8px;
    flex-wrap: nowrap;
}
.ht-thermal-icon-usps {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
    margin: 32px 0 42px;
}
.ht-thermal-icon-usp {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--c-bg-soft);
    padding: 16px 18px;
}
.ht-thermal-icon-usp svg {
    width: 28px; height: 28px;
    min-width: 28px;
    stroke: var(--c-gold);
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.ht-thermal-icon-usp__text {
    font-family: var(--ff-body);
    font-size: 13px;
    font-weight: 600;
    color: var(--c-text);
    line-height: 1.35;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* Section heading */
.ht-section { padding: 32px 0 60px; }
.ht-section__head { margin-bottom: 40px; }
.ht-section__head--center {
    text-align: center;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}
.ht-section__eyebrow {
    font-family: var(--ff-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--c-gold);
    margin-bottom: 12px;
}
.ht-section__title {
    font-family: var(--ff-display);
    font-size: 40px;
    font-weight: 400;
    color: var(--c-text);
    margin: 0 0 12px;
    line-height: 1.1;
}
.ht-section__sub {
    font-size: 17px;
    font-weight: 300;
    color: var(--c-text-muted);
    line-height: 1.7;
    max-width: 640px;
    margin: 0;
}
.ht-section__head--center .ht-section__sub { margin: 0 auto; }

/* Rooms grid */
.ht-rooms {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.ht-room-card {
    background: #fff;
    border: 1px solid var(--c-border);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.ht-room-card__image {
    overflow: hidden;
    aspect-ratio: 4 / 3;
}
.ht-room-card__image img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.ht-room-card__image:hover img { transform: scale(1.04); }
.ht-room-card__body {
    padding: 26px 24px 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.ht-room-card__label {
    font-family: var(--ff-body);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--c-gold);
    margin-bottom: 8px;
}
.ht-room-card__name {
    font-family: var(--ff-display);
    font-size: 24px;
    font-weight: 400;
    color: var(--c-text);
    margin: 0 0 12px;
    line-height: 1.15;
}
.ht-room-card__text {
    font-size: 14px;
    font-weight: 300;
    color: var(--c-text);
    line-height: 1.65;
    margin-bottom: 16px;
}
.ht-room-card__features {
    margin: 0;
    flex: 1;
}
.ht-room-card__features li {
    font-family: var(--ff-body);
    font-size: 12px;
    color: #555;
    line-height: 1.45;
    padding: 8px 0 8px 16px;
    border-bottom: 1px solid var(--c-border-soft);
    position: relative;
}
.ht-room-card__features li:first-child { border-top: 1px solid var(--c-border-soft); }
.ht-room-card__features li::before {
    content: '·';
    position: absolute;
    left: 3px;
    color: var(--c-gold);
    font-size: 22px;
    line-height: 1;
    top: 4px;
}

/* "V ceně" benefity v kartě pokoje */
.ht-room-card__perks {
    list-style: none;
    margin: 0 0 16px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.ht-room-card__perk {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--ff-body);
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
    color: #2f7da3;
    background: #eef6fb;
    border: 1px solid #d5e8f2;
    border-radius: 4px;
    padding: 6px 10px;
    line-height: 1.3;
}
.ht-room-card__perk svg {
    width: 16px;
    height: 16px;
    flex: 0 0 auto;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Feature (foto + text) */
.ht-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    padding: 40px 0 60px;
}
.ht-feature--reverse .ht-feature__image { order: 2; }
.ht-feature__image {
    overflow: hidden;
    aspect-ratio: 4 / 3;
}
.ht-feature__image img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.ht-feature__image:hover img { transform: scale(1.04); }
.ht-feature__eyebrow {
    font-family: var(--ff-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--c-gold);
    margin-bottom: 12px;
}
.ht-feature__title {
    font-family: var(--ff-display);
    font-size: 38px;
    font-weight: 400;
    color: var(--c-text);
    margin: 0 0 20px;
    line-height: 1.15;
}
.ht-feature__text {
    font-size: 17px;
    font-weight: 300;
    color: var(--c-text);
    line-height: 1.75;
    margin-bottom: 28px;
}
.ht-feature__list { margin: 0; }
.ht-feature__list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-family: var(--ff-body);
    font-size: 14px;
    color: var(--c-text);
    line-height: 1.5;
    padding: 9px 0;
    border-bottom: 1px solid var(--c-border-soft);
}
.ht-feature__list li:first-child { border-top: 1px solid var(--c-border-soft); }

/* Recenze */
.ht-reviews {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
}
.ht-review {
    background: var(--c-bg-soft);
    border: 1px solid var(--c-border);
    padding: 32px 30px;
    display: flex;
    flex-direction: column;
}
.ht-review__stars {
    color: var(--c-gold);
    font-size: 15px;
    margin-bottom: 16px;
    letter-spacing: 2px;
}
.ht-review__text {
    font-family: var(--ff-display);
    font-size: 18px;
    font-style: italic;
    color: var(--c-text);
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}
.ht-review__author {
    font-family: var(--ff-body);
    font-size: 13px;
    font-weight: 600;
    color: var(--c-text);
}
.ht-review__author span { font-weight: 400; color: #888; }

/* CTA toggle */
.ht-cta-final {
    display: flex;
    justify-content: center;
    padding: 60px 0 40px;
}

/* Ostatní hotely (collapsible) */
.ht-ostatni-wrap {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.6s ease;
}
.ht-ostatni-wrap.ht-open { max-height: 12000px; }
.ht-ostatni-header {
    padding: 52px 0 32px;
    border-top: 1px solid var(--c-border);
}
.ht-ostatni-header__title {
    font-family: var(--ff-display);
    font-size: 40px;
    font-weight: 400;
    color: var(--c-text);
    margin: 0 0 8px;
}
.ht-ostatni-header__sub {
    font-size: 18px;
    font-weight: 300;
    color: #888;
    margin: 0;
}

/* Hotel partner card */
.ht-hotel-card {
    display: grid;
    grid-template-columns: 40% 60%;
    border: 1px solid var(--c-border);
    margin-bottom: 32px;
    overflow: hidden;
    background: #fff;
}
.ht-hotel-card__gallery { display: flex; flex-direction: column; }
.ht-hotel-card__main-img {
    overflow: hidden;
    height: 280px;
}
.ht-hotel-card__main-img img,
.ht-hotel-card__thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.ht-hotel-card__main-img:hover img,
.ht-hotel-card__thumb:hover img { transform: scale(1.04); }
.ht-hotel-card__thumbs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3px;
    margin-top: 3px;
}
.ht-hotel-card__thumb { overflow: hidden; height: 160px; }
.ht-hotel-card__body {
    padding: 40px 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.ht-hotel-card__stars {
    color: var(--c-gold);
    font-size: 15px;
    margin-bottom: 12px;
    letter-spacing: 2px;
}
.ht-hotel-card__name {
    font-family: var(--ff-display);
    font-size: 36px;
    font-weight: 400;
    color: var(--c-text);
    margin: 0 0 20px;
    line-height: 1.1;
}
.ht-hotel-card__text {
    font-size: 18px;
    font-weight: 300;
    color: var(--c-text);
    line-height: 1.75;
    margin-bottom: 20px;
}
.ht-hotel-card__usps {
    margin: 0 0 28px;
}
.ht-hotel-card__usps li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-family: var(--ff-body);
    font-size: 14px;
    color: var(--c-text);
    line-height: 1.5;
    padding: 11px 0;
    border-bottom: 1px solid var(--c-border-soft);
}
.ht-hotel-card__usps li:first-child { border-top: 1px solid var(--c-border-soft); }
.ht-hotel-card__buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* Hotel popup */
.ht-popup-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 500;
    justify-content: center;
    align-items: center;
    padding: 20px;
}
.ht-popup-overlay.ht-active { display: flex; animation: jpFadeIn 0.2s ease; }
.ht-popup-box {
    background: #fff;
    padding: 52px 44px 36px;
    max-width: 560px;
    width: 100%;
    position: relative;
    box-shadow: 0 20px 70px rgba(0,0,0,0.18);
}
.ht-popup-close {
    position: absolute;
    top: 14px; right: 18px;
    width: 36px; height: 36px;
    background: transparent;
    border: 0;
    font-size: 26px;
    color: #aaa;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
}
.ht-popup-close:hover { color: var(--c-text); }
.ht-popup-title {
    font-family: var(--ff-display);
    font-size: 28px;
    font-weight: 400;
    color: var(--c-text);
    margin: 0 0 8px;
}
.ht-popup-subtitle {
    font-size: 16px;
    font-weight: 300;
    color: var(--c-text-muted);
    margin: 0 0 24px;
}

/* Společný form styling — používá kontakt + popupy */
.ct-form { display: flex; flex-direction: column; gap: 16px; }
.ct-form__field { display: flex; flex-direction: column; gap: 6px; }
.ct-form__label {
    font-family: var(--ff-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--c-text);
}
.ct-form__req { color: var(--c-overlay); }
.ct-form__input {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid var(--c-border);
    border-radius: 6px;
    background: #fff;
    font: inherit;
    font-size: 15px;
    color: var(--c-text);
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.ct-form__input:focus {
    outline: 0;
    border-color: var(--c-green);
    box-shadow: 0 0 0 3px rgba(24,99,61,0.12);
}
.ct-form__submit {
    align-self: flex-start;
    background: var(--c-green);
    color: #fff;
    border: 1px solid var(--c-green);
    padding: 12px 28px;
    font-family: var(--ff-body);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
    border-radius: 4px;
}
.ct-form__submit:hover {
    background: var(--c-green-dark);
    border-color: var(--c-green-dark);
}
.ct-form__submit--blue {
    background: #2563eb;
    border-color: #2563eb;
    border-radius: 6px;
}
.ct-form__submit--blue:hover {
    background: #1d4ed8;
    border-color: #1d4ed8;
}

.form-flash {
    padding: 12px 16px;
    border-radius: 6px;
    margin: 0 0 12px;
    font-size: 14px;
    line-height: 1.4;
}
.form-flash--success {
    background: #ecfdf3;
    color: #027a48;
    border: 1px solid #abefc6;
}
.form-flash--error {
    background: #fef3f2;
    color: #b42318;
    border: 1px solid #fecdca;
}
.form-flash-global {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    max-width: 480px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

/* Kontakt page layout */
.kontakt-page { padding: 60px 32px 80px; background: #fff; }
.kontakt-page__inner { max-width: var(--container); margin: 0 auto; }
.kontakt-page__title {
    font-family: var(--ff-display);
    font-size: 44px;
    font-weight: 400;
    margin: 0 0 36px;
    color: var(--c-text);
}
.kontakt-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.kontakt-form__title {
    font-family: var(--ff-display);
    font-size: 32px;
    font-weight: 400;
    color: var(--c-text);
    margin: 0 0 20px;
}

@media (max-width: 960px) {
    .kontakt-grid { grid-template-columns: 1fr; gap: 40px; }
    .ht-thermal-hero { grid-template-columns: 1fr; }
    .ht-thermal-hero__main-img { height: 55vw; min-height: 0; }
    .ht-thermal-hero__thumb { height: 28vw; }
    .ht-thermal-hero__content {
        padding: 40px 28px;
        border-left: none;
        border-top: 1px solid var(--c-border);
    }
    .ht-thermal-hero__title { font-size: 36px; }
    .ht-thermal-hero__text { font-size: 16px; }
    .ht-thermal-hero__buttons { flex-wrap: wrap; }
    .ht-thermal-hero__buttons .ht-btn-primary,
    .ht-thermal-hero__buttons .ht-btn-outline-dark { flex: 1 1 auto; }
    .ht-section { padding: 16px 0 50px; }
    .ht-section__title { font-size: 32px; }
    .ht-rooms { grid-template-columns: 1fr 1fr; gap: 16px; }
    .ht-feature {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 32px 0 50px;
    }
    .ht-feature--reverse .ht-feature__image { order: 0; }
    .ht-feature__title { font-size: 30px; }
    .ht-reviews { grid-template-columns: 1fr; gap: 16px; }
    .ht-hotel-card { grid-template-columns: 1fr; }
    .ht-hotel-card__main-img { height: 240px; }
    .ht-hotel-card__thumb { height: 120px; }
    .ht-hotel-card__body { padding: 32px 28px; }
    .ht-hotel-card__name { font-size: 30px; }
    .ht-ostatni-header__title { font-size: 32px; }
}

@media (max-width: 640px) {
    .ht-page { padding: 24px 16px 56px; }
    .ht-thermal-hero__title { font-size: 30px; }
    .ht-thermal-icon-usps { grid-template-columns: 1fr; gap: 6px; }
    .ht-thermal-hero__buttons { flex-direction: column; }
    .ht-thermal-hero__buttons .ht-btn-primary,
    .ht-thermal-hero__buttons .ht-btn-outline-dark { width: 100%; }
    .ht-section__title { font-size: 28px; }
    .ht-rooms { grid-template-columns: 1fr; }
    .ht-feature__title { font-size: 26px; }
    .ht-hotel-card__buttons { flex-direction: column; }
    .ht-hotel-card__buttons .ht-btn-primary,
    .ht-hotel-card__buttons .ht-btn-outline { width: 100%; }
    .ht-popup-box { padding: 44px 24px 28px; }
    .kontakt-page { padding: 40px 16px 56px; }
    .kontakt-page__title { font-size: 32px; }
}

/* -----------------------------------------------------------------------------
   12.10) Herní plány (.hp-*)
   -------------------------------------------------------------------------- */
.hp-page { padding: 60px 32px 80px; background: #ffffff; }
.hp-page__inner { max-width: 1100px; margin: 0 auto; }
.hp-section__head { text-align: center; margin-bottom: 48px; }
.hp-section__eyebrow {
    font-family: var(--ff-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--c-gold);
    margin-bottom: 12px;
}
.hp-section__title {
    font-family: var(--ff-display);
    font-size: 44px;
    font-weight: 400;
    color: var(--c-text);
    margin: 0 0 12px;
}
.hp-section__sub {
    font-size: 16px;
    color: var(--c-text-muted);
    margin: 0;
}
.hp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.hp-card {
    background: var(--c-bg-soft);
    border: 1px solid var(--c-border);
    padding: 36px 32px;
    text-align: center;
    transition: border-color 0.3s ease;
}
.hp-card:hover { border-color: var(--c-gold); }
.hp-card__icon {
    width: 56px; height: 56px;
    margin: 0 auto 18px;
    color: var(--c-gold);
}
.hp-card__icon svg { width: 100%; height: 100%; }
.hp-card__eyebrow {
    font-family: var(--ff-body);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--c-text-quiet);
    margin-bottom: 8px;
}
.hp-card__title {
    font-family: var(--ff-display);
    font-size: 28px;
    font-weight: 400;
    color: var(--c-text);
    margin: 0 0 14px;
}
.hp-card__desc {
    font-size: 15px;
    line-height: 1.6;
    color: var(--c-text-muted);
    margin: 0 0 24px;
}
.hp-card__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--c-green);
    color: #fff !important;
    padding: 12px 22px;
    font-family: var(--ff-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.2s;
}
.hp-card__btn:hover { background: var(--c-green-dark); }
.hp-card__btn-icon { width: 16px; height: 16px; }

@media (max-width: 768px) {
    .hp-page { padding: 40px 16px 56px; }
    .hp-section__title { font-size: 32px; }
    .hp-grid { grid-template-columns: 1fr; }
    .hp-card { padding: 28px 22px; }
}

/* -----------------------------------------------------------------------------
   12.11) Nápojový lístek (.np-*)
   -------------------------------------------------------------------------- */
.np-page { padding: 60px 32px 80px; background: #ffffff; }
.np-page__inner { max-width: var(--container); margin: 0 auto; }
.np-page__title {
    font-family: var(--ff-display);
    font-size: 44px;
    font-weight: 400;
    margin: 0 0 40px;
    color: var(--c-text);
    text-align: center;
}
.np-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
}
.np-section { margin-bottom: 36px; }
.np-section:last-child { margin-bottom: 0; }
.np-section__title {
    font-family: var(--ff-display);
    font-size: 22px;
    font-weight: 400;
    color: var(--c-text);
    margin: 0 0 14px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--c-border);
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
}
.np-section__unit {
    font-family: var(--ff-body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--c-text-quiet);
}
.np-list { margin: 0; }
.np-list li {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    padding: 6px 0;
    font-family: var(--ff-body);
    font-size: 14px;
    color: var(--c-text);
    line-height: 1.4;
}
.np-name { flex: 1; }
.np-price {
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
    font-weight: 600;
    white-space: nowrap;
    color: var(--c-text);
}
.np-eur {
    font-weight: 400;
    color: var(--c-text-quiet);
    font-size: 13px;
}
.np-note {
    margin-top: 12px;
    padding: 10px 14px;
    background: var(--c-bg-soft);
    font-size: 13px;
    color: var(--c-text-muted);
    line-height: 1.45;
}
.np-note--italic { font-style: italic; background: transparent; padding: 6px 0; }
.np-empty {
    color: var(--c-text-muted);
    font-style: italic;
    margin: 0;
}

@media (max-width: 768px) {
    .np-page { padding: 40px 16px 56px; }
    .np-page__title { font-size: 32px; }
    .np-grid { grid-template-columns: 1fr; gap: 32px; }
    .np-section__title { font-size: 20px; }
    .np-list li { font-size: 13px; }
}

/* -----------------------------------------------------------------------------
   12.12) Zásady zodpovědného hraní (.zz-*)
   -------------------------------------------------------------------------- */
.zz-page { padding: 60px 32px 80px; background: #ffffff; }
.zz-page__inner {
    max-width: 800px;
    margin: 0 auto;
    color: var(--c-text);
    font-size: 16px;
    line-height: 1.7;
}
.zz-page__title {
    font-family: var(--ff-display);
    font-size: 40px;
    font-weight: 400;
    color: var(--c-text);
    margin: 0 0 32px;
    text-align: center;
}
.zz-page__h2 {
    font-family: var(--ff-display);
    font-size: 26px;
    font-weight: 400;
    color: var(--c-text);
    margin: 36px 0 14px;
}
.zz-page__inner p { margin: 0 0 14px; }
.zz-page__inner ul {
    padding-left: 22px;
    margin: 0 0 18px;
    list-style: disc;
}
.zz-page__inner ul li { margin-bottom: 6px; }
.zz-page__inner a {
    color: var(--c-gold);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.zz-page__inner a:hover { color: var(--c-green); }
.zz-contacts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin: 18px 0 24px;
}
.zz-contact {
    background: var(--c-bg-soft);
    border-left: 3px solid var(--c-gold);
    padding: 16px 20px;
    font-size: 14px;
    line-height: 1.55;
}

@media (max-width: 640px) {
    .zz-page { padding: 40px 16px 56px; }
    .zz-page__title { font-size: 30px; }
    .zz-contacts { grid-template-columns: 1fr; gap: 14px; }
}

/* -----------------------------------------------------------------------------
   13) COOKIE BANNER (.ct-cookie)
   -------------------------------------------------------------------------- */
.ct-cookie {
    position: fixed;
    bottom: 16px; left: 16px; right: 16px;
    background: #fff;
    border: 1px solid var(--c-border);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    z-index: 300;
    padding: 20px 24px;
    max-width: 720px;
    margin: 0 auto;
}
.ct-cookie__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.ct-cookie__text {
    font-size: 14px;
    line-height: 1.5;
    color: var(--c-text-muted);
    margin: 0;
    flex: 1;
    min-width: 240px;
}
.ct-cookie__btn {
    background: var(--c-green);
    color: #fff;
    border: 1px solid var(--c-green);
    padding: 10px 24px;
    font-family: var(--ff-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: background var(--transition-med);
}
.ct-cookie__btn:hover { background: var(--c-green-dark); }

/* -----------------------------------------------------------------------------
   14) PLACEHOLDER PAGE / 404
   -------------------------------------------------------------------------- */
.page--placeholder, .page--404 {
    padding: 120px 24px;
    background: var(--c-bg-soft);
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.page__inner {
    max-width: 640px;
    text-align: center;
}
.page__eyebrow {
    font-family: var(--ff-body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--c-gold);
    margin: 0 0 16px 0;
}
.page__title {
    font-family: var(--ff-display);
    font-size: 48px;
    margin: 0 0 16px 0;
}
.page__lead {
    font-size: 18px;
    font-weight: 300;
    color: var(--c-text-muted);
    margin: 0 0 32px 0;
}
.btn {
    display: inline-block;
    font-family: var(--ff-body);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 14px 28px;
    border: 1px solid currentColor;
    background: transparent;
    color: var(--c-text);
}
.btn--gold {
    background: var(--c-gold);
    border-color: var(--c-gold);
    color: #fff;
}
.btn--gold:hover {
    background: #b09058;
    border-color: #b09058;
}

/* -----------------------------------------------------------------------------
   15) RESPONSIVE — HEADER
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
    .ct-header__inner {
        padding: 0 24px;
        height: var(--header-h-tablet);
        gap: 16px;
    }
    .ct-header__left { gap: 24px; }
    .ct-nav, .ct-header__right .ct-lang { display: none; }
    .ct-lang-toggle { display: inline-flex; }
    .ct-burger { display: flex; }
}
@media (max-width: 640px) {
    .ct-header__inner {
        padding: 0 16px;
        height: var(--header-h-phone);
        gap: 8px;
    }
    .ct-header__left  { gap: 12px; }
    .ct-header__right { gap: 12px; }
    .ct-header__socials { gap: 8px; }
    .ct-header__icon { width: 18px; height: 18px; }
    .ct-header__icon--360 { width: auto; height: 20px; padding: 0; border: none; }
    .ct-header__logo img { height: 40px; }
    .ct-burger { width: 34px; height: 34px; gap: 6px; }
    .ct-burger__line { width: 26px; }
}
@media (max-width: 380px) {
    .ct-header__inner { padding: 0 12px; gap: 6px; }
    .ct-header__left  { gap: 8px; }
    .ct-header__right { gap: 8px; }
    .ct-header__socials { gap: 6px; }
    .ct-header__icon { width: 16px; height: 16px; }
    .ct-header__icon--360 { width: auto; height: 18px; padding: 0; border: none; }
    .ct-header__logo img { height: 38px; }
}

/* ============================================================
   360° prohlídka — fullscreen popup s iframe
   ============================================================ */
.tour360-popup {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
}
.tour360-popup.is-open { display: block; }

.tour360-popup__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    cursor: pointer;
    animation: tour360-fade 0.2s ease-out;
}

.tour360-popup__box {
    position: absolute;
    inset: 40px;
    max-width: 1600px;
    margin: 0 auto;
    background: #000;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
    animation: tour360-pop 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.tour360-popup__close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.15s, transform 0.15s;
}
.tour360-popup__close:hover { background: rgba(0, 0, 0, 0.85); transform: scale(1.05); }
.tour360-popup__close svg { width: 20px; height: 20px; }

.tour360-popup__frame {
    width: 100%;
    height: 100%;
    background: #000;
}
.tour360-iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

@keyframes tour360-fade {
    from { opacity: 0; }
    to   { opacity: 1; }
}
@keyframes tour360-pop {
    from { opacity: 0; transform: scale(0.96); }
    to   { opacity: 1; transform: scale(1); }
}

@media (max-width: 768px) {
    .tour360-popup__box { inset: 0; border-radius: 0; }
    .tour360-popup__close { top: 10px; right: 10px; width: 40px; height: 40px; }
}

body.tour360-noscroll { overflow: hidden; }

/* ============================================================
   POKER PAGE — 1:1 podle WP reference
   ============================================================ */

/* -----------------------------------------------------------
   HERO — fullbleed, tmavá zelená, fotka opacity 0.4, sloupcové suits vpravo
   ----------------------------------------------------------- */
.pk-hero {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    min-height: 620px;
    background-color: #2d5a3f;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #fff;
}
.pk-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.pk-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.35;
}
.pk-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(24, 99, 61, 0.81);
}
.pk-hero::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, #c0a068 30%, #c0a068 70%, transparent 100%);
    z-index: 3;
}
.pk-hero__suits {
    position: absolute;
    top: 50%;
    right: 60px;
    transform: translateY(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 20px;
    opacity: 0.22;
    color: #f0d9a3;
    pointer-events: none;
}
.pk-hero__suit { font-size: 80px; line-height: 1; display: inline-block; }
.pk-hero__suit:nth-child(2) { color: #fff; transform: translateX(-20px); }
.pk-hero__suit:nth-child(3) { transform: translateX(40px); }
.pk-hero__suit:nth-child(4) { color: #fff; transform: translateX(60px); }

.pk-hero__inner {
    position: relative;
    z-index: 2;
    max-width: 1360px;
    margin: 0 auto;
    padding: 120px 60px;
    width: 100%;
}
.pk-hero__eyebrow {
    font-family: var(--ff-body, Inter), sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #D1B577;
    margin: 0 0 24px;
    display: flex;
    align-items: center;
    gap: 14px;
}
.pk-hero__eyebrow::before {
    content: '';
    display: inline-block;
    width: 40px;
    height: 1px;
    background-color: #D1B577;
}
.pk-hero__title {
    font-family: var(--ff-display, 'Libre Caslon Text'), serif;
    font-size: 80px;
    font-weight: 400;
    line-height: 1.05;
    margin: 0 0 36px;
    color: #fff;
    max-width: 1100px;
    letter-spacing: -0.01em;
}
.pk-hero__title em {
    font-style: italic;
    color: #f0d9a3;
    font-weight: 400;
}
.pk-hero__text {
    font-family: var(--ff-body, Inter), sans-serif;
    font-size: 19px;
    font-weight: 300;
    line-height: 1.6;
    color: rgba(255,255,255,0.88);
    margin: 0 0 16px;
    max-width: 600px;
}
.pk-hero__text:last-child { margin-bottom: 0; }

@media (max-width: 960px) {
    .pk-hero { min-height: 520px; }
    .pk-hero__inner { padding: 90px 28px; }
    .pk-hero__title { font-size: 64px; }
    .pk-hero__suits { right: 24px; gap: 12px; }
    .pk-hero__suit { font-size: 56px; }
    .pk-hero__suit:nth-child(2) { transform: translateX(-12px); }
    .pk-hero__suit:nth-child(3) { transform: translateX(20px); }
    .pk-hero__suit:nth-child(4) { transform: translateX(30px); }
}
@media (max-width: 600px) {
    .pk-hero { min-height: 440px; }
    .pk-hero__inner { padding: 60px 20px; }
    .pk-hero__title { font-size: 44px; margin-bottom: 24px; }
    .pk-hero__text { font-size: 16px; }
    .pk-hero__suits { display: none; }
}

/* -----------------------------------------------------------
   WRAP — boxed container kolem USP stripu + aktuálního dění
   ----------------------------------------------------------- */
.pk-wrap {
    background: #fff;
    padding: 64px 24px 80px;
}
.pk-wrap__inner {
    max-width: var(--container, 1200px);
    margin: 0 auto;
}

/* -----------------------------------------------------------
   USP STRIP — 3 sloupce, vertikální dělíky, bordered rámeček
   ----------------------------------------------------------- */
.pk-usps {
    background: #fff;
    padding: 56px 24px 16px;
}
.pk-usps__inner {
    max-width: var(--container, 1360px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
    border: 1px solid #e8e8e4;
}
.pk-usp {
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    border-right: 1px solid #e8e8e4;
    background: #fff;
}
.pk-usp:last-child { border-right: 0; }
.pk-usp__icon {
    width: 36px;
    height: 36px;
    color: #18633D;
}
.pk-usp__icon svg { width: 32px; height: 32px; display: block; stroke: #18633D; fill: none; stroke-width: 1.5; }
.pk-usp__title {
    font-family: var(--ff-display, 'Libre Caslon Text'), serif;
    font-size: 22px;
    font-weight: 400;
    color: #313131;
    margin: 0;
    line-height: 1.2;
}
.pk-usp__text {
    font-family: var(--ff-body, Inter), sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: #666;
    line-height: 1.6;
    margin: 0;
}
@media (max-width: 900px) {
    .pk-usps { padding: 40px 20px 0; }
    .pk-usps__inner { grid-template-columns: 1fr; }
    .pk-usp { border-right: 0; border-bottom: 1px solid #e8e8e4; }
    .pk-usp:last-child { border-bottom: 0; }
}

/* -----------------------------------------------------------
   SECTION HEAD — eyebrow + title (před aktuálním děním)
   ----------------------------------------------------------- */
.pk-section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 20px;
}
.pk-section-head__left { flex: 1 1 auto; }
.pk-section-head__eyebrow {
    font-family: var(--ff-body, Inter), sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #D1B577;
    margin: 0 0 10px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.pk-section-head__eyebrow::before {
    content: '';
    width: 28px;
    height: 1px;
    background-color: #D1B577;
}
.pk-section-head__title {
    font-family: var(--ff-display, 'Libre Caslon Text'), serif;
    font-size: 40px;
    font-weight: 400;
    color: #313131;
    margin: 0;
    line-height: 1.1;
}

/* -----------------------------------------------------------
   AKTUÁLNÍ DĚNÍ GRID — 1fr + 380px (turnaj vlevo, cashgame vpravo)
   ----------------------------------------------------------- */
.pk-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 32px;
    align-items: start;
    margin-bottom: 80px;
}
@media (max-width: 960px) {
    .pk-grid { grid-template-columns: 1fr; }
}

/* TURNAJ KARTA */
.pk-tournament-card {
    border: 1px solid #e8e8e4;
    background: #fff;
}
.pk-tournament-card__badges {
    padding: 20px 40px 0;
    background: #fafaf8;
}
.turnaj-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--ff-body, Inter), sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #fff;
    background: #18633D;
    padding: 6px 14px;
    border-radius: 99px;
}
.turnaj-label.turnaj-bezici { background: #d34545; }
.turnaj-label .tnow-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fff;
    animation: tnowDotPulse 1.5s infinite;
}
@keyframes tnowDotPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%      { opacity: 0.5; transform: scale(0.8); }
}

.pk-tournament-card__head {
    padding: 18px 40px 28px;
    background: #fafaf8;
}
.pk-tournament-card__name {
    font-family: var(--ff-display, 'Libre Caslon Text'), serif;
    font-size: 36px;
    font-weight: 400;
    color: #313131;
    margin: 0;
    line-height: 1.1;
}
.pk-tournament-card__details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 0;
    background: #fff;
}
.pk-tournament-card__detail {
    padding: 18px 24px;
    border-bottom: 1px solid #f0ede8;
    min-height: 60px;
    display: flex;
    align-items: center;
}
.pk-tournament-card__detail:nth-child(odd) { border-right: 1px solid #f0ede8; }
.pk-tournament-card__detail:nth-last-child(-n+2) { border-bottom: 0; }
.pk-tournament-card__value--shortcode {
    font-family: var(--ff-body, Inter), sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #313131;
}
.pk-tournament-card__footer {
    padding: 18px 40px;
    background: #fff;
}
.pk-tournament-card__overlay {
    display: inline-block;
    background: rgba(211, 69, 69, 0.92);
    color: #fff;
    font-family: var(--ff-body, Inter), sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    padding: 6px 16px;
    border-radius: 4px;
    animation: overlay-pulse 1.8s infinite;
}

@media (max-width: 600px) {
    .pk-tournament-card__badges,
    .pk-tournament-card__head,
    .pk-tournament-card__footer { padding-left: 24px; padding-right: 24px; }
    .pk-tournament-card__name { font-size: 26px; }
    .pk-tournament-card__details { grid-template-columns: 1fr; }
    .pk-tournament-card__detail:nth-child(odd) { border-right: 0; }
    .pk-tournament-card__detail:nth-last-child(-n+2) { border-bottom: 1px solid #f0ede8; }
    .pk-tournament-card__detail:last-child { border-bottom: 0; }
}

/* CASH GAMES KARTA */
.pk-cashgame {
    position: sticky;
    top: 24px;
}
@media (max-width: 960px) {
    .pk-cashgame { position: static; }
}
.pk-cashgame__card {
    border: 1px solid #e8e8e4;
    background: #fff;
}
.pk-cashgame__header {
    background: #18633D;
    padding: 28px 32px 24px;
    min-height: 137px;
    position: relative;
    overflow: hidden;
}
.pk-cashgame__header::before {
    content: '\2660\2666\2663\2665';
    position: absolute;
    top: -12px;
    right: -8px;
    font-size: 80px;
    color: rgba(209, 181, 119, 0.08);
    letter-spacing: -10px;
    line-height: 1;
    pointer-events: none;
}
.pk-cashgame__header-label {
    font-family: var(--ff-body, Inter), sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #D1B577;
    margin: 0 0 8px;
    position: relative;
    z-index: 1;
}
.pk-cashgame__header-title {
    font-family: var(--ff-display, 'Libre Caslon Text'), serif;
    font-size: 26px;
    font-weight: 400;
    color: #fff;
    margin: 0;
    line-height: 1.1;
    position: relative;
    z-index: 1;
}
.pk-cashgame__body {
    padding: 28px;
    min-height: 238px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pk-cashgame__body .empty-message {
    color: #999;
    font-family: var(--ff-body, Inter), sans-serif;
    font-size: 16px;
    text-align: center;
    margin: 0;
}
.pk-cashgame__table {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--ff-body, Inter), sans-serif;
}
.pk-cashgame__table tr { border-bottom: 1px solid #f0ede8; }
.pk-cashgame__table tr:last-child { border-bottom: 0; }
.pk-cashgame__table td {
    padding: 10px 6px;
    font-size: 14px;
    color: #313131;
}
.pk-cashgame__table td:first-child { font-weight: 600; }
.pk-cashgame__table .cash-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #04C012;
    margin-right: 8px;
    animation: tnowDotPulse 1.5s infinite;
}

/* -----------------------------------------------------------
   PROČ K NÁM — fullbleed, image vlevo, content vpravo
   ----------------------------------------------------------- */
.pk-info {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    background: #fff;
    padding: 80px 24px;
}
.pk-info__inner {
    max-width: 1360px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.pk-info__image {
    aspect-ratio: 4 / 3;
    overflow: hidden;
}
.pk-info__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.pk-info__eyebrow {
    font-family: var(--ff-body, Inter), sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #D1B577;
    margin: 0 0 14px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.pk-info__eyebrow::before {
    content: '';
    width: 28px;
    height: 1px;
    background-color: #D1B577;
}
.pk-info__title {
    font-family: var(--ff-display, 'Libre Caslon Text'), serif;
    font-size: 42px;
    font-weight: 400;
    color: #313131;
    line-height: 1.15;
    margin: 0 0 22px;
}
.pk-info__text {
    font-family: var(--ff-body, Inter), sans-serif;
    font-size: 17px;
    font-weight: 300;
    line-height: 1.75;
    color: #444;
    margin: 0 0 28px;
}
.pk-info__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.pk-info__list li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: var(--ff-body, Inter), sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #313131;
}
.pk-info__list li::before {
    content: '';
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #D1B577;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='%23ffffff'><path d='M10.28 2.28L4.5 8.06 1.72 5.28a1 1 0 00-1.44 1.44l3.5 3.5a1 1 0 001.44 0l6.5-6.5a1 1 0 00-1.44-1.44z'/></svg>");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 10px 10px;
}
.pk-info__list svg { display: none; } /* skryje inline SVG, používáme ::before s data-URI */

@media (max-width: 960px) {
    .pk-info { padding: 60px 20px 24px; }
    .pk-info__inner { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 500px) {
    .pk-section-head__title { font-size: 30px; }
    .pk-tournament-card__name { font-size: 26px; }
    .pk-info__title { font-size: 30px; }
}

/* ============================================================
   404 stránka — bilingual, elegantní
   ============================================================ */
.p404 {
    background: linear-gradient(180deg, #f9f7f3 0%, #ffffff 100%);
    padding: 100px 24px 120px;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.p404__inner {
    text-align: center;
    max-width: 560px;
    margin: 0 auto;
}
.p404__suits {
    display: flex;
    justify-content: center;
    gap: 24px;
    font-size: 32px;
    color: rgba(209, 181, 119, 0.55);
    letter-spacing: 0.2em;
    margin: 0 0 28px;
}
.p404__suits span:nth-child(2),
.p404__suits span:nth-child(4) { color: rgba(24, 99, 61, 0.55); }
.p404__eyebrow {
    font-family: var(--ff-body, Inter), sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: #D1B577;
    margin: 0 0 14px;
}
.p404__title {
    font-family: var(--ff-display, 'Libre Caslon Text'), serif;
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 400;
    color: #313131;
    line-height: 1.15;
    margin: 0 0 22px;
}
.p404__lead {
    font-family: var(--ff-body, Inter), sans-serif;
    font-size: 17px;
    font-weight: 300;
    line-height: 1.65;
    color: #555;
    margin: 0 0 36px;
}
.p404__cta {
    display: inline-block;
    background: #18633D;
    color: #fff;
    font-family: var(--ff-body, Inter), sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 14px 32px;
    border-radius: 3px;
    text-decoration: none;
    transition: background 0.2s;
}
.p404__cta:hover { background: #0f4d2d; }
.p404__links-title {
    margin: 56px 0 14px;
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #888;
}
.p404__links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: inline-flex;
    gap: 0;
    border: 1px solid #e8e8e4;
    background: #fff;
    border-radius: 3px;
}
.p404__links li { display: flex; }
.p404__links li + li { border-left: 1px solid #e8e8e4; }
.p404__links a {
    display: block;
    padding: 12px 22px;
    font-family: var(--ff-body, Inter), sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #313131;
    text-decoration: none;
    transition: color 0.15s, background 0.15s;
}
.p404__links a:hover { color: #18633D; background: #fafaf8; }

/* ============================================================
   A11y — focus-visible, skip link
   ============================================================ */
*:focus { outline: none; }
*:focus-visible {
    outline: 2px solid #D1B577;
    outline-offset: 2px;
    border-radius: 2px;
}
a:focus-visible,
button:focus-visible {
    outline: 2px solid #D1B577;
    outline-offset: 3px;
}
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 2px solid #18633D;
    outline-offset: 0;
}

/* Skip-to-content link (viditelný jen při focusu) */
.skip-link {
    position: absolute;
    top: -100px;
    left: 12px;
    z-index: 99999;
    padding: 10px 18px;
    background: #18633D;
    color: #fff;
    font-family: var(--ff-body, Inter), sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 3px;
    transition: top 0.15s;
}
.skip-link:focus,
.skip-link:focus-visible {
    top: 12px;
}

/* sr-only utility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

/* Respekt motion preference */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ============================================================
   Homepage foto strip — 5 fotek v řadě nad patičkou (1:1 podle reference)
   ============================================================ */
.hp-foto-strip {
    background: #ffffff;
    padding: 0 0 8px 0;
    margin: 0;
}
.hp-foto-strip__row {
    display: flex;
    gap: 8px;
    width: 100%;
}
.hp-foto-strip__item {
    flex: 1 1 0;
    min-width: 0;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}
.hp-foto-strip__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.hp-foto-strip__item:hover img {
    transform: scale(1.04);
}

@media (max-width: 900px) {
    .hp-foto-strip__row { gap: 4px; flex-wrap: wrap; }
    .hp-foto-strip__item { flex: 1 1 calc(50% - 4px); }
    .hp-foto-strip__item:nth-child(5) { flex: 1 1 100%; }
}
@media (max-width: 480px) {
    .hp-foto-strip__row { gap: 2px; }
    .hp-foto-strip__item { flex: 1 1 100%; }
}
