/* ── Ironman Presentation — scrollable overlay on top of ironman.css ── */

/* Allow scrolling (overrides ironman.css lock) */
html, body {
    overflow-x: hidden;
    overflow-y: auto;
    height: auto;
    min-height: 100%;
}

/* ── Hero wrapper: ogranicza tło i iskry do sekcji hero ── */
.ip-hero-wrap {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

/* Nadpisz fixed → absolute dla elementów zamkniętych w hero */
.ip-hero-wrap .iron-bg,
.ip-hero-wrap .iron-overlay,
.ip-hero-wrap .iron-embers,
.ip-hero-wrap .ip-blood-veil {
    position: absolute;
}

/* Extra blood-red depth layer (teraz absolute w hero-wrap) */
.ip-blood-veil {
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 80%, rgba(100,0,0,0.30) 0%, transparent 65%),
        radial-gradient(ellipse at 50% 20%, rgba(60,0,0,0.20) 0%, transparent 55%);
    z-index: 2;
    pointer-events: none;
}

/* ── Hero (zajmuje całość hero-wrap) ── */
.ip-hero {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;        /* wypełnia ip-hero-wrap */
    padding: 60px 20px 40px;
    text-align: center;
}

.ip-hero-logo {
    width: clamp(240px, 34vw, 500px);
    filter:
        drop-shadow(0 6px 40px rgba(0,0,0,0.95))
        drop-shadow(0 0 70px rgba(160,0,0,0.45));
    animation: iron-logo-pulse 5s ease-in-out infinite alternate;
    margin-bottom: clamp(18px, 3vh, 36px);
}

.ip-hero-sub {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(10px, 1.1vw, 14px);
    font-weight: 700;
    letter-spacing: 0.55em;
    text-transform: uppercase;
    color: rgba(210,50,50,0.80);
    text-shadow: 0 0 22px rgba(180,0,0,0.45);
    margin-bottom: clamp(50px, 8vh, 100px);
    animation: iron-fade-in 2.4s ease forwards;
    opacity: 0;
    animation-delay: 0.6s;
}

/* Data startu */
.ip-hero-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: clamp(40px, 6vh, 72px);
    animation: iron-fade-in 3s ease forwards;
    opacity: 0;
    animation-delay: 1.1s;
}

.ip-hero-date-label {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(10px, 0.9vw, 12px);
    font-weight: 700;
    letter-spacing: 0.55em;
    text-transform: uppercase;
    color: rgba(200,70,70,0.70);
}

.ip-hero-date-value {
    font-family: 'Cinzel Decorative', 'Cinzel', serif;
    font-size: clamp(22px, 3.2vw, 46px);
    font-weight: 900;
    letter-spacing: 0.12em;
    color: #fff;
    line-height: 1;
    text-shadow:
        0 0 18px rgba(255,40,40,0.80),
        0 0 50px rgba(200,0,0,0.45),
        0 3px 16px rgba(0,0,0,1);
}

/* Scroll hint */
.ip-scroll-hint {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    position: absolute;
    bottom: clamp(28px, 5vh, 52px);
    left: 50%;
    transform: translateX(-50%);
    animation: ip-bounce 2.4s ease-in-out infinite;
    cursor: default;
}

.ip-scroll-hint span {
    font-family: 'Cinzel', serif;
    font-size: 11px;
    letter-spacing: 0.38em;
    text-transform: uppercase;
    color: rgba(230,160,160,0.75);
    text-shadow: 0 0 18px rgba(200,30,30,0.5);
}

.ip-scroll-hint-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
}

/* Trzy kolejne chevron-y — każdy jaśniejszy, tworząc efekt "płynięcia" */
.ip-scroll-hint-arrow svg {
    width: 22px;
    height: 14px;
    display: block;
    color: rgba(210,40,40,0.9);
    filter: drop-shadow(0 0 6px rgba(200,0,0,0.55));
}

.ip-scroll-hint-arrow svg:nth-child(1) { opacity: 0.35; }
.ip-scroll-hint-arrow svg:nth-child(2) { opacity: 0.65; }
.ip-scroll-hint-arrow svg:nth-child(3) { opacity: 1;    }

@keyframes ip-bounce {
    0%, 100% { transform: translateX(-50%) translateY(0);    opacity: 0.7; }
    50%       { transform: translateX(-50%) translateY(9px);  opacity: 1;   }
}

/* ── Content wrapper — własne tło, oddzielone od hero ── */
.ip-content {
    position: relative;
    z-index: 10;
    padding-bottom: 140px;
    background:
        linear-gradient(to bottom,
            #0c0101 0%,
            #080000 30%,
            #050000 100%);
    /* Subtelna tekstura z czerwonym akcentem po bokach */
    box-shadow: inset 0 0 120px rgba(80,0,0,0.18);
}

/* ── Section separator ── */
.ip-sep {
    width: clamp(80px, 14vw, 200px);
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(180,20,20,0.55), transparent);
    margin: 0 auto 80px;
}

/* ── Wide card (screenshot + text side-by-side) ── */
.ip-row {
    display: flex;
    align-items: stretch;
    max-width: 1160px;
    margin: 0 auto 80px;
    padding: 0 clamp(16px, 4vw, 48px);
}

.ip-row.ip-row-rev {
    flex-direction: row-reverse;
}

.ip-card-wide {
    display: flex;
    width: 100%;
    background: linear-gradient(135deg, rgba(8,1,1,0.88) 0%, rgba(20,4,4,0.80) 100%);
    border: 1px solid rgba(160,15,15,0.28);
    border-radius: 3px;
    overflow: hidden;
    position: relative;
    transition: border-color 0.3s;
}

.ip-card-wide:hover {
    border-color: rgba(200,25,25,0.50);
}

.ip-card-wide::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(to right, transparent, rgba(200,30,30,0.75), transparent);
}

/* Screenshot area */
.ip-shot {
    flex: 0 0 55%;
    position: relative;
    overflow: hidden;
    min-height: 320px;
    background: rgba(4,0,0,0.95);
}

/* Inner vignette — przyciemnienie rogów i krawędzi */
.ip-shot::after,
.ip-shot-sm::after,
.ip-shot-video::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
    background:
        radial-gradient(ellipse at 50% 50%,
            transparent        40%,
            rgba(0,0,0,0.45)   70%,
            rgba(0,0,0,0.80)  100%
        );
}

.ip-shot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.82;
    transition: opacity 0.35s, transform 0.5s;
    display: block;
}

.ip-card-wide:hover .ip-shot img {
    opacity: 0.96;
    transform: scale(1.04);
}

/* Bardziej przybliżony kadr — skupia się na postaci/napisie */
/* translateY: wartości dodatnie przesuwają obraz w dół, ujemne w górę */
.ip-shot-zoom img {
    transform: scale(1.45) translateY(8%);
}

.ip-card-wide:hover .ip-shot-zoom img {
    transform: scale(1.50) translateY(8%);
}

/* Placeholder when no screenshot yet */
.ip-shot-placeholder {
    flex: 0 0 55%;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    background:
        repeating-linear-gradient(
            45deg,
            rgba(12,1,1,0.95) 0px,
            rgba(12,1,1,0.95) 12px,
            rgba(18,3,3,0.95) 12px,
            rgba(18,3,3,0.95) 24px
        );
    border-right: 1px solid rgba(110,8,8,0.25);
    position: relative;
    overflow: hidden;
}

.ip-shot-placeholder::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(80,0,0,0.18) 0%, transparent 70%);
}

.ip-shot-placeholder-label {
    font-family: 'Cinzel', serif;
    font-size: 9px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: rgba(150,15,15,0.45);
    text-align: center;
    line-height: 2;
    position: relative;
    z-index: 1;
}

.ip-shot-placeholder-icon {
    width: 38px;
    height: 38px;
    color: rgba(130,10,10,0.30);
    position: relative;
    z-index: 1;
}

/* Text body */
.ip-card-body {
    flex: 1;
    padding: clamp(28px, 4vw, 52px) clamp(24px, 3.5vw, 48px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ip-tag {
    display: inline-block;
    background: rgba(100,0,0,0.35);
    border: 1px solid rgba(180,20,20,0.40);
    border-radius: 2px;
    padding: 4px 12px;
    font-family: 'Cinzel', serif;
    font-size: 9px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: rgba(210,70,70,0.85);
    margin-bottom: 14px;
    align-self: flex-start;
}

.ip-card-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(17px, 2vw, 26px);
    font-weight: 900;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 0 0 28px rgba(220,30,30,0.55);
    margin-bottom: 16px;
    line-height: 1.25;
}

.ip-card-divider {
    width: 52px;
    height: 1px;
    background: linear-gradient(to right, rgba(200,30,30,0.85), transparent);
    margin-bottom: 18px;
}

.ip-card-text {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(13px, 1vw, 15px);
    font-weight: 400;
    line-height: 1.80;
    color: rgba(215,185,185,0.78);
}

/* ── Small 2-col grid ── */
.ip-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 1160px;
    margin: 0 auto 80px;
    padding: 0 clamp(16px, 4vw, 48px);
}

.ip-card-sm {
    background: linear-gradient(135deg, rgba(8,1,1,0.88) 0%, rgba(20,4,4,0.80) 100%);
    border: 1px solid rgba(160,15,15,0.25);
    border-radius: 3px;
    padding: 0;
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: border-color 0.3s;
}

.ip-card-sm:hover {
    border-color: rgba(200,25,25,0.45);
}

.ip-card-sm::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(to right, transparent, rgba(200,30,30,0.65), transparent);
    z-index: 1;
}

/* Placeholder na górze małej karty */
.ip-shot-sm {
    flex: none;
    height: 210px;
    min-height: unset;
    border-right: none;
    border-bottom: 1px solid rgba(110,8,8,0.22);
    position: relative;
    overflow: hidden;
}

/* Wideo w małej karcie */
.ip-shot-video {
    position: relative;
    overflow: hidden;
}

.ip-shot-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.45) translateX(8%);
}

.ip-shot-video-out video {
    transform: scale(1.1);
}

.ip-shot-video-backflip video {
    transform: scale(1.45) translateX(8%) translateY(-8%);
}

.ip-shot-video-rumak video {
    transform: scale(1.1);
}

.ip-shot-video-pompka video {
    transform: scale(1.0);
}

/* Zdjęcie w małej karcie (ip-shot-sm) */
.ip-shot-sm img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.85;
    transition: opacity 0.35s, transform 0.5s;
}

.ip-card-sm:hover .ip-shot-sm img {
    opacity: 0.97;
    transform: scale(1.04);
}

.ip-shot-start img {
    object-position: 0% center;
}

/* Treść pod obrazkiem */
.ip-card-sm-body {
    padding: clamp(20px, 2.5vw, 32px) clamp(18px, 2vw, 28px);
    display: flex;
    flex-direction: column;
}

/* ── Section headline (standalone) ── */
.ip-headline {
    text-align: center;
    max-width: 1160px;
    margin: 0 auto 48px;
    padding: 0 clamp(16px, 4vw, 48px);
}

.ip-headline-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(20px, 2.4vw, 32px);
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 0 0 36px rgba(200,20,20,0.55);
    margin-bottom: 14px;
}

.ip-headline-sub {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(12px, 1vw, 14px);
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(200,50,50,0.70);
    margin-bottom: 0;
}

.ip-headline-divider {
    width: clamp(60px, 10vw, 130px);
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(190,25,25,0.65), transparent);
    margin: 18px auto 0;
}

/* ══════════════════════════════════════════
   KODEKS PRÓBY
═══════════════════════════════════════════ */
.ip-codex {
    max-width: 1000px;
    margin: 0 auto 80px;
    padding: 0 clamp(16px, 4vw, 48px);
}

.ip-codex-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 48px;
}

.ip-codex-header-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(180,20,20,0.50));
}

.ip-codex-header-line:last-child {
    background: linear-gradient(to left, transparent, rgba(180,20,20,0.50));
}

.ip-codex-header span {
    font-family: 'Cinzel', serif;
    font-size: clamp(11px, 1vw, 14px);
    font-weight: 700;
    letter-spacing: 0.38em;
    text-transform: uppercase;
    color: rgba(210,70,70,0.80);
    white-space: nowrap;
}

/* Blok (zakazy / inne zasady) */
.ip-codex-block {
    background: linear-gradient(135deg, rgba(8,1,1,0.85) 0%, rgba(18,3,3,0.75) 100%);
    border: 1px solid rgba(140,12,12,0.22);
    border-radius: 3px;
    padding: clamp(24px, 3vw, 40px) clamp(20px, 3vw, 40px);
    margin-bottom: 16px;
    position: relative;
}

.ip-codex-block::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(to right, transparent, rgba(190,25,25,0.60), transparent);
}

.ip-codex-block-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Cinzel', serif;
    font-size: clamp(11px, 1vw, 13px);
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(220,100,100,0.85);
    margin-bottom: 24px;
}

.ip-codex-block-title svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: rgba(210,40,40,0.80);
}

/* Lista */
.ip-codex-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.ip-codex-list li {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(12px, 0.95vw, 14px);
    font-weight: 400;
    line-height: 1.65;
    color: rgba(210,180,180,0.78);
    padding: 11px 0 11px 20px;
    position: relative;
    border-bottom: 1px solid rgba(100,8,8,0.18);
}

.ip-codex-list li:last-child {
    border-bottom: none;
}

.ip-codex-list li strong {
    color: rgba(235,180,180,0.95);
    font-weight: 700;
}

/* Ikona przed każdym elementem */
.ip-codex-list-ban li::before {
    content: '✕';
    position: absolute;
    left: 0;
    top: 12px;
    font-size: 10px;
    color: rgba(210,30,30,0.75);
    font-weight: 700;
}

.ip-codex-list-rule li::before {
    content: '◆';
    position: absolute;
    left: 0;
    top: 13px;
    font-size: 7px;
    color: rgba(180,60,60,0.65);
}

/* ── Nota wprowadzająca do rozdziału ── */
.ip-note {
    max-width: 1160px;
    margin: -28px auto 52px;
    padding: 0 clamp(16px, 4vw, 48px);
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(12px, 1vw, 14px);
    font-weight: 500;
    line-height: 1.7;
    color: rgba(200,160,160,0.60);
    text-align: center;
    letter-spacing: 0.02em;
}

.ip-note strong {
    color: rgba(220,90,90,0.85);
    font-weight: 700;
}

/* ── Wymagania (poziom, koń, brak śmierci) ── */
.ip-req-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}

.ip-req {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    background: rgba(60,5,5,0.55);
    border: 1px solid rgba(160,20,20,0.35);
    border-radius: 2px;
    font-family: 'Cinzel', serif;
    font-size: clamp(9px, 0.8vw, 11px);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(220,160,160,0.80);
}

.ip-req-death {
    background: rgba(80,0,0,0.60);
    border-color: rgba(200,20,20,0.45);
    color: rgba(240,100,100,0.90);
}

.ip-req-icon {
    font-size: 11px;
    line-height: 1;
    filter: grayscale(0.2);
}

/* ── Cytat końcowy ── */
.ip-closing {
    text-align: center;
    max-width: 720px;
    margin: 60px auto 0;
    padding: 0 clamp(16px, 4vw, 48px);
}

.ip-closing-quote {
    font-family: 'Cinzel', serif;
    font-size: clamp(16px, 1.8vw, 24px);
    font-weight: 700;
    font-style: italic;
    letter-spacing: 0.06em;
    color: rgba(255,255,255,0.88);
    text-shadow:
        0 0 32px rgba(200,20,20,0.55),
        0 2px 12px rgba(0,0,0,0.9);
    margin-bottom: 18px;
    line-height: 1.5;
}

.ip-closing-sub {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(12px, 1vw, 14px);
    font-weight: 600;
    letter-spacing: 0.30em;
    text-transform: uppercase;
    color: rgba(210,60,60,0.70);
    margin-bottom: 0;
}

/* ══════════════════════════════════════════════════════════
   GÓRA SOHAN — Ice / Cold Theme
══════════════════════════════════════════════════════════ */

/* Gradient przejścia: czerwień → lód */
.ip-sohan-bridge {
    width: 100%;
    height: 180px;
    background: linear-gradient(
        to bottom,
        #050000  0%,
        #020406 40%,
        #000c16 80%,
        #000d18 100%
    );
    pointer-events: none;
}

/* Sekcja lodowa */
.ip-sohan {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(to bottom,
            #000d18  0%,
            #000912 50%,
            #00070e 100%);
    box-shadow: inset 0 0 130px rgba(18, 75, 140, 0.16);
    padding-bottom: 120px;
}

/* Cząsteczki śniegu */
.ip-sohan-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.sohan-particle {
    position: absolute;
    border-radius: 50%;
    background: var(--color);
    box-shadow: 0 0 5px var(--glow);
    top: -8px;
    left: var(--x);
    animation: sohan-fall var(--dur) var(--delay) linear infinite;
}

@keyframes sohan-fall {
    0%   { transform: translateY(0) translateX(0);              opacity: 0;   }
    6%   { opacity: 1; }
    92%  { opacity: 0.55; }
    100% { transform: translateY(2400px) translateX(var(--drift)); opacity: 0; }
}

/* Separatory lodowe */
.ip-sep--ice {
    background: linear-gradient(to right, transparent, rgba(70,160,220,0.50), transparent);
}

/* Odznaka daty dostępności */
.ip-avail-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 28px 12px 22px;
    border-radius: 3px;
    font-family: 'Cinzel', serif;
    font-size: clamp(11px, 1vw, 14px);
    letter-spacing: 0.28em;
    text-transform: uppercase;
    margin-bottom: 28px;
}

.ip-avail-badge svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    opacity: 0.90;
}

.ip-avail-badge--ice {
    background: rgba(0,30,65,0.65);
    border: 1px solid rgba(65,155,225,0.60);
    color: rgba(120,205,252,0.85);
    box-shadow:
        0 0 28px rgba(40,130,220,0.22),
        inset 0 0 20px rgba(20,80,160,0.15);
}

.ip-avail-badge--ice strong {
    color: #fff;
    font-weight: 900;
    font-size: clamp(14px, 1.4vw, 20px);
    letter-spacing: 0.14em;
    text-shadow:
        0 0 18px rgba(100,200,255,0.80),
        0 0 40px rgba(60,160,240,0.45);
}

/* Nagłówek — warianty lodowe */
.ip-headline-sub--ice {
    color: rgba(80,175,235,0.70);
}

.ip-headline-title--ice {
    text-shadow: 0 0 38px rgba(55,155,230,0.55);
}

.ip-headline-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(10px, 0.88vw, 13px);
    font-weight: 500;
    letter-spacing: 0.30em;
    text-transform: uppercase;
    color: rgba(95,180,235,0.52);
    margin-top: 8px;
    margin-bottom: 0;
}

.ip-headline-divider--ice {
    background: linear-gradient(to right, transparent, rgba(65,155,220,0.65), transparent);
}

/* Nota — lodowa */
.ip-note--ice {
    color: rgba(175,220,242,0.58);
}

.ip-note--ice strong {
    color: rgba(100,198,248,0.90);
}

/* Karta szeroka — lód */
.ip-card-wide--ice {
    background: linear-gradient(135deg, rgba(0,9,20,0.90) 0%, rgba(2,14,30,0.82) 100%);
    border-color: rgba(38,108,175,0.28);
}

.ip-card-wide--ice:hover {
    border-color: rgba(58,148,220,0.50);
}

.ip-card-wide--ice::before {
    background: linear-gradient(to right, transparent, rgba(58,148,220,0.68), transparent);
}

/* Karta mała — lód */
.ip-card-sm--ice {
    background: linear-gradient(135deg, rgba(0,9,20,0.90) 0%, rgba(2,14,30,0.82) 100%);
    border-color: rgba(38,108,175,0.25);
}

.ip-card-sm--ice:hover {
    border-color: rgba(58,148,220,0.45);
}

.ip-card-sm--ice::before {
    background: linear-gradient(to right, transparent, rgba(58,148,220,0.58), transparent);
}

/* Tag — lód */
.ip-tag--ice {
    background: rgba(0,38,76,0.40);
    border-color: rgba(48,138,212,0.40);
    color: rgba(100,192,242,0.85);
}

/* Tytuł karty — lód */
.ip-card-title--ice {
    text-shadow: 0 0 28px rgba(55,148,222,0.55);
}

/* Linia podziału karty — lód */
.ip-card-divider--ice {
    background: linear-gradient(to right, rgba(58,148,220,0.85), transparent);
}

/* Tekst karty — lód */
.ip-card-text--ice {
    color: rgba(172,218,242,0.75);
}

.ip-card-text--ice strong {
    color: rgba(130,205,250,0.92);
    font-weight: 600;
}

/* Placeholder szeroki — lód */
.ip-shot-placeholder--ice {
    background:
        repeating-linear-gradient(
            45deg,
            rgba(0,10,22,0.96) 0px,
            rgba(0,10,22,0.96) 12px,
            rgba(2,14,28,0.96) 12px,
            rgba(2,14,28,0.96) 24px
        );
    border-right-color: rgba(28,88,150,0.25);
}

.ip-shot-placeholder--ice::after {
    background: radial-gradient(ellipse at center, rgba(18,78,158,0.18) 0%, transparent 70%);
}

.ip-shot-placeholder--ice .ip-shot-placeholder-label {
    color: rgba(58,150,212,0.52);
}

.ip-shot-placeholder--ice .ip-shot-placeholder-icon {
    color: rgba(48,128,200,0.38);
}

/* Shot SM — lód (placeholder wbudowany) */
.ip-sohan-shot-sm {
    flex: none;
    height: 210px;
    min-height: unset;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(28,88,150,0.22);
    background:
        repeating-linear-gradient(
            45deg,
            rgba(0,10,22,0.96) 0px,
            rgba(0,10,22,0.96) 12px,
            rgba(2,14,28,0.96) 12px,
            rgba(2,14,28,0.96) 24px
        );
}

.ip-sohan-shot-sm::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(18,78,158,0.18) 0%, transparent 70%);
    pointer-events: none;
}

.ip-sohan-shot-sm .ip-shot-placeholder-label {
    color: rgba(58,150,212,0.52);
    font-family: 'Cinzel', serif;
    font-size: 9px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    text-align: center;
    line-height: 2;
    position: relative;
    z-index: 1;
}

.ip-sohan-shot-sm .ip-shot-placeholder-icon {
    width: 38px;
    height: 38px;
    color: rgba(48,128,200,0.38);
    position: relative;
    z-index: 1;
}

/* Shot bossa — kadrowanie od góry (sufit jaskini widoczny) */
.ip-shot--boss img {
    object-position: center 20%;
}

/* Rząd tagów (frakcja + weekly) */
.ip-tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}

/* Tag Weekly Boss — złoto/bursztyn na ciemnym tle */
.ip-tag--weekly {
    display: inline-block;
    background: rgba(60,35,0,0.55);
    border: 1px solid rgba(200,140,20,0.50);
    border-radius: 2px;
    padding: 4px 12px;
    font-family: 'Cinzel', serif;
    font-size: 9px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: rgba(230,175,50,0.90);
}

/* Wariant karty bossa — ciemniejszy, cięższy */
.ip-card-wide--boss {
    background: linear-gradient(135deg, rgba(0,5,14,0.95) 0%, rgba(3,10,22,0.90) 100%);
    border-color: rgba(30,70,130,0.40);
}

.ip-card-wide--boss:hover {
    border-color: rgba(45,110,195,0.60);
}

.ip-card-wide--boss::before {
    background: linear-gradient(to right,
        transparent,
        rgba(40,100,200,0.45) 30%,
        rgba(180,130,20,0.40) 70%,
        transparent);
}

/* Placeholder bossa — głębszy, ciemniejszy */
.ip-shot-placeholder--boss {
    background:
        repeating-linear-gradient(
            45deg,
            rgba(0,6,16,0.98) 0px,
            rgba(0,6,16,0.98) 12px,
            rgba(1,9,20,0.98) 12px,
            rgba(1,9,20,0.98) 24px
        );
}

.ip-shot-placeholder--boss::after {
    background: radial-gradient(ellipse at center,
        rgba(10,40,100,0.28) 0%,
        rgba(40,20,0,0.10) 55%,
        transparent 75%);
}

/* Zamknięcie — lód */
.ip-closing-quote--ice {
    text-shadow:
        0 0 32px rgba(55,148,222,0.55),
        0 2px 12px rgba(0,0,0,0.92);
}

.ip-closing-sub--ice {
    color: rgba(68,148,212,0.70);
}

/* ══════════════════════════════════════════════════════════
   TO NIE WSZYSTKO — Warm / Amber Theme
══════════════════════════════════════════════════════════ */

/* Gradient przejścia: lód → ciepły grafit */
.ip-more-bridge {
    width: 100%;
    height: 160px;
    background: linear-gradient(
        to bottom,
        #00070e  0%,
        #050404 50%,
        #0c0a07 100%
    );
    pointer-events: none;
}

/* Sekcja */
.ip-more {
    background:
        linear-gradient(to bottom,
            #0c0a07  0%,
            #0e0c08 50%,
            #0b0905 100%);
    box-shadow: inset 0 0 120px rgba(100,75,15,0.10);
    padding-bottom: 120px;
}

/* ── Baner "To Nie Wszystko" ── */
.ip-more-banner {
    display: flex;
    align-items: center;
    gap: 28px;
    max-width: 1160px;
    margin: 0 auto 64px;
    padding: clamp(48px, 6vh, 88px) clamp(16px, 4vw, 48px) 0;
}

.ip-more-banner-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(170,130,40,0.45));
}

.ip-more-banner-line:last-child {
    background: linear-gradient(to left, transparent, rgba(170,130,40,0.45));
}

.ip-more-banner-center {
    text-align: center;
    flex-shrink: 0;
}

.ip-more-eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(9px, 0.78vw, 11px);
    font-weight: 600;
    letter-spacing: 0.42em;
    text-transform: uppercase;
    color: rgba(185,145,55,0.62);
    margin-bottom: 10px;
}

.ip-more-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(26px, 3.8vw, 54px);
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #fff;
    line-height: 1.1;
    text-shadow:
        0 0 40px rgba(200,155,40,0.45),
        0 0 80px rgba(160,110,20,0.22),
        0 3px 18px rgba(0,0,0,1);
}

/* Grid wariantu "more" — trochę większy odstęp */
.ip-grid--more {
    max-width: 1000px;
    gap: 24px;
}

/* Karta ciepła */
.ip-card-sm--warm {
    background: linear-gradient(135deg, rgba(14,10,4,0.92) 0%, rgba(20,15,7,0.84) 100%);
    border-color: rgba(140,100,25,0.28);
}

.ip-card-sm--warm:hover {
    border-color: rgba(190,145,40,0.50);
}

.ip-card-sm--warm::before {
    background: linear-gradient(to right, transparent, rgba(185,140,35,0.55), transparent);
}

/* Shot SM ciepły */
.ip-warm-shot-sm {
    flex: none;
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(130,95,22,0.25);
    background:
        repeating-linear-gradient(
            45deg,
            rgba(14,10,4,0.97) 0px,
            rgba(14,10,4,0.97) 12px,
            rgba(18,13,5,0.97) 12px,
            rgba(18,13,5,0.97) 24px
        );
}

.ip-warm-shot-sm::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(100,70,8,0.16) 0%, transparent 68%);
    pointer-events: none;
}

.ip-warm-shot-sm .ip-shot-placeholder-icon {
    color: rgba(160,115,25,0.38);
    width: 44px;
    height: 44px;
    position: relative;
    z-index: 1;
}

.ip-warm-shot-sm .ip-shot-placeholder-label {
    color: rgba(160,120,30,0.50);
    font-family: 'Cinzel', serif;
    font-size: 9px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    text-align: center;
    line-height: 2;
    position: relative;
    z-index: 1;
}

/* Tag ciepły (amber) */
.ip-tag--warm {
    background: rgba(45,30,4,0.55);
    border-color: rgba(175,130,35,0.42);
    color: rgba(215,170,65,0.88);
}

/* Tag Weekly Warm — jaśniejsze złoto */
.ip-tag--weekly-warm {
    display: inline-block;
    background: rgba(50,32,0,0.60);
    border: 1px solid rgba(210,160,30,0.52);
    border-radius: 2px;
    padding: 4px 12px;
    font-family: 'Cinzel', serif;
    font-size: 9px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: rgba(240,195,65,0.92);
}

/* Tytuł karty ciepłej */
.ip-card-title--warm {
    text-shadow: 0 0 26px rgba(185,140,35,0.45);
}

/* Divider ciepły */
.ip-card-divider--warm {
    background: linear-gradient(to right, rgba(185,140,35,0.80), transparent);
}

/* Tekst ciepły */
.ip-card-text--warm {
    color: rgba(218,195,155,0.75);
}

.ip-card-text--warm strong {
    color: rgba(230,200,120,0.92);
    font-weight: 600;
}

/* ══════════════════════════════════════════════════════════
   CTA — Wracasz do gry?
══════════════════════════════════════════════════════════ */
.ip-cta-wrap {
    background: #080705;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: clamp(60px, 9vh, 110px) clamp(16px, 4vw, 48px) clamp(70px, 10vh, 120px);
    border-top: 1px solid rgba(160,120,30,0.18);
}

.ip-cta-label {
    font-family: 'Cinzel', serif;
    font-size: clamp(15px, 1.6vw, 22px);
    font-weight: 700;
    letter-spacing: 0.20em;
    text-transform: uppercase;
    color: rgba(220,195,140,0.70);
    text-shadow: 0 0 28px rgba(170,125,25,0.25);
    margin: 0;
}

.ip-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 16px 44px;
    background: linear-gradient(135deg, rgba(30,22,4,0.80) 0%, rgba(42,30,6,0.70) 100%);
    border: 1px solid rgba(190,145,35,0.55);
    border-radius: 3px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.25s;
}

.ip-cta-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(200,155,35,0.10) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
}

.ip-cta-btn:hover {
    border-color: rgba(220,175,50,0.80);
    box-shadow:
        0 0 32px rgba(190,145,30,0.28),
        0 0 70px rgba(160,115,15,0.14);
    transform: translateY(-2px);
}

.ip-cta-btn:hover::before {
    opacity: 1;
}

.ip-cta-btn:hover .ip-cta-btn-text {
    color: rgba(245,215,110,0.98);
}

.ip-cta-btn:hover svg {
    transform: translateX(4px);
    color: rgba(240,205,90,0.95);
}

.ip-cta-btn-text {
    font-family: 'Cinzel', serif;
    font-size: clamp(12px, 1.1vw, 16px);
    font-weight: 700;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: rgba(220,185,75,0.90);
    transition: color 0.3s;
    position: relative;
    z-index: 1;
}

.ip-cta-btn svg {
    width: 18px;
    height: 18px;
    color: rgba(210,170,55,0.80);
    transition: transform 0.25s, color 0.3s;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

/* ── Video block ── */
.ip-video-block {
    padding: clamp(48px, 8vh, 96px) clamp(20px, 6vw, 80px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(24px, 4vh, 48px);
}

.ip-video-wrap {
    width: 100%;
    max-width: 920px;
    aspect-ratio: 16 / 9;
    border-radius: 6px;
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(180, 100, 20, 0.22),
        0 8px 56px rgba(0, 0, 0, 0.85),
        0 0 70px rgba(160, 60, 10, 0.12);
}

.ip-video-wrap iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* ── Responsive ── */
@media (max-width: 820px) {
    .ip-card-wide,
    .ip-row.ip-row-rev .ip-card-wide {
        flex-direction: column;
    }

    .ip-shot,
    .ip-shot-placeholder {
        flex: none;
        min-height: 200px;
        border-right: none;
        border-bottom: 1px solid rgba(110,8,8,0.25);
    }

    .ip-shot-placeholder--ice {
        border-right: none;
        border-bottom: 1px solid rgba(28,88,150,0.28);
    }

    .ip-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .ip-hero-logo {
        width: clamp(200px, 76vw, 320px);
    }
}
