/* ========================================
   Bloomies Press Kit Styles
   Layout angelehnt an die Notion-Seite
   ======================================== */

/* ---------- Sticky Topbar ---------- */
.pk-topbar {
    position: sticky;
    top: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 12px 24px;
    background: rgba(20, 24, 38, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(158, 255, 68, 0.18);
}

.pk-topbar-home {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-primary);
    font-weight: 700;
    text-decoration: none;
    font-size: 15px;
    white-space: nowrap;
}

.pk-topbar-home:hover {
    filter: brightness(1.2);
}

.pk-topbar-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-left: auto;
}

.pk-topbar-links a {
    color: var(--color-text-dark);
    text-decoration: none;
    font-size: 14px;
    padding: 4px 0;
    border-bottom: 2px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.pk-topbar-links a:hover {
    color: var(--color-text);
    border-bottom-color: var(--color-primary);
}

/* ---------- Cover + Titel ---------- */
.pk-cover {
    position: relative;
    width: 100%;
    height: 30vh;
    max-height: 280px;
    min-height: 180px;
    overflow: hidden;
}

.pk-cover img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 86.67%;
}

.pk-cover::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(34, 40, 61, 0) 40%, var(--color-bg) 100%);
}

.pk-header {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 32px;
}

.pk-page-icon {
    width: 124px;
    height: 124px;
    border-radius: 8px;
    margin-top: -62px;
    position: relative;
    z-index: 2;
    display: block;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.6));
}

.pk-title {
    font-size: 46px;
    font-weight: 700;
    line-height: 1.15;
    margin: 20px 0 0;
    color: var(--color-text);
}

/* ---------- Layout ---------- */
.pk-main {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 32px 100px;
}

.pk-section {
    margin-top: 64px;
    scroll-margin-top: 80px;
}

/* Erste Sektion: halber Abstand zum Steam-Button im Header */
.pk-main > .pk-section:first-child {
    margin-top: 52px;
}

.pk-section > h2 {
    font-size: 30px;
    text-align: left;
    margin-bottom: 24px;
    color: var(--color-primary);
}

.pk-columns {
    display: grid;
    grid-template-columns: minmax(280px, 0.85fr) 1.15fr;
    gap: 24px;
    align-items: start;
}

/* ---------- Karten (entsprechen den Notion-Callouts) ---------- */
.pk-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(158, 255, 68, 0.18);
    border-radius: 12px;
    padding: 28px 30px;
}

.pk-card h2 {
    font-size: 24px;
    text-align: left;
    color: var(--color-primary);
    margin-bottom: 18px;
}

.pk-card p {
    color: var(--color-text);
    margin-bottom: 12px;
}

.pk-card p:last-child {
    margin-bottom: 0;
}

/* ---------- Factsheet-Tabelle ---------- */
.pk-facts {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
}

.pk-facts th,
.pk-facts td {
    text-align: left;
    padding: 11px 0;
    vertical-align: top;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pk-facts tr:last-child th,
.pk-facts tr:last-child td {
    border-bottom: none;
}

.pk-facts th {
    color: var(--color-text-dark);
    font-weight: 400;
    width: 42%;
    padding-right: 16px;
}

.pk-facts td {
    color: var(--color-text);
    font-weight: 600;
}

.pk-facts a {
    color: var(--color-primary);
    text-decoration: none;
}

.pk-facts a:hover {
    text-decoration: underline;
}

/* ---------- Feature-Liste ---------- */
.pk-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 10px 32px;
    align-items: start;
}

.pk-list > li {
    position: relative;
    padding-left: 26px;
    color: var(--color-text);
    line-height: 1.6;
}

.pk-list > li::before {
    content: "";
    position: absolute;
    left: 6px;
    top: 11px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--color-primary);
}

/* ---------- Download-Buttons ---------- */
.pk-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 28px;
}

.pk-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 24px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    background: linear-gradient(135deg, var(--color-primary-darker) 0%, var(--color-primary-dark) 100%);
    color: #000;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.pk-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.12);
}

/* ---------- Trailer ---------- */
.pk-video-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 28px;
}

.pk-video-item figcaption {
    margin-top: 10px;
    font-size: 15px;
    font-weight: 700;
    color: var(--color-text-dark);
}

.pk-video {
    position: relative;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid var(--color-primary);
    background: #000;
}

.pk-video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ---------- Screenshots ---------- */
.pk-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
}

.pk-shot {
    display: block;
    border: 0;
    padding: 0;
    background: rgba(0, 0, 0, 0.35);
    border-radius: 10px;
    overflow: hidden;
    cursor: zoom-in;
    line-height: 0;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pk-shot img {
    width: 100%;
    height: auto;
    display: block;
}

.pk-shot:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.55);
}

/* ---------- Key Arts ---------- */
.pk-keyarts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.pk-keyart {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(158, 255, 68, 0.18);
    border-radius: 12px;
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.pk-keyart-frame {
    background: rgba(0, 0, 0, 0.35);
    border: 0;
    border-radius: 8px;
    min-height: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    cursor: zoom-in;
}

.pk-keyart-frame img {
    max-width: 100%;
    max-height: 200px;
    height: auto;
    display: block;
}

.pk-keyart-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
}

.pk-keyart-meta strong {
    font-size: 15px;
    color: var(--color-text);
}

.pk-keyart-meta span {
    display: block;
    font-size: 13px;
    color: var(--color-text-dark);
    font-weight: 400;
}

.pk-download {
    color: var(--color-primary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
}

.pk-download:hover {
    text-decoration: underline;
}

/* ---------- Text / Kontakt ---------- */
.pk-text {
    color: var(--color-text);
    font-size: 17px;
    line-height: 1.75;
    max-width: 760px;
}

.pk-text + .pk-text {
    margin-top: 14px;
}

.pk-text a {
    color: var(--color-primary);
}

.pk-contact-list {
    list-style: none;
    max-width: 620px;
}

.pk-contact-list li {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pk-contact-list span {
    color: var(--color-text-dark);
    min-width: 120px;
}

.pk-contact-list a {
    color: var(--color-primary);
    text-decoration: none;
}

.pk-contact-list a:hover {
    text-decoration: underline;
}

.pk-note {
    font-size: 14px;
    color: var(--color-text-dark);
    margin-top: 12px;
}

/* ---------- Footer ---------- */
.pk-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 32px;
    text-align: center;
    color: var(--color-text-dark);
    font-size: 14px;
}

.pk-footer a {
    color: var(--color-text-dark);
    margin: 0 10px;
}

/* ---------- Lightbox ---------- */
.pk-lightbox {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(8, 10, 18, 0.94);
    padding: 40px 20px;
}

.pk-lightbox.is-open {
    display: flex;
}

.pk-lightbox img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
}

.pk-lightbox-close,
.pk-lightbox-nav {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s ease;
}

.pk-lightbox-close:hover,
.pk-lightbox-nav:hover {
    background: rgba(158, 255, 68, 0.25);
}

.pk-lightbox-close {
    top: 20px;
    right: 20px;
}

.pk-lightbox-prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.pk-lightbox-next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
    .pk-columns,
    .pk-video-grid {
        grid-template-columns: 1fr;
    }

    .pk-title {
        font-size: 34px;
    }

    .pk-header,
    .pk-main {
        padding-left: 20px;
        padding-right: 20px;
    }

    .pk-section > h2 {
        font-size: 26px;
    }
}

@media (max-width: 560px) {
    .pk-topbar {
        gap: 12px;
        padding: 10px 16px;
    }

    .pk-topbar-links {
        gap: 12px;
    }

    .pk-topbar-links a {
        font-size: 13px;
    }

    .pk-page-icon {
        width: 92px;
        height: 92px;
        margin-top: -46px;
    }

    .pk-title {
        font-size: 28px;
    }

    .pk-card {
        padding: 22px 20px;
    }

    .pk-btn {
        width: 100%;
        justify-content: center;
    }
}
