/* =========================================================
   Gamehost - nowa strona główna
   Na bazie zatwierdzonej makiety: kierunek B, układ dzielony,
   przyciski w stylu Paradigm, krój Sora.
   ========================================================= */

:root {
    --bg: #060912;
    --bg-2: #0a0f1c;
    --card: #0f1729;
    --line: rgba(148, 178, 255, 0.16);
    --line-2: rgba(180, 200, 240, 0.32);

    --text: #e6eef9;
    --text-2: #94a3bd;
    --text-3: #64748f;
    --ice: #f2f6ff;
    --sky: #5ec8ff;
    --blue: #2f7bff;

    --font: 'DM Sans', 'Segoe UI', system-ui, sans-serif;
    --font-head: 'Unbounded', 'Sora', 'DM Sans', system-ui, sans-serif;

    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
    --promo-h: 38px;
    --top-h: 88px;
    --wrap: 1312px;

    /* Przyciski w stylu Paradigm */
    --glass-bg: rgba(255, 255, 255, 0.06);
    --glass-shadow: 0 1px 0 rgba(255, 255, 255, 0.12) inset;
    --blue-bg: linear-gradient(135deg, #f4f9ff 0%, #c4e8ff 55%, #8fd8ff 100%);
    --blue-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset, 0 8px 24px -10px rgba(143, 216, 255, 0.9);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; font-synthesis-weight: none; }
body { font-family: var(--font); background: var(--bg); color: var(--text); line-height: 1.5; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
::selection { background: rgba(47, 123, 255, 0.45); color: #fff; }
body { scrollbar-color: #182238 var(--bg); scrollbar-width: thin; }

/* ---------- Przyciski ---------- */
/* przyciski B+H */
.btn-glass, .btn-blue {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 10px 18px; border-radius: 14px; font-size: 14px; font-weight: 700; white-space: nowrap;
    transition: transform 0.35s var(--ease), filter 0.25s ease, background-color 0.3s ease, border-color 0.3s ease, color 0.25s ease, box-shadow 0.35s ease;
}
.btn-glass { color: #eaf4ff; background: var(--glass-bg); border: 1px solid rgba(255, 255, 255, 0.14); box-shadow: var(--glass-shadow); }
.btn-glass:hover { color: #fff; background: rgba(255, 255, 255, 0.11); border-color: rgba(255, 255, 255, 0.26); box-shadow: 0 1px 0 rgba(255, 255, 255, 0.18) inset; }
.btn-blue { color: #06213f; background: var(--blue-bg); border: 1px solid rgba(255, 255, 255, 0.55); box-shadow: var(--blue-shadow); }
.btn-blue:hover { color: #06213f; transform: translateY(-1px); filter: brightness(1.05); border-color: rgba(255, 255, 255, 0.8); box-shadow: 0 1px 0 #ffffff inset, 0 0 0 4px rgba(143, 216, 255, 0.2), 0 12px 30px -10px rgba(143, 216, 255, 1); }
.btn-glass svg, .btn-blue svg { transition: transform 0.3s var(--ease); }
.btn-glass:hover svg, .btn-blue:hover svg { transform: translateX(3px); }
.btn-block { width: 100%; padding: 14px; font-size: 15px; }

/* ---------- Pasek promocji ---------- */
.promo {
    position: fixed; top: 0; left: 0; width: 100%; height: var(--promo-h); z-index: 1100;
    display: flex; align-items: center; justify-content: center; gap: 12px; padding: 0 14px;
    background: rgba(4, 7, 13, 0.92); border-bottom: 1px solid rgba(148, 178, 255, 0.1);
    color: #8fd0ff; font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; text-align: center;
}
.promo-tag { display: inline-flex; align-items: center; padding: 2px 9px; border-radius: 999px; border: 1px solid rgba(94, 200, 255, 0.5); background: rgba(47, 123, 255, 0.18); color: #eaf4ff; font-size: 11px; letter-spacing: 0.1em; white-space: nowrap; box-shadow: 0 0 14px rgba(47, 123, 255, 0.4); }
.promo-text { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.promo-text b { color: #fff; }

/* ---------- Navbar ---------- */
/* Zasłona przyciemniająca stronę pod otwartym menu Oferta */
body::before { content: ''; position: fixed; inset: 0; z-index: 950; background: rgba(4, 7, 14, 0.62); backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px); opacity: 0; pointer-events: none; transition: opacity 0.35s ease; }
body.drop-open::before { opacity: 1; }
.top {
    position: fixed; top: var(--promo-h); left: 0; width: 100%; z-index: 1000; height: var(--top-h);
    display: flex; align-items: center;
    transition: background 0.35s ease, height 0.35s var(--ease), box-shadow 0.35s ease;
}
.top.is-scrolled { height: 66px; background: rgba(6, 9, 18, 0.86); backdrop-filter: blur(18px) saturate(140%); -webkit-backdrop-filter: blur(18px) saturate(140%); box-shadow: 0 1px 0 var(--line); }
.top-in { position: relative; width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; display: flex; align-items: center; }
.brand { flex-shrink: 0; display: flex; }
.brand img { height: 32px; width: auto; }

.menu { position: absolute; left: 50%; transform: translateX(-50%); display: flex; align-items: center; gap: 6px; }
.menu-item { position: relative; }
.menu-link { display: inline-flex; align-items: center; gap: 6px; padding: 10px 12px; border-radius: 10px; color: #b7c3d8; font-weight: 600; font-size: 15px; transition: color 0.2s ease, background 0.2s ease; }
.menu-link.is-strong { color: #fff; }
.menu-link:hover, .has-drop.is-open .menu-link { color: #fff; background: rgba(255, 255, 255, 0.05); }
.menu-link svg { opacity: 0.7; transition: transform 0.3s var(--ease); }
.has-drop.is-open .menu-link svg { transform: rotate(180deg); }
.has-drop::before { content: ''; position: absolute; left: 0; right: 0; top: 100%; height: 18px; }

.drop {
    position: fixed; left: 50%; top: calc(100% + 6px); transform: translateX(-50%) translateY(-8px);
    width: min(1200px, calc(100vw - 48px)); padding: 14px; display: flex; flex-direction: column; gap: 12px;
    background: linear-gradient(180deg, rgba(14, 20, 36, 0.98), rgba(8, 12, 22, 0.99)); border: 1px solid rgba(180, 200, 240, 0.22); border-radius: 22px;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1) inset, 0 40px 100px -30px rgba(0, 0, 0, 0.95), 0 0 80px -30px rgba(47, 123, 255, 0.5);
    opacity: 0; visibility: hidden; transition: opacity 0.22s ease, transform 0.3s var(--ease), visibility 0s linear 0.3s; z-index: 1050;
}
.has-drop.is-open .drop { opacity: 1; visibility: visible; transform: translateX(-50%); transition: opacity 0.22s ease, transform 0.3s var(--ease), visibility 0s; }
.has-drop::before { height: 14px; }

.drop-grid { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); grid-template-rows: repeat(2, 158px); gap: 10px; }
.dtile { position: relative; display: block; border-radius: 16px; overflow: hidden; border: 1px solid rgba(148, 178, 255, 0.2); background: var(--card); transition: transform 0.35s var(--ease), border-color 0.25s ease, box-shadow 0.35s ease; }
.dtile:hover { transform: translateY(-3px); border-color: rgba(94, 200, 255, 0.5); box-shadow: 0 20px 40px -24px rgba(47, 123, 255, 0.7); }
.dtile--mc { grid-column: 1 / 3; grid-row: 1 / 3; }
.dtile--hy { grid-column: 3 / 4; grid-row: 1 / 3; }
.dtile--plus { grid-column: 5 / 7; grid-row: 2 / 3; }
.dtile-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 30%; transition: transform 0.7s var(--ease); }
.dtile--hy .dtile-img { object-position: 50% 40%; }
.dtile:hover .dtile-img { transform: scale(1.05); }
.dtile::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(6, 9, 18, 0.1) 30%, rgba(6, 9, 18, 0.94) 100%); pointer-events: none; }
.dtile--mc::after { background: linear-gradient(180deg, rgba(6, 9, 18, 0) 35%, rgba(6, 9, 18, 0.92) 100%); }
.dtile-badge { position: absolute; left: 12px; top: 12px; z-index: 2; padding: 5px 11px; border-radius: 999px; background: rgba(47, 123, 255, 0.95); color: #fff; font-size: 11px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; box-shadow: 0 0 18px rgba(47, 123, 255, 0.6); }
.dtile-badge--new { background: rgba(94, 200, 255, 0.95); color: #061018; box-shadow: none; }
.dtile-body { position: absolute; left: 12px; right: 12px; bottom: 11px; z-index: 2; display: flex; flex-direction: column; gap: 3px; }
.dtile-body--row { left: 18px; right: 18px; bottom: 16px; flex-direction: row; align-items: flex-end; justify-content: space-between; gap: 12px; }
.dtile-body--row > span:first-child { display: flex; flex-direction: column; gap: 4px; }
.dtile-name { font-family: var(--font-head); font-weight: 600; font-size: 14px; line-height: 1; color: #fff; white-space: nowrap; }
.dtile-name--lg { font-size: 28px; }
.dtile-desc { font-size: 13px; line-height: 1.35; color: #b7c3d8; }
.dtile-price { font-size: 12px; color: #b7c3d8; white-space: nowrap; }
.dtile-price b { color: var(--sky); }
.dtile-cta small { font-size: 11px; font-weight: 600; opacity: 0.7; }
.dtile-price--plus { margin: 2px 0 1px; color: #c9c3ea; }
.dtile-price--plus b { color: #ddd6fe; }
.dtile-cta { padding: 9px 14px; border-radius: 10px; font-size: 13px; flex-shrink: 0; }
.dtile-cta svg { flex-shrink: 0; }
.dtile-body--row > span:first-child { min-width: 0; }

/* Bot Discord: blurple z dużym wyblakłym logo */
.dtile--dc { background: radial-gradient(90% 90% at 70% 0%, rgba(88, 101, 242, 0.55), transparent 60%), #0f1729; }
.dtile--dc::after { background: linear-gradient(180deg, rgba(6, 9, 18, 0) 40%, rgba(6, 9, 18, 0.9) 100%); }
.dtile--dc::before { content: ''; position: absolute; right: -18px; top: -10px; width: 120px; height: 120px; background: url('../img/discord.webp') center / contain no-repeat; opacity: 0.14; transform: rotate(-12deg); transition: transform 0.6s var(--ease), opacity 0.4s ease; }
.dtile--dc:hover::before { transform: rotate(-4deg) scale(1.08); opacity: 0.2; }
.dtile-mark { position: absolute; right: 12px; top: 12px; width: 34px; height: 34px; z-index: 2; }

/* Gamehost+: fiolet i błękit, siatka, wielki plus */
.dtile--plus { display: flex; flex-direction: column; justify-content: space-between; padding: 12px 14px; border-color: rgba(120, 110, 255, 0.35); background: radial-gradient(90% 100% at 100% 0%, rgba(99, 60, 255, 0.5), transparent 60%), radial-gradient(80% 90% at 0% 100%, rgba(47, 123, 255, 0.35), transparent 60%), #0d1230; }
.dtile--plus::after { background: repeating-linear-gradient(0deg, rgba(180, 160, 255, 0.07) 0 1px, transparent 1px 22px), repeating-linear-gradient(90deg, rgba(180, 160, 255, 0.07) 0 1px, transparent 1px 22px); -webkit-mask-image: radial-gradient(80% 100% at 100% 50%, #000, transparent); mask-image: radial-gradient(80% 100% at 100% 50%, #000, transparent); }
.dtile--plus:hover { border-color: rgba(167, 139, 250, 0.6); box-shadow: 0 20px 40px -24px rgba(124, 58, 237, 0.7); }
.dtile-plus-glyph { position: absolute; right: 14px; top: -22px; font-family: var(--font-head); font-weight: 600; font-size: 123px; line-height: 1; color: transparent; -webkit-text-stroke: 1px rgba(196, 181, 253, 0.28); pointer-events: none; transition: transform 0.6s var(--ease); }
.dtile--plus:hover .dtile-plus-glyph { transform: rotate(8deg); }
.dtile-plus-logo { position: relative; z-index: 2; height: 26px; width: auto; align-self: flex-start; }
.dtile-plus-body { position: relative; z-index: 2; display: flex; flex-direction: column; gap: 4px; }
.dtile-plus-body .dtile-name { font-size: 15px; line-height: 1.1; white-space: normal; }
.dtile-plus-body .dtile-desc { font-size: 12px; }
.dtile-plus-body em { font-style: normal; color: #a78bfa; font-weight: 700; white-space: nowrap; }

.drop-more { display: flex; align-items: center; gap: 8px; padding-top: 12px; border-top: 1px solid rgba(148, 178, 255, 0.12); }
.dpill { display: flex; align-items: center; gap: 10px; padding: 5px 10px 5px 5px; border-radius: 12px; background: rgba(148, 178, 255, 0.05); border: 1px solid rgba(148, 178, 255, 0.12); transition: background 0.2s ease, border-color 0.2s ease, transform 0.3s var(--ease); }
.dpill:hover { background: rgba(148, 178, 255, 0.1); border-color: rgba(94, 200, 255, 0.4); transform: translateY(-2px); }
.dpill img { width: 36px; height: 36px; border-radius: 9px; object-fit: cover; }
.dpill span { display: flex; flex-direction: column; line-height: 1.2; }
.dpill b { font-size: 13.5px; font-weight: 700; color: #fff; white-space: nowrap; }
.dpill small { font-size: 11.5px; color: #8b98b2; white-space: nowrap; }
.dpill i { font-style: normal; color: var(--sky); font-weight: 700; }
.drop-all { margin-left: auto; display: flex; align-items: center; gap: 12px; padding: 6px 8px 6px 10px; border-radius: 14px; background: var(--glass-bg); border: 1px solid var(--line-2); box-shadow: var(--glass-shadow); transition: transform 0.3s var(--ease), filter 0.25s ease; }
.drop-all:hover { transform: translateY(-2px); filter: brightness(1.12); }
.drop-all-stack { display: flex; align-items: center; }
.drop-all-stack img, .drop-all-stack i { width: 30px; height: 30px; border-radius: 8px; border: 2px solid #0c1222; object-fit: cover; }
.drop-all-stack img + img, .drop-all-stack i { margin-left: -10px; }
.drop-all-stack i { display: grid; place-items: center; background: #1a2440; color: #b7c3d8; font-style: normal; font-size: 10px; font-weight: 800; }
.drop-all-text { display: flex; flex-direction: column; line-height: 1.2; }
.drop-all-text b { font-size: 13.5px; font-weight: 700; color: #fff; white-space: nowrap; }
.drop-all-text small { font-size: 11.5px; color: #8b98b2; white-space: nowrap; }
.drop-all-arrow { width: 34px; height: 34px; padding: 0; border-radius: 10px; }
.drop-all:hover .drop-all-arrow svg { transform: translateX(3px); }

.top-right { margin-left: auto; display: flex; align-items: center; gap: 10px; }

/* Język i waluta */
.lang-switch { position: relative; }
.lang-cur { padding: 9px 12px; font-size: 13px; color: #d5deee; gap: 7px; }
.lang-switch .lang-cur { gap: 8px; color: #8b98b2; background: rgba(148, 178, 255, 0.08); border-color: rgba(148, 178, 255, 0.22); box-shadow: none; }
.lang-switch .lang-cur:hover { color: #c3cee2; transform: none; background: rgba(148, 178, 255, 0.14); border-color: rgba(148, 178, 255, 0.42); box-shadow: none; }
.lang-cur .flag { width: 18px; height: 12px; border-radius: 2px; }
.lang-cur-cy { font-style: normal; padding: 2px 7px; border-radius: 6px; background: rgba(94, 200, 255, 0.16); color: #bfe6ff; font-size: 11px; font-weight: 700; letter-spacing: 0.04em; transition: background 0.3s ease, color 0.25s ease; }
.lang-switch .lang-cur:hover .lang-cur-cy, .lang-switch.is-open .lang-cur-cy { color: #fff; background: rgba(94, 200, 255, 0.3); }
.lang-cur .chev { width: 10px; height: 10px; opacity: 0.8; transition: transform 0.3s var(--ease); }
.lang-switch.is-open .lang-cur { color: #c3cee2; background: rgba(148, 178, 255, 0.14); border-color: rgba(148, 178, 255, 0.42); box-shadow: 0 0 0 3px rgba(94, 200, 255, 0.1); }
.lang-switch.is-open .lang-cur .chev { transform: rotate(180deg); }
.lang-menu {
    position: absolute; top: calc(100% + 12px); right: 0; width: 560px; padding: 14px; display: flex; flex-direction: column; gap: 10px;
    background: linear-gradient(180deg, rgba(14, 20, 36, 0.98), rgba(8, 12, 22, 0.99)); border: 1px solid rgba(180, 200, 240, 0.22); border-radius: 22px;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1) inset, 0 40px 100px -30px rgba(0, 0, 0, 0.95), 0 0 80px -30px rgba(47, 123, 255, 0.5);
    opacity: 0; visibility: hidden; transform: translateY(-8px); transform-origin: top right;
    transition: opacity 0.22s ease, transform 0.3s var(--ease), visibility 0s linear 0.3s; z-index: 1200;
}
.lang-switch.is-open .lang-menu { opacity: 1; visibility: visible; transform: none; transition: opacity 0.22s ease, transform 0.3s var(--ease), visibility 0s; }
.lang-head { display: flex; flex-direction: column; gap: 2px; padding: 2px 4px 0; }
.lang-head b { font-family: var(--font-head); font-weight: 600; font-size: 14px; color: #fff; }
.lang-head small { font-size: 12px; color: #8b98b2; }
.lang-item { display: flex; align-items: center; gap: 10px; padding: 8px 10px; border-radius: 12px; border: 1px solid rgba(148, 178, 255, 0.1); background: rgba(148, 178, 255, 0.04); color: var(--text); transition: background 0.2s ease, border-color 0.2s ease, transform 0.3s var(--ease); }
.lang-item:hover { background: rgba(148, 178, 255, 0.1); border-color: rgba(94, 200, 255, 0.4); transform: translateY(-1px); }
.lang-item .flag { width: 28px; height: 18px; border-radius: 4px; flex-shrink: 0; }
.lang-item-text { display: flex; flex-direction: column; line-height: 1.2; }
.lang-item-text b { font-size: 13.5px; font-weight: 600; color: #e6eef9; }
.lang-item-text small { font-size: 11.5px; color: #b7c3d8; }
.lang-cy { margin-left: auto; font-size: 11px; font-weight: 700; color: #8b98b2; white-space: nowrap; }
.lang-item.active { gap: 12px; padding: 10px 12px; border-radius: 14px; background: radial-gradient(120% 150% at 50% 130%, rgba(47, 123, 255, 0.45), rgba(12, 28, 68, 0.9) 65%); border-color: rgba(94, 200, 255, 0.5); box-shadow: 0 0 18px rgba(47, 123, 255, 0.3), 0 1px 0 rgba(255, 255, 255, 0.14) inset; cursor: default; }
.lang-item.active:hover { transform: none; }
.lang-item.active .flag { width: 34px; height: 24px; border-radius: 5px; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5); }
.lang-item.active .lang-item-text b { font-size: 14px; font-weight: 700; color: #fff; }
.lang-item.active .lang-cy { padding: 4px 9px; border-radius: 8px; background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.18); color: #fff; font-size: 12px; font-weight: 800; letter-spacing: 0.04em; }
.lang-check { display: grid; place-items: center; width: 22px; height: 22px; border-radius: 50%; background: var(--sky); color: #061018; flex-shrink: 0; }
.lang-check svg { width: 12px; height: 12px; }
.lang-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 6px; }

/* Burger */
.burger { display: none; width: 42px; height: 42px; padding: 0; flex-direction: column; align-items: center; justify-content: center; gap: 6px; }
.burger span { display: block; width: 18px; height: 2px; background: #fff; border-radius: 2px; transition: transform 0.35s var(--ease); }
.burger.is-open span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
.burger.is-open span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }

/* Menu mobilne */
.mobile { position: fixed; inset: 0; z-index: 990; padding-top: calc(var(--promo-h) + var(--top-h)); background: rgba(6, 9, 18, 0.97); overflow-y: auto; opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0s linear 0.3s; }
.mobile.is-open { opacity: 1; visibility: visible; transition: opacity 0.3s ease, visibility 0s; }
.mobile-in { max-width: 560px; margin: 0 auto; padding: 8px 22px 40px; display: flex; flex-direction: column; }
.mobile-label { padding: 18px 8px 8px; font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-3); }
.mobile-link { display: flex; align-items: center; gap: 10px; padding: 12px 8px; border-bottom: 1px solid var(--line); font-family: var(--font-head); font-weight: 600; font-size: 15px; color: #fff; opacity: 0; transform: translateY(6px); transition: opacity 0.3s ease, transform 0.4s var(--ease); }
.mobile.is-open .mobile-link { opacity: 1; transform: none; transition-delay: calc(var(--i, 0) * 25ms); }
.mobile-link img { width: 22px; height: 22px; object-fit: contain; }
.mobile-link b { margin-left: auto; font-family: var(--font); font-size: 13px; font-weight: 700; color: var(--sky); }
.mobile-actions { display: flex; flex-direction: column; gap: 10px; padding-top: 22px; }
.lang-switch-m { display: flex; flex-direction: column; gap: 8px; margin-top: 6px; }
.lang-switch-m .lang-head { padding-top: 10px; }

/* =========================================================
   HERO
   ========================================================= */
.hero { position: relative; z-index: 2; padding: calc(var(--promo-h) + var(--top-h)) 0 0; isolation: isolate; }

.scene { position: absolute; inset: 0; z-index: -1; overflow: hidden; pointer-events: none; background: var(--bg); }
.scene-photo { position: absolute; left: 36%; top: 0; width: 64%; height: 100%; }
.scene-bg {
    position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center;
    opacity: 0; filter: saturate(0.55) brightness(0.9); transform: scale(1.04);
    -webkit-mask-image: radial-gradient(60% 60% at 62% 42%, #000 10%, transparent 100%); mask-image: radial-gradient(60% 60% at 62% 42%, #000 10%, transparent 100%);
    transition: opacity 1.2s ease, transform 9s linear;
}
.scene-bg.is-on { opacity: 0.34; transform: scale(1); }
.scene-tint { position: absolute; inset: 0; background: rgba(47, 123, 255, 0.55); mix-blend-mode: color; -webkit-mask-image: radial-gradient(60% 60% at 62% 42%, #000 10%, transparent 100%); mask-image: radial-gradient(60% 60% at 62% 42%, #000 10%, transparent 100%); }
.scene-glow { position: absolute; border-radius: 50%; filter: blur(40px); }
.scene-glow--r { right: -8vw; top: -16vw; width: 62vw; height: 62vw; max-width: 900px; max-height: 900px; background: radial-gradient(closest-side, rgba(47, 123, 255, 0.34), rgba(14, 116, 144, 0.12) 55%, transparent 75%); }
.scene-glow--l { left: -14vw; top: -22vw; width: 48vw; height: 48vw; max-width: 700px; max-height: 700px; background: radial-gradient(closest-side, rgba(14, 116, 144, 0.28), transparent 70%); }
.scene-floor {
    position: absolute; left: 36%; top: 48%; width: 72%; height: 44%;
    background-image: linear-gradient(rgba(148, 178, 255, 0.2) 1px, transparent 1px), linear-gradient(90deg, rgba(148, 178, 255, 0.2) 1px, transparent 1px);
    background-size: 56px 56px; transform: perspective(700px) rotateX(64deg); transform-origin: 50% 100%;
    -webkit-mask-image: radial-gradient(50% 80% at 50% 100%, #000 20%, transparent 100%); mask-image: radial-gradient(50% 80% at 50% 100%, #000 20%, transparent 100%);
}
.scene-fade { position: absolute; left: 0; right: 0; bottom: 0; height: 32%; background: linear-gradient(180deg, transparent, var(--bg) 80%); }

.hero-in {
    position: relative; width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 60px 24px 0;
    display: grid; grid-template-columns: minmax(0, 640px) minmax(0, 1fr); gap: 40px; align-items: center; min-height: 780px;
}
/* Ramka hero jak ekran w Paradigm: świecąca krawędź widoczna fragmentami */
.hero-frame {
    position: absolute; left: 0; right: 0; top: 30px; bottom: 40px; border-radius: 40px; pointer-events: none; z-index: -1;
    border: 1px solid transparent; mix-blend-mode: screen; opacity: 0.9;
    background: linear-gradient(var(--bg), var(--bg)) padding-box, linear-gradient(120deg, rgba(94, 200, 255, 0.55) 0%, rgba(94, 200, 255, 0) 22%, rgba(94, 200, 255, 0) 78%, rgba(47, 123, 255, 0.5) 100%) border-box;
}

.hero-copy { display: flex; flex-direction: column; align-items: flex-start; gap: 24px; }

/* Zakładki gier */
.tabs { display: inline-flex; align-items: center; gap: 4px; padding: 5px; border-radius: 999px; background: rgba(12, 18, 32, 0.85); border: 1px solid var(--line); box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06) inset; animation: up 0.7s var(--ease) both; }
.tab { position: relative; display: inline-flex; align-items: center; gap: 9px; padding: 8px 16px 8px 10px; border-radius: 999px; border: 1px solid transparent; color: #8b98b2; font-weight: 600; font-size: 14px; overflow: hidden; transition: color 0.25s ease, background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease; }
.tab img { width: 20px; height: 20px; object-fit: contain; opacity: 0.7; transition: opacity 0.3s ease, transform 0.3s var(--ease); }
.tab:hover { color: #fff; }
.tab:hover img { opacity: 1; }
.tab.is-on { color: #fff; font-weight: 700; background: radial-gradient(120% 150% at 50% 130%, rgba(47, 123, 255, 0.6), rgba(12, 28, 68, 0.9) 65%); border-color: rgba(94, 200, 255, 0.5); box-shadow: 0 0 18px rgba(47, 123, 255, 0.35); }
.tab.is-on img { opacity: 1; transform: scale(1.1); }
.tab:focus-visible { outline: 2px solid var(--sky); outline-offset: 2px; }
.tab-progress { position: absolute; left: 12px; right: 12px; bottom: 0; height: 2px; border-radius: 2px; background: var(--sky); transform-origin: left; transform: scaleX(0); opacity: 0; }
.tab.is-on .tab-progress { opacity: 1; animation: tabProgress var(--dur, 8000ms) linear forwards; }
.tabs.is-paused .tab-progress { animation-play-state: paused; }
@keyframes tabProgress { from { transform: scaleX(0); } to { transform: scaleX(1); } }
.tabs-sep { width: 1px; height: 20px; background: var(--line); margin: 0 4px; }
.tabs-all { padding: 8px 14px; color: var(--sky); font-weight: 700; font-size: 13px; white-space: nowrap; }

/* Nagłówek */
.hero-h1 { font-family: var(--font-head); font-weight: 600; font-size: clamp(1.97rem, 3.61vw, 3.28rem); line-height: 0.98; letter-spacing: -0.035em; color: var(--ice); animation: up 0.7s var(--ease) 0.05s both; }
.hero-h1 .l { display: block; white-space: nowrap; transition: opacity 0.3s ease, transform 0.45s var(--ease); }
.hero-h1 .l:nth-child(2) { transition-delay: 40ms; }
.hero-h1 .hl, .about-title .hl { display: inline-block; padding-bottom: 0.14em; margin-bottom: -0.14em; }
.hero-h1 .hl { background: linear-gradient(120deg, #bfe6ff 0%, #5ec8ff 45%, #2f7bff 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero-h1.is-leaving .l { opacity: 0; transform: translateY(14px); }
.hero-h1.is-entering .l { animation: up 0.65s var(--ease) both; }
.hero-h1.is-entering .l:nth-child(2) { animation-delay: 60ms; }
.hero-h1.is-entering .l:nth-child(3) { animation-delay: 120ms; }
@keyframes up { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }

.hero-sub { max-width: 560px; font-size: 18px; line-height: 1.6; color: var(--text-2); animation: up 0.7s var(--ease) 0.12s both; }
.hero-sub.is-leaving { animation: heroSubOut 0.3s ease both; }
.hero-sub.is-entering { animation: heroSubIn 0.65s var(--ease) 0.18s both; }
@keyframes heroSubOut { from { opacity: 1; transform: none; } to { opacity: 0; transform: translateY(12px); } }
@keyframes heroSubIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .hero-sub.is-leaving, .hero-sub.is-entering { animation: none; } }

/* Wyszukiwarka */
.search {
    position: relative; z-index: 5; display: flex; align-items: center; gap: 8px; width: 100%; max-width: 640px;
    padding: 6px; border-radius: 18px;
    background: linear-gradient(180deg, rgba(22, 32, 56, 0.9), rgba(9, 13, 24, 0.96)); border: 1px solid rgba(180, 200, 240, 0.22);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.12) inset, 0 30px 60px -30px rgba(0, 0, 0, 0.9), 0 0 0 4px rgba(47, 123, 255, 0.05);
    transition: border-color 0.25s ease, box-shadow 0.35s ease; animation: up 0.7s var(--ease) 0.18s both;
}
.search:focus-within { border-color: rgba(94, 200, 255, 0.45); box-shadow: 0 1px 0 rgba(255, 255, 255, 0.12) inset, 0 30px 60px -30px rgba(0, 0, 0, 0.9), 0 0 0 4px rgba(47, 123, 255, 0.14), 0 0 40px -10px rgba(47, 123, 255, 0.5); }
.search-field {
    flex: 1; min-width: 0; display: flex; align-items: center; gap: 10px; height: 48px; padding: 0 10px 0 8px; border-radius: 12px; cursor: text;
    background: rgba(4, 7, 14, 0.7); border: 1px solid rgba(148, 178, 255, 0.1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5) inset, 0 1px 0 rgba(255, 255, 255, 0.04);
    transition: border-color 0.25s ease, background 0.25s ease;
}
.search:focus-within .search-field { border-color: rgba(94, 200, 255, 0.35); background: rgba(6, 10, 20, 0.9); }
.search-ico { width: 32px; height: 32px; border-radius: 50%; display: grid; place-items: center; flex-shrink: 0; color: var(--sky); background: rgba(94, 200, 255, 0.1); border: 1px solid rgba(94, 200, 255, 0.22); transition: background 0.25s ease, box-shadow 0.25s ease; }
.search-ico svg { width: 16px; height: 16px; }
.search:focus-within .search-ico { background: rgba(94, 200, 255, 0.18); box-shadow: 0 0 14px rgba(94, 200, 255, 0.35); }
.search-input { flex: 1; min-width: 0; background: none; border: 0; outline: 0; color: #fff; font: inherit; font-size: 15px; font-weight: 500; padding: 10px 0; }
.search-input::placeholder { color: #7f8db0; font-weight: 400; }
.search-kbd { flex-shrink: 0; padding: 3px 8px; border-radius: 6px; border: 1px solid rgba(148, 178, 255, 0.22); background: rgba(148, 178, 255, 0.06); color: var(--text-3); font: 600 11px/1.2 var(--font); transition: opacity 0.2s ease; }
.search:focus-within .search-kbd { opacity: 0; }
.search-btn { padding: 13px 22px; height: 48px; }
.search-list {
    position: absolute; left: 0; right: 0; top: calc(100% + 8px); padding: 6px; max-height: 340px; overflow-y: auto;
    background: #0a0f1c; border: 1px solid var(--line); border-radius: 14px; box-shadow: 0 30px 70px -30px rgba(0, 0, 0, 0.95); z-index: 20;
    animation: up 0.25s var(--ease) both;
}
.search-item { display: flex; align-items: center; gap: 12px; padding: 9px 10px; border-radius: 10px; color: var(--text); transition: background 0.15s ease; }
.search-item:hover, .search-item.is-hl { background: rgba(94, 200, 255, 0.1); }
.search-item img, .search-item-ico { width: 30px; height: 30px; border-radius: 8px; object-fit: cover; flex-shrink: 0; background: var(--card); display: grid; place-items: center; color: var(--sky); font-family: var(--font-head); font-weight: 600; font-size: 8.5px; }
.search-item-name { font-weight: 600; font-size: 14px; color: #fff; }
.search-item-name mark { background: none; color: var(--sky); }
.search-item-kind { font-size: 12px; color: var(--text-3); }
.search-item-price { margin-left: auto; font-size: 12.5px; font-weight: 700; color: var(--sky); white-space: nowrap; }
.search-empty { padding: 14px 10px; font-size: 14px; color: var(--text-3); }
.search-empty a { color: var(--sky); }

/* Zestawienie liczb */
.stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); width: 100%; max-width: 620px; margin-top: 4px; padding-top: 22px; border-top: 1px solid var(--line); animation: up 0.7s var(--ease) 0.26s both; }
.stat { display: flex; flex-direction: column; gap: 6px; }
.stat + .stat { padding-left: 22px; border-left: 1px solid var(--line); }
.stat-num { font-family: 'Sora', var(--font-head); font-weight: 800; font-size: 28px; line-height: 1; color: #fff; white-space: nowrap; font-variant-numeric: tabular-nums; }
.stat-num i { font-style: normal; color: var(--sky); }
.stat-label { font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-3); }

/* Render */
.hero-art { position: relative; height: 640px; }
.art-glow { position: absolute; left: 14%; top: 18%; width: 72%; height: 72%; border-radius: 50%; background: radial-gradient(closest-side, rgba(94, 200, 255, 0.35), rgba(47, 123, 255, 0.18) 50%, transparent 72%); filter: blur(30px); animation: breath 6s ease-in-out infinite; }
@keyframes breath { 0%, 100% { opacity: 0.8; transform: scale(1); } 50% { opacity: 1; transform: scale(1.06); } }
.render {
    position: absolute; left: 50%; top: 0; height: 100%; width: auto; max-width: 100%; transform: translateX(-50%) translateY(20px) scale(0.97); object-fit: contain; object-position: center top;
    filter: drop-shadow(0 40px 60px rgba(0, 0, 0, 0.7)); opacity: 0;
    -webkit-mask-image: linear-gradient(180deg, #000 78%, transparent 100%); mask-image: linear-gradient(180deg, #000 78%, transparent 100%);
    transition: opacity 0.8s ease, transform 1s var(--ease);
}
.render.is-on { opacity: 1; transform: translateX(-50%); animation: floaty 7s ease-in-out infinite; }
@keyframes floaty { 0%, 100% { translate: 0 0; } 50% { translate: 0 -10px; } }

/* =========================================================
   KARTY GIER
   ========================================================= */
.games { position: relative; padding: 72px 0 72px; overflow: hidden; scroll-margin-top: calc(var(--promo-h) + var(--top-h) + 20px); }
.games::before { content: ''; position: absolute; left: 1%; top: 8%; width: min(620px, 46%); aspect-ratio: 1; height: auto; border-radius: 50%; background: radial-gradient(closest-side, rgba(47, 123, 255, 0.14), transparent 72%); filter: blur(40px); pointer-events: none; }
.games::after { content: ''; position: absolute; right: 1%; top: 4%; width: min(660px, 48%); aspect-ratio: 1; height: auto; border-radius: 50%; background: radial-gradient(closest-side, rgba(124, 58, 237, 0.14), transparent 72%); filter: blur(40px); pointer-events: none; }
.games-in { position: relative; z-index: 1; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.games-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 16px; }
.games-head-text { display: flex; flex-direction: column; gap: 6px; }
.games-kicker { font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--sky); }
.games-title { font-family: var(--font-head); font-weight: 600; font-size: 26px; line-height: 1; letter-spacing: -0.03em; color: #fff; }
.games-sub { font-size: 14px; color: var(--text-2); }
.games-all { margin-left: 0; }

/* Bento: Minecraft 5/12 · Gamehost+ 4/12 · Hytale i FiveM 3/12 */
.bento { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); grid-template-rows: repeat(2, 166px); gap: 12px; }
.gbig, .gmid { position: relative; display: block; border-radius: 20px; overflow: hidden; border: 1px solid rgba(148, 178, 255, 0.2); background: var(--card); transition: transform 0.35s var(--ease), border-color 0.25s ease, box-shadow 0.35s ease; }
.gbig:hover, .gmid:hover { transform: translateY(-4px); border-color: rgba(94, 200, 255, 0.5); box-shadow: 0 24px 50px -30px rgba(47, 123, 255, 0.7); }
.gbig--mc { grid-column: 1 / 6; grid-row: 1 / 3; }
.gbig--plus { grid-column: 6 / 10; grid-row: 1 / 3; }
.gmid--hy { grid-column: 10 / 13; grid-row: 1 / 2; }
.gmid--fm { grid-column: 10 / 13; grid-row: 2 / 3; }
.gbig-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 25%; transition: transform 0.7s var(--ease); }
.gmid--hy .gbig-img { object-position: 50% 45%; }
.gmid--fm .gbig-img { object-position: center; }
.gbig:hover .gbig-img, .gmid:hover .gbig-img { transform: scale(1.04); }
.gbig--mc::after, .gmid::after { content: ''; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(180deg, rgba(6, 9, 18, 0.05) 35%, rgba(6, 9, 18, 0.94) 100%); }
.gbig--mc::after { background: linear-gradient(180deg, rgba(6, 9, 18, 0) 30%, rgba(6, 9, 18, 0.55) 60%, rgba(6, 9, 18, 0.96) 100%); }
.gbig-body { position: absolute; left: 20px; right: 20px; bottom: 18px; z-index: 2; display: flex; flex-direction: column; gap: 10px; }
.gchips { display: flex; flex-wrap: wrap; gap: 6px; }
.gchips i { padding: 4px 9px; border-radius: 999px; background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.16); color: #d5deee; font-size: 11px; font-weight: 700; font-style: normal; }
.gbig-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 14px; }
.gbig-text { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.gbig-name { font-family: var(--font-head); font-weight: 600; font-size: 23px; line-height: 1; color: #fff; }
.gbig-desc { font-size: 12.5px; color: #b7c3d8; max-width: 300px; }
.gbig-cta { padding: 10px 14px; border-radius: 10px; font-size: 13px; flex-shrink: 0; }
.gbig-cta svg { flex-shrink: 0; }
.gmid-body { position: absolute; left: 16px; right: 16px; bottom: 14px; z-index: 2; display: flex; align-items: flex-end; justify-content: space-between; gap: 10px; }
.gmid-body > span:first-child { display: flex; flex-direction: column; gap: 3px; }
.gmid-name { font-family: var(--font-head); font-weight: 600; font-size: 16.5px; line-height: 1; color: #fff; }
.gmid-arrow { width: 34px; height: 34px; padding: 0; border-radius: 10px; }
.gmid:hover .gmid-arrow svg { transform: translateX(3px); }

/* Gamehost+ */
.gbig--plus { display: flex; flex-direction: column; padding: 14px 16px 16px; border-color: rgba(167, 139, 250, 0.55); background: radial-gradient(90% 100% at 100% 0%, rgba(99, 60, 255, 0.5), transparent 60%), radial-gradient(80% 90% at 0% 100%, rgba(47, 123, 255, 0.35), transparent 60%), #0d1230; box-shadow: 0 0 0 1px rgba(124, 58, 237, 0.25), 0 0 40px -6px rgba(124, 58, 237, 0.55), 0 1px 0 rgba(255, 255, 255, 0.14) inset; animation: plusGlow 3.2s ease-in-out infinite; }
.gbig--plus:hover { border-color: rgba(196, 181, 253, 0.8); box-shadow: 0 0 0 1px rgba(124, 58, 237, 0.4), 0 0 50px -4px rgba(139, 92, 246, 0.75), 0 24px 50px -30px rgba(124, 58, 237, 0.8), 0 1px 0 rgba(255, 255, 255, 0.18) inset; animation: none; }
.gbig--plus::after { content: ''; position: absolute; inset: 0; pointer-events: none; background: repeating-linear-gradient(0deg, rgba(180, 160, 255, 0.07) 0 1px, transparent 1px 22px), repeating-linear-gradient(90deg, rgba(180, 160, 255, 0.07) 0 1px, transparent 1px 22px); -webkit-mask-image: radial-gradient(80% 100% at 100% 50%, #000, transparent); mask-image: radial-gradient(80% 100% at 100% 50%, #000, transparent); }
.gbig--plus .dtile-plus-ring { opacity: 0.85; animation: plusRing 6s linear infinite; border-radius: 21px; }
.gbig--plus .dtile-badge--plus { opacity: 1; }
.gplus-glyph { position: absolute; right: 10px; bottom: -40px; font-family: var(--font-head); font-weight: 600; font-size: 172px; line-height: 1; color: transparent; -webkit-text-stroke: 1px rgba(196, 181, 253, 0.22); pointer-events: none; transition: transform 0.6s var(--ease); }
.gbig--plus:hover .gplus-glyph { transform: rotate(8deg); }
.gplus-logo { position: relative; z-index: 2; height: 24px; width: auto; align-self: flex-start; }
.gplus-text { position: relative; z-index: 2; display: flex; flex-direction: column; gap: 4px; margin-top: 10px; }
.gplus-name { font-size: 22px; line-height: 1.02; letter-spacing: -0.02em; }
.gplus-desc { font-size: 12.5px; line-height: 1.4; color: #c4b5fd; max-width: 300px; }
.gplus-strip { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 6px; margin-top: 12px; }
.gplus-strip img, .gplus-strip i { width: 100%; aspect-ratio: 1; border-radius: 9px; object-fit: cover; border: 1px solid rgba(196, 181, 253, 0.25); }
.gplus-strip i { display: grid; place-items: center; border-style: dashed; border-color: rgba(196, 181, 253, 0.4); color: #c4b5fd; font-style: normal; font-size: 12px; font-weight: 800; }
.gplus-foot { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: auto; padding-top: 12px; }
.gplus-price { font-size: 12.5px; color: #b7c3d8; }
.gplus-price b { color: #fff; }
.btn-plus { display: inline-flex; align-items: center; gap: 8px; padding: 9px 14px; border-radius: 12px; font-size: 13px; font-weight: 700; color: #1e0b3d; white-space: nowrap; background: linear-gradient(135deg, #faf7ff 0%, #e4dcff 55%, #c4b5fd 100%); border: 1px solid rgba(255, 255, 255, 0.5); box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset, 0 8px 24px -10px rgba(196, 181, 253, 0.9); transition: transform 0.35s var(--ease), filter 0.25s ease, box-shadow 0.35s ease; }
.btn-plus svg { transition: transform 0.3s var(--ease); }
.btn-plus:hover { color: #1e0b3d; transform: translateY(-1px); filter: brightness(1.05); box-shadow: 0 1px 0 #ffffff inset, 0 0 0 4px rgba(196, 181, 253, 0.22), 0 12px 30px -10px rgba(196, 181, 253, 1); }
.gbig--plus:hover .btn-plus { filter: brightness(1.12); }
.gbig--plus:hover .btn-plus svg { transform: translateX(3px); }

/* Rząd mniejszych gier */
.gtiles { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 12px; margin-top: 12px; }
.gtile { position: relative; display: block; height: 118px; border-radius: 14px; overflow: hidden; border: 1px solid rgba(148, 178, 255, 0.2); background: var(--card); transition: transform 0.35s var(--ease), border-color 0.25s ease, box-shadow 0.35s ease; }
.gtile:hover { transform: translateY(-3px); border-color: rgba(94, 200, 255, 0.5); box-shadow: 0 20px 40px -24px rgba(47, 123, 255, 0.7); }
.gtile-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.gtile:hover .gtile-img { transform: scale(1.05); }
.gtile::after { content: ''; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(180deg, rgba(6, 9, 18, 0.1) 30%, rgba(6, 9, 18, 0.94) 100%); }
.gtile-body { position: absolute; left: 12px; right: 12px; bottom: 11px; z-index: 2; display: flex; flex-direction: column; gap: 3px; }
.gtile-name { font-family: var(--font-head); font-weight: 600; font-size: 13px; line-height: 1.05; color: #fff; }
.gtile-price { font-size: 12px; color: #b7c3d8; white-space: nowrap; }
.gtile-price b { color: var(--sky); }

/* Poza grami */
/* oferta: porzadek */
.gbig-cta small { font-size: 11px; font-weight: 600; opacity: 0.7; }
/* Gamehost+: dwurzędowa karuzela gier */
.gpc { position: relative; z-index: 2; display: flex; flex-direction: column; gap: 6px; margin: 12px -16px 0; -webkit-mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent); mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent); }
.gpc-row { overflow: hidden; }
.gpc-track { display: flex; width: max-content; animation: gpcLewo 58s linear infinite; }
.gpc-row--b .gpc-track { animation-name: gpcPrawo; animation-duration: 64s; }
.gpc-set { display: flex; gap: 6px; padding-right: 6px; }
.gpc-item { position: relative; display: block; width: 93px; height: 52px; flex-shrink: 0; border-radius: 10px; overflow: hidden; border: 1px solid rgba(196, 181, 253, 0.22); background: #140f2e; }
.gpc-item img { width: 100%; height: 100%; object-fit: cover; }
@keyframes gpcLewo { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes gpcPrawo { from { transform: translateX(-50%); } to { transform: translateX(0); } }
@media (prefers-reduced-motion: reduce) { .gpc-track { animation: none; } }
.gsvcs { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-top: 14px; padding-top: 12px; border-top: 1px solid rgba(148, 178, 255, 0.12); }
.gsvcs-label { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-3); margin-right: 6px; white-space: nowrap; }
.gsvc { display: flex; align-items: center; gap: 10px; padding: 7px 14px 7px 8px; border-radius: 12px; background: rgba(148, 178, 255, 0.05); border: 1px solid rgba(148, 178, 255, 0.12); transition: background 0.2s ease, border-color 0.2s ease, transform 0.3s var(--ease); }
.gsvc:hover { background: rgba(148, 178, 255, 0.1); border-color: rgba(94, 200, 255, 0.4); transform: translateY(-2px); }
.gsvc-ico { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 9px; background: rgba(94, 200, 255, 0.12); color: var(--sky); }
.gsvc-ico img { width: 17px; height: 17px; }
.gsvc > span:last-child { display: flex; flex-direction: column; line-height: 1.2; }
.gsvc b { font-size: 13px; font-weight: 700; color: #fff; white-space: nowrap; }
.gsvc small { font-size: 11px; color: #8b98b2; white-space: nowrap; }
.gsvc i { font-style: normal; color: var(--sky); font-weight: 700; }

/* =========================================================
   O NAS
   ========================================================= */
.about { position: relative; padding: 72px 0 72px; overflow: hidden; scroll-margin-top: calc(var(--promo-h) + var(--top-h) + 20px); }
.about::before { content: ''; position: absolute; right: 1%; top: 3%; width: min(680px, 48%); aspect-ratio: 1; height: auto; border-radius: 50%; background: radial-gradient(closest-side, rgba(47, 123, 255, 0.16), transparent 72%); filter: blur(40px); pointer-events: none; }
.about::after { content: ''; position: absolute; left: 1%; bottom: 4%; width: min(620px, 46%); aspect-ratio: 1; height: auto; border-radius: 50%; background: radial-gradient(closest-side, rgba(14, 116, 144, 0.16), transparent 72%); filter: blur(40px); pointer-events: none; }
.about-in { position: relative; z-index: 1; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 560px); gap: 48px; align-items: center; }
.about-text { display: flex; flex-direction: column; align-items: flex-start; gap: 18px; }
.about-title { font-family: var(--font-head); font-weight: 600; font-size: clamp(1.8rem, 2.79vw, 2.54rem); line-height: 1.06; letter-spacing: -0.03em; color: #fff; }
.about-title .hl { background: linear-gradient(120deg, #bfe6ff 0%, #5ec8ff 45%, #2f7bff 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.about-lead { font-size: 15.5px; line-height: 1.6; color: var(--text-2); max-width: 560px; }
.acta {
    position: relative; display: flex; align-items: center; gap: 14px; width: 100%; margin-top: 6px; padding: 14px 14px 14px 16px; border-radius: 18px; overflow: hidden;
    background: linear-gradient(160deg, rgba(34, 40, 88, 0.8), rgba(9, 13, 24, 0.94));
    border: 1px solid rgba(180, 200, 240, 0.16);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08) inset, 0 20px 40px -30px rgba(0, 0, 0, 0.9);
    transition: transform 0.35s var(--ease), border-color 0.3s ease, box-shadow 0.35s ease;
}
.acta::before { content: ''; position: absolute; inset: 0; background-image: var(--grain); background-size: 160px 160px; opacity: 0.07; mix-blend-mode: overlay; pointer-events: none; }
.acta::after { content: ''; position: absolute; left: -40px; top: -60px; width: 220px; height: 220px; border-radius: 50%; background: radial-gradient(closest-side, rgba(88, 101, 242, 0.45), transparent 72%); filter: blur(16px); pointer-events: none; transition: opacity 0.4s ease, transform 0.6s var(--ease); }
.acta:hover { transform: translateY(-3px); border-color: rgba(140, 150, 255, 0.5); box-shadow: 0 1px 0 rgba(255, 255, 255, 0.12) inset, 0 26px 50px -30px rgba(88, 101, 242, 0.8); }
.acta:hover::after { transform: scale(1.15); }
.acta-ico { position: relative; z-index: 1; display: grid; place-items: center; width: 46px; height: 46px; flex-shrink: 0; border-radius: 14px; background: radial-gradient(120% 150% at 50% 130%, rgba(88, 101, 242, 0.75), rgba(23, 26, 66, 0.95) 65%); border: 1px solid rgba(140, 150, 255, 0.5); box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2) inset, 0 0 22px rgba(88, 101, 242, 0.45); }
.acta-ico img { width: 22px; height: 22px; }
.acta-text { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.acta-text b { font-family: var(--font-head); font-weight: 600; font-size: 13.5px; color: #fff; }
.acta-text small { font-size: 12.5px; color: var(--text-2); }
.acta-btn { position: relative; z-index: 1; margin-left: auto; flex-shrink: 0; padding: 11px 18px; }
.acta:hover .acta-btn { filter: brightness(1.12); }
.acta:hover .acta-btn svg { transform: translateX(3px); }

/* Karty wartości: ziarno + świecąca krawędź */
.aboxes { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; width: 100%; margin-top: 4px; }
.abox {
    position: relative; display: flex; flex-direction: column; gap: 10px; padding: 20px; border-radius: 18px; overflow: hidden;
    background: linear-gradient(160deg, rgba(30, 44, 78, 0.75), rgba(9, 13, 24, 0.92));
    border: 1px solid rgba(180, 200, 240, 0.16);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08) inset, 0 20px 40px -30px rgba(0, 0, 0, 0.9);
    transition: transform 0.35s var(--ease), border-color 0.3s ease, box-shadow 0.35s ease;
}
/* ziarno */
.abox::before { content: ''; position: absolute; inset: 0; background-image: var(--grain); background-size: 160px 160px; opacity: 0.07; mix-blend-mode: overlay; pointer-events: none; }
/* poświata w rogu */
.abox::after { content: ''; position: absolute; right: -60px; top: -70px; width: 200px; height: 200px; border-radius: 50%; background: radial-gradient(closest-side, rgba(47, 123, 255, 0.32), transparent 72%); filter: blur(14px); opacity: 0.7; pointer-events: none; transition: opacity 0.4s ease, transform 0.6s var(--ease); }
.abox:hover { transform: translateY(-3px); border-color: rgba(94, 200, 255, 0.45); box-shadow: 0 1px 0 rgba(255, 255, 255, 0.12) inset, 0 26px 50px -30px rgba(47, 123, 255, 0.75); }
.abox:hover::after { opacity: 1; transform: scale(1.15); }
.abox-ico { position: relative; z-index: 1; display: grid; place-items: center; width: 44px; height: 44px; border-radius: 13px; color: #eaf4ff; background: radial-gradient(120% 150% at 50% 130%, rgba(47, 123, 255, 0.6), rgba(12, 28, 68, 0.9) 65%); border: 1px solid rgba(94, 200, 255, 0.45); box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2) inset, 0 0 20px rgba(47, 123, 255, 0.3); }
.abox-title { position: relative; z-index: 1; font-family: var(--font-head); font-weight: 600; font-size: 15.5px; line-height: 1; color: #fff; }
.abox-desc { position: relative; z-index: 1; font-size: 13.5px; line-height: 1.5; color: var(--text-2); }

/* Karta z mapą */
.about-map { position: relative; display: flex; flex-direction: column; border-radius: 24px; overflow: hidden; background: #0a1020; border: 1px solid rgba(180, 200, 240, 0.22); box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1) inset, 0 40px 100px -40px rgba(0, 0, 0, 0.9), 0 0 80px -34px rgba(47, 123, 255, 0.45); }
.about-map::before { content: ''; position: absolute; inset: 0; z-index: 3; background-image: var(--grain); background-size: 160px 160px; opacity: 0.06; mix-blend-mode: overlay; pointer-events: none; }
.amap-head { position: relative; z-index: 4; display: flex; align-items: flex-start; gap: 12px; padding: 18px 20px 0; }
.amap-head-text { display: flex; flex-direction: column; gap: 2px; }
.amap-head-text b { font-family: var(--font-head); font-weight: 600; font-size: 13px; color: #fff; }
.amap-head-text small { font-size: 12px; color: var(--text-2); }

.amap-stage { position: relative; width: 100%; aspect-ratio: 752 / 632; margin-top: -26px; }
.amap-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; opacity: 0.9; }
.amap-stage::after { content: ''; position: absolute; inset: 0; background: radial-gradient(65% 55% at 62% 60%, rgba(47, 123, 255, 0.2), transparent 70%), linear-gradient(180deg, rgba(10, 16, 32, 0.85) 0%, transparent 22%, transparent 72%, rgba(10, 16, 32, 0.96) 100%); pointer-events: none; }
.amap-link { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.amap-dot { position: absolute; z-index: 2; }
.amap-dot--fk { left: 53%; top: 70%; }
.amap-dot--wa { left: 73.5%; top: 61%; }
.amap-dot i { position: absolute; left: 50%; top: 50%; width: 12px; height: 12px; transform: translate(-50%, -50%); border-radius: 50%; background: var(--sky); box-shadow: 0 0 14px var(--sky), 0 0 0 3px rgba(6, 9, 18, 0.9); }
.amap-dot i::before { content: ''; position: absolute; left: 50%; top: 50%; width: 44px; height: 44px; transform: translate(-50%, -50%); border-radius: 50%; background: rgba(94, 200, 255, 0.16); animation: ping 3s ease-out infinite; }
@keyframes ping { 0% { transform: translate(-50%, -50%) scale(0.6); opacity: 0.9; } 70% { transform: translate(-50%, -50%) scale(1.25); opacity: 0; } 100% { opacity: 0; } }
.amap-dot--wa i { width: 14px; height: 14px; box-shadow: 0 0 18px var(--sky), 0 0 0 3px rgba(6, 9, 18, 0.9); }
.amap-label { position: absolute; left: 50%; top: 26px; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; line-height: 1.2; padding: 6px 10px; border-radius: 10px; background: rgba(9, 15, 28, 0.88); border: 1px solid rgba(148, 178, 255, 0.2); font-size: 13px; font-weight: 700; color: #fff; white-space: nowrap; }
.amap-label small { font-size: 11px; font-weight: 500; color: var(--text-2); }
.amap-label--hq { top: auto; bottom: 22px; background: radial-gradient(120% 150% at 50% 130%, rgba(47, 123, 255, 0.6), rgba(12, 28, 68, 0.95) 65%); border-color: rgba(94, 200, 255, 0.5); box-shadow: 0 0 18px rgba(47, 123, 255, 0.35); }
.amap-label--hq small { color: #cfe6ff; }


/* =========================================================
   PANEL
   ========================================================= */
.panel { position: relative; padding: 72px 0 72px; overflow: hidden; scroll-margin-top: calc(var(--promo-h) + var(--top-h) + 20px); }
.panel::before { content: ''; position: absolute; right: 2%; top: 6%; width: min(700px, 48%); aspect-ratio: 1; border-radius: 50%; background: radial-gradient(closest-side, rgba(47, 123, 255, 0.16), transparent 72%); filter: blur(40px); pointer-events: none; }
.panel::after { content: ''; position: absolute; left: 1%; bottom: 4%; width: min(560px, 42%); aspect-ratio: 1; border-radius: 50%; background: radial-gradient(closest-side, rgba(14, 116, 144, 0.14), transparent 72%); filter: blur(40px); pointer-events: none; }
.panel-in { position: relative; z-index: 1; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: minmax(0, 420px) minmax(0, 1fr); gap: 48px; align-items: center; }
.panel-side { display: flex; flex-direction: column; gap: 22px; }
.panel-head { display: flex; flex-direction: column; gap: 8px; }
.panel-title { font-family: var(--font-head); font-weight: 600; font-size: clamp(1.64rem, 2.38vw, 2.05rem); line-height: 1.02; letter-spacing: -0.03em; color: #fff; }
.panel-lead { font-size: 15px; line-height: 1.6; color: var(--text-2); }

/* Zakładki */
.ptabs { display: flex; flex-direction: column; gap: 6px; }
.ptab { position: relative; display: flex; align-items: center; gap: 12px; width: 100%; padding: 11px 14px; border-radius: 13px; border: 1px solid rgba(148, 178, 255, 0.1); overflow: hidden; text-align: left; transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.35s ease, transform 0.3s var(--ease); }
.ptab:hover { border-color: rgba(94, 200, 255, 0.3); background: rgba(148, 178, 255, 0.05); transform: translateX(3px); }
.ptab:focus-visible { outline: 2px solid var(--sky); outline-offset: 2px; }
.ptab-ico { display: grid; place-items: center; width: 30px; height: 30px; flex-shrink: 0; border-radius: 9px; background: rgba(94, 200, 255, 0.1); color: var(--sky); transition: background 0.3s ease, color 0.3s ease; }
.ptab-name { font-size: 14.5px; font-weight: 600; color: #d5deee; transition: color 0.3s ease, font-weight 0.2s ease; }
.ptab-no { margin-left: auto; font-family: "JetBrains Mono", ui-monospace, Consolas, monospace; font-weight: 700; font-size: 11px; color: rgba(94, 200, 255, 0.5); transition: color 0.3s ease; }
.ptab-bar { position: absolute; left: 12px; right: 12px; bottom: 4px; height: 2px; border-radius: 2px; background: linear-gradient(90deg, #5ec8ff, #2f7bff); transform: scaleX(0); transform-origin: left; opacity: 0; }
.ptab.is-on { background: radial-gradient(120% 150% at 50% 130%, rgba(47, 123, 255, 0.5), rgba(12, 28, 68, 0.9) 65%); border-color: rgba(94, 200, 255, 0.45); box-shadow: 0 0 22px -6px rgba(47, 123, 255, 0.6); transform: none; }
.ptab.is-on .ptab-ico { background: rgba(255, 255, 255, 0.1); color: #eaf4ff; }
.ptab.is-on .ptab-name { color: #fff; font-weight: 700; }
.ptab.is-on .ptab-no { color: #bfe6ff; }
.ptab.is-on .ptab-bar { opacity: 1; animation: ptabBar var(--dur, 6000ms) linear forwards; }
.ptabs.is-paused .ptab-bar { animation-play-state: paused; }
@keyframes ptabBar { from { transform: scaleX(0); } to { transform: scaleX(1); } }

/* Okno z panelem */
.panel-stage { perspective: 1400px; }
.pwin { position: relative; border-radius: 18px; overflow: hidden; background: #0a1020; border: 1px solid rgba(180, 200, 240, 0.22); box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1) inset, 0 50px 110px -40px rgba(0, 0, 0, 0.95), 0 0 90px -30px rgba(47, 123, 255, 0.5); transition: transform 0.5s var(--ease); transform-style: preserve-3d; }
.pwin-bar { display: flex; align-items: center; gap: 10px; padding: 11px 14px; background: rgba(148, 178, 255, 0.05); border-bottom: 1px solid rgba(148, 178, 255, 0.1); }
.pwin-dots { display: flex; gap: 6px; }
.pwin-dots i { width: 9px; height: 9px; border-radius: 50%; background: rgba(148, 178, 255, 0.25); }
.pwin-dots i:first-child { background: rgba(248, 113, 113, 0.55); }
.pwin-dots i:nth-child(2) { background: rgba(250, 204, 21, 0.5); }
.pwin-dots i:last-child { background: rgba(52, 211, 153, 0.55); }
.pwin-url { flex: 1; text-align: center; padding: 4px 14px; border-radius: 7px; background: rgba(6, 9, 18, 0.75); border: 1px solid rgba(148, 178, 255, 0.12); font-family: "JetBrains Mono", ui-monospace, Consolas, monospace; font-size: 11px; color: var(--text-3); max-width: 260px; margin: 0 auto; }
.pwin-shot { position: relative; aspect-ratio: 1200 / 596; background: #060912; }
.pshot { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top left; opacity: 0; transform: scale(1.015); transition: opacity 0.5s ease, transform 0.7s var(--ease); }
.pshot.is-on { opacity: 1; transform: none; }

@media (max-width: 1024px) {
    .panel-in { grid-template-columns: minmax(0, 1fr); gap: 28px; }
    .panel-side { max-width: 620px; }
    .ptabs { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 720px) {
    .panel { padding: 10px 0 50px; }
    .panel-in { padding-left: 18px; padding-right: 18px; }
    .ptabs { grid-template-columns: 1fr; }
}


/* =========================================================
   RESPONSYWNOŚĆ
   ========================================================= */
@media (max-width: 1240px) {
    .menu { gap: 2px; }
    .dpill:nth-child(n+4) { display: none; }
    .drop-all-text small { display: none; }
    .menu-link { padding: 10px 9px; font-size: 14px; }
    .hero-in { grid-template-columns: minmax(0, 560px) minmax(0, 1fr); gap: 24px; }
    .hero-art { height: 560px; }
    .bento { grid-template-rows: repeat(2, 150px); }
    .gbig--mc { grid-column: 1 / 7; }
    .gbig--plus { grid-column: 7 / 13; }
    .gmid--hy { grid-column: 1 / 7; grid-row: 3 / 4; }
    .gmid--fm { grid-column: 7 / 13; grid-row: 3 / 4; }
    .bento { grid-template-rows: repeat(3, 150px); }
    .gtiles { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .about-in { grid-template-columns: minmax(0, 1fr); gap: 32px; }
    .about-map { max-width: 620px; width: 100%; }
}
@media (max-width: 1100px) {
    .menu, .top-reg, .top-right .lang-switch { display: none; }
    .burger { display: flex; }
}
@media (max-width: 1024px) {
    .hero-in { grid-template-columns: minmax(0, 1fr); min-height: 0; padding-top: 24px; }
    .hero-copy { min-width: 0; max-width: 100%; }
    .tabs { display: flex; width: 100%; max-width: 100%; overflow-x: auto; scrollbar-width: none; border-radius: 22px; }
    .tabs::-webkit-scrollbar { display: none; }
    .tab, .tabs-all { flex-shrink: 0; }
    .hero-art { order: -1; height: 320px; }
    .render { height: 100%; }
    .scene-photo { left: 0; width: 100%; }
    .scene-floor { left: 0; width: 100%; }
    .hero-frame { display: none; }
}
@media (max-width: 720px) {
    :root { --promo-h: 36px; --top-h: 68px; }
    .promo { font-size: 10.5px; gap: 8px; }
    .top-in, .hero-in, .games-in, .placeholder { padding-left: 18px; padding-right: 18px; }
    .brand img { height: 28px; }
    .top-right { gap: 8px; }
    .top-right .btn-blue { padding: 9px 14px; font-size: 13px; }
    .hero-art { height: 260px; }
    .hero-h1 { font-size: clamp(1.56rem, 7.38vw, 2.46rem); }
    .hero-sub { font-size: 16px; }
    .search { flex-wrap: wrap; padding: 6px; }
    .search-field { flex-basis: 100%; }
    .search-kbd { display: none; }
    .search-btn { width: 100%; padding: 14px; }
    .stats { grid-template-columns: 1fr; gap: 14px; }
    .stat + .stat { padding-left: 0; padding-top: 14px; border-left: 0; border-top: 1px solid var(--line); }
    .lang-switch-m .lang-grid { grid-template-columns: 1fr; }
    .games { padding-top: 40px; }
    .games-head { flex-direction: column; align-items: flex-start; }
    .bento { grid-template-columns: 1fr; grid-template-rows: none; }
    .gbig--mc, .gbig--plus, .gmid--hy, .gmid--fm { grid-column: auto; grid-row: auto; }
    .gbig--mc { min-height: 300px; }
    .gbig--plus { min-height: 0; }
    .gmid { height: 150px; }
    .gbig-row { flex-direction: column; align-items: flex-start; }
    .gtiles { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .gsvcs-label { width: 100%; }
    .about { padding: 20px 0 50px; }
    .about-in { padding-left: 18px; padding-right: 18px; }
    .aboxes { grid-template-columns: 1fr; }
    .acta { flex-wrap: wrap; }
    .acta-btn { margin-left: 0; width: 100%; }
    .amap-label { font-size: 12px; padding: 5px 8px; }
}

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

/* Gamehost+: wyróżnienie w menu (świecąca obwódka + plakietka) */
@property --plus-angle { syntax: '<angle>'; inherits: false; initial-value: 0deg; }
.dtile--plus { border-color: rgba(167, 139, 250, 0.55); box-shadow: 0 0 0 1px rgba(124, 58, 237, 0.25), 0 0 30px -4px rgba(124, 58, 237, 0.55), 0 1px 0 rgba(255, 255, 255, 0.14) inset; animation: plusGlow 3.2s ease-in-out infinite; }
.dtile--plus:hover { border-color: rgba(196, 181, 253, 0.8); box-shadow: 0 0 0 1px rgba(124, 58, 237, 0.4), 0 0 44px -4px rgba(139, 92, 246, 0.75), 0 20px 40px -24px rgba(124, 58, 237, 0.8), 0 1px 0 rgba(255, 255, 255, 0.18) inset; animation: none; }
@keyframes plusGlow { 0%, 100% { box-shadow: 0 0 0 1px rgba(124, 58, 237, 0.25), 0 0 26px -4px rgba(124, 58, 237, 0.45), 0 1px 0 rgba(255, 255, 255, 0.14) inset; } 50% { box-shadow: 0 0 0 1px rgba(124, 58, 237, 0.35), 0 0 40px -4px rgba(139, 92, 246, 0.7), 0 1px 0 rgba(255, 255, 255, 0.14) inset; } }
.dtile-plus-ring { position: absolute; inset: -1px; border-radius: 17px; padding: 1.5px; z-index: 3; pointer-events: none;
    background: conic-gradient(from var(--plus-angle), #a78bfa, #5ec8ff, #7c3aed, #38bdf8, #a78bfa);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); mask-composite: exclude;
    opacity: 0.85; animation: plusRing 6s linear infinite; }
@keyframes plusRing { to { --plus-angle: 360deg; } }
.dtile-badge--plus { left: auto; right: 12px; background: linear-gradient(135deg, #8b5cf6, #6d28d9); color: #fff; box-shadow: 0 0 18px rgba(139, 92, 246, 0.7); z-index: 4; }

/* Wejście menu Oferta: kafelki i pastylki pojawiają się kaskadowo, poświata Gamehost+ narasta */
@keyframes tileIn { from { opacity: 0; translate: 0 10px; } to { opacity: 1; translate: 0 0; } }
.drop .dtile, .drop .dpill, .drop .drop-all { opacity: 0; }
.has-drop.is-open .dtile, .has-drop.is-open .dpill, .has-drop.is-open .drop-all { animation: tileIn 0.5s var(--ease) both; animation-delay: calc(var(--i, 0) * 45ms + 60ms); }
.dtile:nth-child(1) { --i: 0; } .dtile:nth-child(2) { --i: 1; } .dtile:nth-child(3) { --i: 2; } .dtile:nth-child(4) { --i: 3; } .dtile:nth-child(5) { --i: 4; } .dtile:nth-child(6) { --i: 5; } .dtile:nth-child(7) { --i: 6; }
.dpill:nth-child(1) { --i: 6; } .dpill:nth-child(2) { --i: 7; } .dpill:nth-child(3) { --i: 8; } .dpill:nth-child(4) { --i: 9; } .dpill:nth-child(5) { --i: 10; } .drop-all { --i: 10; }

@keyframes plusIn { from { box-shadow: 0 0 0 1px rgba(124, 58, 237, 0), 0 0 0 -4px rgba(124, 58, 237, 0), 0 1px 0 rgba(255, 255, 255, 0) inset; } to { box-shadow: 0 0 0 1px rgba(124, 58, 237, 0.25), 0 0 26px -4px rgba(124, 58, 237, 0.45), 0 1px 0 rgba(255, 255, 255, 0.14) inset; } }
@keyframes ringIn { from { opacity: 0; } to { opacity: 0.85; } }
.has-drop.is-open .dtile--plus { animation: tileIn 0.5s var(--ease) both, plusIn 1.1s ease both, plusGlow 3.2s ease-in-out infinite; animation-delay: calc(var(--i, 0) * 45ms + 60ms), 0.45s, 1.5s; }
.has-drop.is-open .dtile--plus:hover { animation: tileIn 0.5s var(--ease) both; }
.dtile-plus-ring { opacity: 0; }
.has-drop.is-open .dtile-plus-ring { animation: ringIn 1s ease both, plusRing 6s linear infinite; animation-delay: 0.6s, 0s; }
.has-drop.is-open .dtile-badge--plus { animation: tileIn 0.5s var(--ease) 0.9s both; }
.dtile-badge--plus { opacity: 0; }

/* =========================================================
   STOPKA
   ========================================================= */
.foot { position: relative; margin-top: 20px; padding: 44px 0 0; overflow: hidden; background: linear-gradient(180deg, transparent, rgba(10, 16, 32, 0.6) 40%, rgba(10, 16, 32, 0.9)); border-top: 1px solid var(--line); }
.foot::before { content: ''; position: absolute; left: 50%; top: -160px; width: 900px; height: 420px; transform: translateX(-50%); border-radius: 50%; background: radial-gradient(closest-side, rgba(47, 123, 255, 0.16), transparent 72%); filter: blur(40px); pointer-events: none; }
.foot::after { content: ''; position: absolute; inset: 0; background-image: var(--grain); background-size: 160px 160px; opacity: 0.05; mix-blend-mode: overlay; pointer-events: none; }
.foot-in { position: relative; z-index: 2; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }

.foot-top { display: grid; grid-template-columns: minmax(0, 1.7fr) repeat(3, minmax(0, 1fr)); gap: 32px; }
.foot-brand { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; max-width: 400px; }
.foot-logo img { height: 32px; width: auto; }
.foot-lead { font-size: 14px; line-height: 1.6; color: var(--text-2); }
.foot-dc { position: relative; display: flex; align-items: center; gap: 12px; padding: 10px 14px 10px 10px; border-radius: 14px; overflow: hidden; background: linear-gradient(160deg, rgba(34, 40, 88, 0.7), rgba(9, 13, 24, 0.92)); border: 1px solid rgba(180, 200, 240, 0.16); transition: transform 0.35s var(--ease), border-color 0.3s ease; }
.foot-dc::after { content: ''; position: absolute; left: -30px; top: -50px; width: 160px; height: 160px; border-radius: 50%; background: radial-gradient(closest-side, rgba(88, 101, 242, 0.4), transparent 72%); filter: blur(14px); pointer-events: none; }
.foot-dc:hover { transform: translateY(-2px); border-color: rgba(140, 150, 255, 0.5); }
.foot-dc-ico { position: relative; z-index: 1; display: grid; place-items: center; width: 38px; height: 38px; border-radius: 11px; background: radial-gradient(120% 150% at 50% 130%, rgba(88, 101, 242, 0.75), rgba(23, 26, 66, 0.95) 65%); border: 1px solid rgba(140, 150, 255, 0.5); }
.foot-dc-text { position: relative; z-index: 1; display: flex; flex-direction: column; line-height: 1.25; }
.foot-dc-text b { font-size: 13.5px; font-weight: 700; color: #fff; }
.foot-dc-text small { font-size: 11.5px; color: var(--text-2); }
.foot-dc svg { position: relative; z-index: 1; color: var(--text-3); transition: transform 0.3s var(--ease), color 0.3s ease; }
.foot-dc:hover svg { transform: translateX(3px); color: var(--sky); }

.foot-col { display: flex; flex-direction: column; gap: 12px; }
.foot-h { font-family: var(--font-head); font-weight: 600; font-size: 11.5px; letter-spacing: 0.08em; text-transform: uppercase; color: #fff; }
.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.foot-col a { position: relative; display: inline-block; font-size: 13.5px; color: var(--text-2); transition: color 0.25s ease, transform 0.3s var(--ease); }
.foot-col a::before { content: ''; position: absolute; left: -12px; top: 50%; width: 5px; height: 1px; background: var(--sky); transform: translateY(-50%) scaleX(0); transform-origin: right; transition: transform 0.3s var(--ease); }
.foot-col a:hover { color: #fff; transform: translateX(6px); }
.foot-col a:hover::before { transform: translateY(-50%) scaleX(1); transform-origin: left; }

/* Panel firmowy */
.foot-co { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px; margin-top: 40px; padding: 18px 20px; border-radius: 18px; background: linear-gradient(160deg, rgba(24, 34, 60, 0.6), rgba(9, 13, 24, 0.88)); border: 1px solid rgba(180, 200, 240, 0.14); box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06) inset; }
.fco-main { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 24px; }
.fco-name { font-family: var(--font-head); font-weight: 600; font-size: 13px; color: #fff; }
.fco-rows { display: flex; flex-wrap: wrap; gap: 10px 22px; }
.fco-row { display: flex; flex-direction: column; line-height: 1.3; }
.fco-row small { font-size: 10.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-3); }
.fco-row b { font-size: 13.5px; font-weight: 600; color: #d5deee; font-variant-numeric: tabular-nums; }
.fco-mail b { color: var(--sky); transition: color 0.25s ease; }
.fco-mail:hover b { color: #8fd8ff; }
.fco-pay { display: flex; align-items: center; gap: 12px; }
.fco-pay-label { font-size: 10.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-3); }
.fco-pay-logos { display: flex; align-items: center; gap: 8px; }
.fco-pay-logos img { height: 30px; width: auto; padding: 5px 9px; border-radius: 9px; background: rgba(255, 255, 255, 0.06); border: 1px solid var(--line); opacity: 0.85; transition: opacity 0.25s ease, background 0.25s ease; }
.fco-pay-logos img:hover { opacity: 1; background: rgba(255, 255, 255, 0.1); }

.foot-bottom { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px; margin-top: 18px; padding: 16px 0 20px; border-top: 1px solid var(--line); }
.foot-copy { font-size: 12.5px; color: var(--text-3); }
.foot-copy i { font-style: normal; opacity: 0.75; }
.foot-by { display: inline-flex; align-items: center; gap: 10px; opacity: 0.7; transition: opacity 0.25s ease; }
.foot-by:hover { opacity: 1; }
.foot-by small { font-size: 10.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-3); }
.foot-by img { height: 22px; width: auto; }

@media (max-width: 1024px) {
    .foot-top { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px; }
    .foot-brand { grid-column: 1 / -1; max-width: 520px; }
}
@media (max-width: 720px) {
    .foot { padding-top: 40px; }
    .foot-in { padding-left: 18px; padding-right: 18px; }
    .foot-top { grid-template-columns: 1fr; gap: 28px; }
    .foot-co { flex-direction: column; align-items: flex-start; }
    .fco-pay { width: 100%; justify-content: flex-start; }
    .foot-bottom { flex-direction: column; align-items: flex-start; }
}

/* =========================================================
   TECHNOLOGIA
   ========================================================= */
.tech { position: relative; padding: 72px 0 72px; overflow: hidden; scroll-margin-top: calc(var(--promo-h) + var(--top-h) + 20px); }
.tech::before { content: ''; position: absolute; left: 50%; top: 6%; width: min(940px, 88%); height: 62%; transform: translateX(-50%); border-radius: 50%; background: radial-gradient(closest-side, rgba(47, 123, 255, 0.13), transparent 72%); filter: blur(40px); pointer-events: none; }
.tech-in { position: relative; z-index: 1; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.tech-head { display: flex; flex-direction: column; gap: 6px; margin-bottom: 32px; }

.track { position: relative; }
.tcards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 40px; }

/* Karty w stylu reszty strony */
.tcard {
    position: relative; display: flex; flex-direction: column; gap: 14px; padding: 22px; border-radius: 20px; overflow: hidden;
    background: linear-gradient(160deg, rgba(30, 44, 78, 0.72), rgba(9, 13, 24, 0.93));
    border: 1px solid rgba(180, 200, 240, 0.16);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08) inset, 0 20px 40px -30px rgba(0, 0, 0, 0.9);
    opacity: 0; transform: translateY(14px);
    transition: opacity 0.5s ease, transform 0.55s var(--ease), border-color 0.3s ease, box-shadow 0.35s ease;
}
.tech.is-in .tcard { opacity: 1; transform: none; }
.tech.is-in .tcard:nth-child(2) { transition-delay: 0.1s; }
.tech.is-in .tcard:nth-child(3) { transition-delay: 0.2s; }
.tcard::before { content: ''; position: absolute; inset: 0; background-image: var(--grain); background-size: 160px 160px; opacity: 0.07; mix-blend-mode: overlay; pointer-events: none; }
.tcard::after { content: ''; position: absolute; right: -70px; top: -80px; width: 220px; height: 220px; border-radius: 50%; background: radial-gradient(closest-side, rgba(47, 123, 255, 0.3), transparent 72%); filter: blur(14px); opacity: 0.75; pointer-events: none; transition: opacity 0.4s ease, transform 0.6s var(--ease); }
.tcard:hover { transform: translateY(-3px); border-color: rgba(94, 200, 255, 0.45); box-shadow: 0 1px 0 rgba(255, 255, 255, 0.12) inset, 0 26px 50px -30px rgba(47, 123, 255, 0.75); }
.tcard:hover::after { opacity: 1; transform: scale(1.15); }
.tcard > * { position: relative; z-index: 1; }

.tcard-top { display: flex; align-items: center; justify-content: space-between; }
.tcard-ico { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 13px; color: #eaf4ff; background: radial-gradient(120% 150% at 50% 130%, rgba(47, 123, 255, 0.6), rgba(12, 28, 68, 0.9) 65%); border: 1px solid rgba(94, 200, 255, 0.45); box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2) inset, 0 0 20px rgba(47, 123, 255, 0.3); }
.tcard-no { font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Consolas, monospace; font-weight: 700; font-size: 13px; letter-spacing: 0.14em; color: rgba(94, 200, 255, 0.7); }
.tcard-body { display: flex; flex-direction: column; gap: 7px; }
.tcard-title { font-family: var(--font-head); font-weight: 600; font-size: 18.5px; line-height: 1.05; color: #fff; }
.tcard-desc { font-size: 14px; line-height: 1.55; color: var(--text-2); }

/* Krok w toku */
.tcard.is-live { background: linear-gradient(160deg, rgba(34, 58, 110, 0.78), rgba(9, 13, 24, 0.94)); border-color: rgba(94, 200, 255, 0.42); box-shadow: 0 1px 0 rgba(255, 255, 255, 0.12) inset, 0 0 36px -10px rgba(47, 123, 255, 0.7), 0 20px 40px -30px rgba(0, 0, 0, 0.9); }
.tech.is-in .tcard.is-live { animation: liveGlow 3.6s ease-in-out 0.8s infinite; }
.tcard.is-live:hover { animation: none; }
@keyframes liveGlow {
    0%, 100% { box-shadow: 0 1px 0 rgba(255, 255, 255, 0.12) inset, 0 0 32px -12px rgba(47, 123, 255, 0.6), 0 20px 40px -30px rgba(0, 0, 0, 0.9); }
    50% { box-shadow: 0 1px 0 rgba(255, 255, 255, 0.14) inset, 0 0 46px -8px rgba(47, 123, 255, 0.85), 0 20px 40px -30px rgba(0, 0, 0, 0.9); }
}
.tcard.is-live::after { background: radial-gradient(closest-side, rgba(47, 123, 255, 0.45), transparent 72%); }
.tcard.is-live .tcard-ico { background: radial-gradient(120% 150% at 50% 130%, rgba(47, 123, 255, 0.85), rgba(12, 28, 68, 0.92) 65%); border-color: rgba(94, 200, 255, 0.7); box-shadow: 0 1px 0 rgba(255, 255, 255, 0.28) inset, 0 0 26px rgba(47, 123, 255, 0.6); }
.tcard.is-live .tcard-no { color: #bfe6ff; }
.tcard.is-live .tcard-desc { color: #b7c3d8; }

/* Łączniki między kartami */
.track-link { position: absolute; top: 50%; width: 40px; height: 2px; transform: translateY(-50%); display: flex; align-items: center; justify-content: center; z-index: 2; opacity: 0; transition: opacity 0.5s ease; }
.tech.is-in .track-link { opacity: 1; transition-delay: 0.35s; }
.track-link--a { left: calc(33.333% - 20px); }
.track-link--b { left: calc(66.666% - 20px); }
.track-link::before { content: ''; position: absolute; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, rgba(94, 200, 255, 0.12), rgba(94, 200, 255, 0.5), rgba(94, 200, 255, 0.12)); }
.track-link i { position: relative; width: 7px; height: 7px; border-radius: 50%; background: rgba(94, 200, 255, 0.6); box-shadow: 0 0 0 4px var(--bg); }
.tech.is-in .track-link i { animation: linkLit 3.6s ease-in-out 0.8s infinite; }
.tech.is-in .track-link--b i { animation-delay: 2s; }
@keyframes linkLit {
    0%, 100% { background: rgba(94, 200, 255, 0.6); box-shadow: 0 0 0 4px var(--bg); }
    30% { background: #bfe6ff; box-shadow: 0 0 14px #5ec8ff, 0 0 0 4px var(--bg); }
}

@media (max-width: 900px) {
    .tcards { grid-template-columns: 1fr; gap: 16px; }
    .track-link { display: none; }
}
@media (max-width: 720px) {
    .tech { padding: 20px 0 50px; }
    .tech-in { padding-left: 18px; padding-right: 18px; }
    .tech-head { margin-bottom: 24px; }
    .tcard { padding: 18px; }
    .tcard-title { font-size: 16.5px; }
}

/* =========================================================
   FAQ
   ========================================================= */
.faq { position: relative; padding: 72px 0 88px; overflow: hidden; scroll-margin-top: calc(var(--promo-h) + var(--top-h) + 20px); }
.faq::before { content: ''; position: absolute; left: 50%; top: 6%; width: min(940px, 88%); height: 60%; transform: translateX(-50%); border-radius: 50%; background: radial-gradient(closest-side, rgba(47, 123, 255, 0.12), transparent 72%); filter: blur(40px); pointer-events: none; }
.faq-in { position: relative; z-index: 1; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.faq .tech-head { margin-bottom: 28px; }
.faq .games-sub a { color: var(--sky); }
.faq .games-sub a:hover { color: #8fd8ff; }

.faq-cols { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px 20px; align-items: start; }
.faq-col { display: flex; flex-direction: column; gap: 12px; }

.faq-item { position: relative; border-radius: 18px; overflow: hidden; background: rgba(13, 19, 34, 0.6); border: 1px solid rgba(148, 178, 255, 0.11); transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.4s ease; }
.faq-item:hover { border-color: rgba(94, 200, 255, 0.28); background: rgba(16, 24, 42, 0.72); }
.faq-item.is-open { background: linear-gradient(160deg, rgba(30, 44, 78, 0.72), rgba(9, 13, 24, 0.93)); border-color: rgba(94, 200, 255, 0.4); box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1) inset, 0 0 34px -12px rgba(47, 123, 255, 0.6); }
.faq-item.is-open::before { content: ''; position: absolute; right: -60px; top: -70px; width: 200px; height: 200px; border-radius: 50%; background: radial-gradient(closest-side, rgba(47, 123, 255, 0.32), transparent 72%); filter: blur(14px); pointer-events: none; animation: faqGlow 0.6s ease both; }
@keyframes faqGlow { from { opacity: 0; } to { opacity: 1; } }

.faq-q { position: relative; z-index: 1; display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; width: 100%; padding: 18px 22px; text-align: left; }
.faq-qt { font-family: var(--font-head); font-weight: 600; font-size: 14.5px; line-height: 1.25; color: var(--text); transition: color 0.3s ease; }
.faq-item.is-open .faq-qt { color: #fff; }
.faq-q:focus-visible { outline: 2px solid var(--sky); outline-offset: -2px; border-radius: 18px; }
.faq-ico { position: relative; display: grid; place-items: center; width: 28px; height: 28px; flex-shrink: 0; margin-top: 1px; border-radius: 9px; background: rgba(148, 178, 255, 0.07); border: 1px solid rgba(148, 178, 255, 0.16); transition: background 0.3s ease, border-color 0.3s ease; }
.faq-ico i { position: absolute; width: 13px; height: 2.4px; border-radius: 2px; background: #8b98b2; transition: transform 0.4s var(--ease), background 0.3s ease; }
.faq-ico i:last-child { transform: rotate(90deg); }
.faq-item.is-open .faq-ico { background: rgba(94, 200, 255, 0.16); border-color: rgba(94, 200, 255, 0.45); }
.faq-item.is-open .faq-ico i { background: #bfe6ff; }
.faq-item.is-open .faq-ico i:last-child { transform: rotate(0deg); }

.faq-a { position: relative; z-index: 1; display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.45s var(--ease); }
.faq-item.is-open .faq-a { grid-template-rows: 1fr; }
.faq-a-in { overflow: hidden; }
.faq-a p { padding: 0 22px 20px; font-size: 14px; line-height: 1.6; color: #b7c3d8; opacity: 0; transform: translateY(-4px); transition: opacity 0.35s ease, transform 0.4s var(--ease); }
.faq-item.is-open .faq-a p { opacity: 1; transform: none; transition-delay: 0.1s; }

@media (max-width: 900px) {
    .faq-cols { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
    .faq { padding: 10px 0 56px; }
    .faq-in { padding-left: 18px; padding-right: 18px; }
    .faq-q { padding: 16px 18px; }
    .faq-qt { font-size: 13.5px; }
    .faq-a p { padding: 0 18px 18px; }
}

/* OPINIE START */
/* =========================================================
   OPINIE (Trustpilot)
   ========================================================= */
.op { position: relative; padding: 72px 0 72px; overflow: hidden; scroll-margin-top: calc(var(--promo-h) + var(--top-h) + 20px); }
.op::before { content: ''; position: absolute; left: -10%; top: 20%; width: 760px; height: 560px; border-radius: 50%; background: radial-gradient(closest-side, rgba(47, 123, 255, 0.14), transparent 70%); filter: blur(50px); pointer-events: none; }
.op-in { position: relative; z-index: 1; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.op-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 28px; }
.op .tech-head { margin-bottom: 0; }

.op-tp { display: inline-flex; align-items: center; gap: 10px; flex-shrink: 0; padding: 13px 18px; border-radius: 13px; font-size: 14px; font-weight: 700; color: var(--ice); background: var(--glass-bg); border: 1px solid var(--line-2); box-shadow: var(--glass-shadow); transition: border-color 0.3s ease, transform 0.3s var(--ease); }
.op-tp:hover { color: #fff; border-color: rgba(94, 200, 255, 0.55); transform: translateY(-1px); }
.op-tp-mark { display: block; width: auto; height: 20px; margin-top: -3px; }
.op-tp > svg { transition: transform 0.3s var(--ease); }
.op-tp:hover > svg { transform: translateX(3px); }

.op-wall { position: relative; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; align-items: start; max-height: 620px; overflow: hidden; }
.op-col { display: flex; flex-direction: column; gap: 16px; }
.op-card { position: relative; display: flex; flex-direction: column; gap: 14px; margin: 0; padding: 22px; border-radius: 20px; background: linear-gradient(160deg, rgba(18, 24, 44, 0.6), rgba(9, 10, 22, 0.92)); border: 1px solid rgba(148, 178, 255, 0.14); transition: border-color 0.35s ease, transform 0.3s var(--ease); }
.op-card:hover { border-color: rgba(94, 200, 255, 0.34); transform: translateY(-2px); }
.op-card.is-top { padding: 26px; background: linear-gradient(160deg, rgba(23, 42, 86, 0.9), rgba(9, 12, 24, 0.96)); border-color: rgba(94, 200, 255, 0.55); box-shadow: 0 0 46px -16px rgba(47, 123, 255, 0.85); }
.op-quote { display: block; width: 32px; height: 32px; color: var(--sky); }
.op-quote svg { display: block; width: 100%; height: 100%; }
.op-stars { display: flex; gap: 2px; color: var(--sky); }
.op-stars svg { width: 15px; height: 15px; }
.op-text { margin: 0; }
.op-text p { font-size: 14.5px; line-height: 1.62; color: #c3cee2; }
.op-card.is-top .op-text p { font-family: 'Sora', var(--font-head); font-weight: 600; font-size: 16.5px; line-height: 1.55; color: #fff; }
.op-who { display: flex; align-items: center; gap: 11px; padding-top: 12px; border-top: 1px solid rgba(148, 178, 255, 0.1); }
.op-card.is-top .op-who { border-top-color: rgba(148, 178, 255, 0.18); }
.op-ava { display: grid; place-items: center; width: 36px; height: 36px; flex-shrink: 0; border-radius: 50%; font-family: 'Sora', var(--font-head); font-size: 13px; font-weight: 700; color: #fff; text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25); box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.14) inset; }
.op-ava--1 { background: linear-gradient(135deg, #3b9dff, #1d4ed8); }
.op-ava--2 { background: linear-gradient(135deg, #f59e0b, #b45309); }
.op-ava--3 { background: linear-gradient(135deg, #ec4899, #9d174d); }
.op-ava--4 { background: linear-gradient(135deg, #06b6d4, #0e7490); }
.op-ava--5 { background: linear-gradient(135deg, #8b5cf6, #5b21b6); }
.op-ava--6 { background: linear-gradient(135deg, #10b981, #047857); }
.op-ava--7 { background: linear-gradient(135deg, #f97316, #c2410c); }
.op-meta { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.op-meta b { font-size: 13.5px; font-weight: 700; color: #fff; }
.op-meta small { display: flex; align-items: center; gap: 9px; font-size: 11.5px; color: #7f8db0; }
.op-tp-logo { display: block; width: auto; height: 15px; opacity: 0.92; }

.op-fade { position: absolute; left: 0; right: 0; bottom: 0; height: 200px; background: linear-gradient(180deg, rgba(6, 9, 18, 0), var(--bg) 88%); pointer-events: none; }
.op-more { position: relative; z-index: 2; display: flex; justify-content: center; margin-top: -58px; }
.op-all { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 15px 26px; font-size: 14.5px; font-weight: 700; }
.op-all svg { transition: transform 0.3s var(--ease); }
.op-all:hover svg { transform: translateX(3px); }

@media (max-width: 1080px) {
    .op-wall { grid-template-columns: repeat(2, minmax(0, 1fr)); max-height: none; }
    .op-col { display: contents; }
    .op-fade, .op-card--t { display: none; }
    .op-card.is-top { grid-column: 1 / -1; order: -1; }
    .op-more { margin-top: 26px; }
}
@media (max-width: 720px) {
    .op { padding: 10px 0 56px; }
    .op-in { padding-left: 18px; padding-right: 18px; }
    .op-head { flex-direction: column; align-items: flex-start; gap: 16px; }
    .op-wall { grid-template-columns: minmax(0, 1fr); }
    .op-card--m { display: none; }
    .op-all { width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
    .op-card:hover, .op-tp:hover { transform: none; }
}
/* OPINIE END */

.fco-id { display: flex; flex-direction: column; gap: 3px; }
.fco-addr { font-style: normal; font-size: 12.5px; line-height: 1.4; color: var(--text-3); }

/* =========================================================
   CTA DISCORD
   ========================================================= */
.dc { position: relative; padding: 72px 0; overflow: hidden; }
.dc-in { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.dc-band { position: relative; border-radius: 28px; overflow: hidden; background: linear-gradient(118deg, #5865f2 0%, #4a57e8 42%, #3c45c9 100%); box-shadow: 0 30px 80px -34px rgba(88, 101, 242, 0.85); }
.dc-mark { position: absolute; right: -34px; top: 50%; width: 340px; height: 340px; transform: translateY(-50%) rotate(-12deg); color: rgba(255, 255, 255, 0.13); pointer-events: none; }
.dc-mark svg { display: block; width: 100%; height: 100%; }
.dc-glow { position: absolute; left: -90px; bottom: -140px; width: 380px; height: 380px; border-radius: 50%; background: radial-gradient(closest-side, rgba(255, 255, 255, 0.18), transparent 72%); filter: blur(10px); pointer-events: none; }

.dc-body { position: relative; display: flex; align-items: center; gap: 40px; padding: 40px 44px; }
.dc-text { display: flex; flex-direction: column; gap: 12px; max-width: 640px; }
.dc-kicker { display: inline-flex; align-items: center; gap: 9px; align-self: flex-start; padding: 6px 14px 6px 10px; border-radius: 999px; font-size: 11.5px; font-weight: 700; letter-spacing: 0.11em; text-transform: uppercase; color: #fff; background: rgba(255, 255, 255, 0.16); border: 1px solid rgba(255, 255, 255, 0.26); }
.dc-kicker-ico { display: block; width: 15px; height: 15px; flex-shrink: 0; }
.dc-kicker-ico svg { display: block; width: 100%; height: 100%; }
.dc-title { margin: 0; font-family: var(--font-head); font-weight: 600; font-size: clamp(21.5px, 2.3vw, 31px); line-height: 1.08; letter-spacing: -0.035em; color: #fff; }
.dc-lead { margin: 0; font-size: 15px; line-height: 1.6; color: rgba(255, 255, 255, 0.82); }

.dc-btn { margin-left: auto; display: inline-flex; align-items: center; justify-content: center; gap: 10px; flex-shrink: 0; padding: 17px 30px; border-radius: 15px; font-size: 15.5px; font-weight: 700; color: #3c45c9; background: #fff; box-shadow: 0 14px 32px -14px rgba(0, 0, 0, 0.6); transition: transform 0.3s var(--ease), box-shadow 0.35s ease; }
.dc-btn:hover { color: #3c45c9; transform: translateY(-2px); box-shadow: 0 18px 38px -14px rgba(0, 0, 0, 0.7); }
.dc-btn:focus-visible { outline: 3px solid rgba(255, 255, 255, 0.7); outline-offset: 3px; }

@media (max-width: 900px) {
    .dc-body { flex-direction: column; align-items: flex-start; gap: 24px; padding: 32px 28px; }
    .dc-btn { margin-left: 0; }
    .dc-mark { right: -80px; width: 260px; height: 260px; opacity: 0.7; }
}
@media (max-width: 720px) {
    .dc { padding: 48px 0; }
    .dc-in { padding-left: 18px; padding-right: 18px; }
    .dc-band { border-radius: 22px; }
    .dc-body { padding: 26px 22px; }
    .dc-btn { width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
    .dc-btn { transition-duration: 0.01ms; }
    .dc-btn:hover { transform: none; }
}

/* =========================================================
   GAMEHOST+
   ========================================================= */
.is-plus, .is-zamp { --gp: 167 139 250; --gp-deep: 124 58 237; }

.gp { position: relative; z-index: 2; padding: calc(var(--promo-h) + var(--top-h) + 30px) 0 84px; overflow: hidden; isolation: isolate; }
.gp-bg { position: absolute; inset: 0; pointer-events: none; }
.gp-bg i { position: absolute; display: block; }
.gp-bg-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 70%; transform: scaleX(-1); opacity: 0.42; -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 52%, transparent 94%); mask-image: linear-gradient(180deg, #000 0%, #000 52%, transparent 94%); }
.gp-bg::before { content: ''; position: absolute; inset: 0; background: radial-gradient(120% 90% at 22% 18%, rgba(6, 9, 18, 0.42), rgba(6, 9, 18, 0.82) 62%, var(--bg) 100%); }
.gp-bg-violet { left: -6%; top: -22%; width: min(1080px, 78%); aspect-ratio: 10 / 7; border-radius: 50%; background: radial-gradient(closest-side, rgba(124, 58, 237, 0.26), transparent 70%); filter: blur(60px); }
.gp-bg-cyan { right: -10%; top: -14%; width: min(760px, 58%); aspect-ratio: 6 / 5; border-radius: 50%; background: radial-gradient(closest-side, rgba(56, 189, 248, 0.12), transparent 72%); filter: blur(70px); }
.gp-bg-pink { left: 30%; top: 30%; width: min(620px, 48%); aspect-ratio: 3 / 2; border-radius: 50%; background: radial-gradient(closest-side, rgba(236, 72, 153, 0.1), transparent 72%); filter: blur(70px); }
.gp-bg-sweep { left: -20%; top: -30%; width: 90%; height: 900px; transform: rotate(-16deg); background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.035) 46%, transparent); filter: blur(24px); }
.gp-bg-fade { left: 0; right: 0; top: 0; height: 760px; background: linear-gradient(180deg, transparent 58%, var(--bg) 100%); }
.gp-bg::after { content: ''; position: absolute; inset: 0; background-image: var(--grain); background-size: 160px 160px; opacity: 0.06; mix-blend-mode: overlay; pointer-events: none; }

.gp-in { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1fr) 470px; gap: 48px; align-items: center; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
/* ramka hero jak na stronie glownej, w palecie Gamehost+ */
.gp-frame { position: absolute; left: 0; right: 0; top: -26px; bottom: -44px; border-radius: 40px; pointer-events: none; z-index: -1; border: 1px solid transparent; mix-blend-mode: screen; opacity: 0.9; background: linear-gradient(var(--bg), var(--bg)) padding-box, linear-gradient(120deg, rgba(196, 181, 253, 0.6) 0%, rgba(167, 139, 250, 0) 24%, rgba(167, 139, 250, 0) 76%, rgba(236, 72, 153, 0.45) 100%) border-box; }
.gp-text { display: flex; flex-direction: column; gap: 14px; }
.gp-kicker { position: relative; display: inline-flex; align-items: center; gap: 14px; align-self: flex-start; margin: 0 0 4px; padding: 11px 22px 11px 17px; border-radius: 999px; font-size: 12px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: #f1ecff; background: radial-gradient(135% 175% at 50% 142%, rgba(139, 92, 246, 0.62), rgba(16, 11, 38, 0.94) 68%); border: 1px solid rgba(167, 139, 250, 0.22); animation: gpKick 3.2s ease-in-out infinite; }
.gp-kicker img { height: 27px; width: auto; filter: drop-shadow(0 2px 10px rgba(124, 58, 237, 0.65)); }
.gp-kicker b { font-weight: 700; }
.gp-kicker-sep { width: 1px; height: 17px; flex-shrink: 0; background: linear-gradient(180deg, transparent, rgba(196, 181, 253, 0.6), transparent); }
@keyframes gpKick { 0%, 100% { box-shadow: 0 0 0 1px rgba(124, 58, 237, 0.22), 0 0 28px -6px rgba(124, 58, 237, 0.5), 0 1px 0 rgba(255, 255, 255, 0.16) inset; } 50% { box-shadow: 0 0 0 1px rgba(124, 58, 237, 0.32), 0 0 46px -6px rgba(139, 92, 246, 0.8), 0 1px 0 rgba(255, 255, 255, 0.16) inset; } }
.gp-title { margin: 0; font-family: var(--font-head); font-weight: 600; font-size: clamp(26px, 2.62vw, 36px); line-height: 1.05; letter-spacing: -0.04em; color: #fff; }
.gp-title span { color: #a78bfa; }
.gp-lead { margin: 0; max-width: 560px; font-size: 15.5px; line-height: 1.6; color: #a5a1c6; }

/* makieta uslugi */
/* wyszukiwarka gier w hero */
.gp-find { position: relative; width: 100%; margin-top: 8px; display: flex; flex-direction: column; gap: 10px; }
.gp-find-field { display: flex; align-items: center; gap: 11px; padding: 0 14px 0 15px; height: 54px; border-radius: 16px; background: rgba(17, 15, 36, 0.78); border: 1px solid rgba(148, 140, 220, 0.26); box-shadow: 0 18px 40px -26px rgba(0, 0, 0, 0.95); cursor: text; transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease; }
.gp-find-field:hover { border-color: rgba(167, 139, 250, 0.45); }
.gp-find:focus-within .gp-find-field { background: rgba(22, 19, 46, 0.92); border-color: rgb(var(--gp) / 0.7); box-shadow: 0 0 0 3px rgba(167, 139, 250, 0.16), 0 18px 40px -26px rgba(0, 0, 0, 0.95); }
.gp-find-ico { display: grid; place-items: center; flex-shrink: 0; color: #8f89b5; transition: color 0.3s ease; }
.gp-find-ico svg { width: 18px; height: 18px; }
.gp-find:focus-within .gp-find-ico { color: #c4b5fd; }
.gp-find-input { flex: 1; min-width: 0; height: 100%; font-family: inherit; font-size: 14.5px; color: #f2f0ff; background: none; border: 0; outline: none; }
.gp-find-input::placeholder { color: #7d77a6; }
.gp-find-tip { flex-shrink: 0; padding: 4px 9px; border-radius: 999px; font-family: var(--font-mono); font-size: 10.5px; font-weight: 700; letter-spacing: 0.04em; color: #b9aee8; background: rgba(124, 58, 237, 0.18); border: 1px solid rgba(167, 139, 250, 0.26); }

.gp-find-list { position: absolute; left: 0; right: 0; top: calc(100% + 9px); z-index: 6; max-height: 296px; overflow-y: auto; padding: 6px; border-radius: 18px; background: rgba(14, 12, 32, 0.98); border: 1px solid rgba(148, 140, 220, 0.26); box-shadow: 0 34px 70px -30px rgba(0, 0, 0, 0.95); animation: gpDrop 0.28s var(--ease) both; }
@keyframes gpDrop { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }
.gp-find-row { display: flex; align-items: center; gap: 11px; padding: 9px 10px; border-radius: 13px; transition: background 0.25s ease; }
.gp-find-row img { width: 46px; height: 30px; flex-shrink: 0; border-radius: 9px; object-fit: cover; }
.gp-find-row:hover, .gp-find-row.is-hl { background: rgba(124, 58, 237, 0.2); }
.gp-find-name { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.gp-find-name b { font-size: 14px; font-weight: 700; color: #ffffff; }
.gp-find-name mark { color: #c4b5fd; background: none; }
.gp-find-name small { font-size: 11.5px; color: #8f89b5; }
.gp-find-ok { margin-left: auto; flex-shrink: 0; display: inline-flex; align-items: center; gap: 6px; font-size: 11.5px; font-weight: 700; color: #c4b5fd; white-space: nowrap; }
.gp-find-ok::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: #a78bfa; box-shadow: 0 0 0 3px rgba(167, 139, 250, 0.22); }
.gp-find-empty { padding: 12px 12px 13px; font-size: 13px; line-height: 1.55; color: #8f89b5; }
.gp-find-empty a { color: #c4b5fd; font-weight: 600; }
.gp-find-empty a:hover { color: #ffffff; }

.gp-find-quick { display: flex; align-items: center; flex-wrap: wrap; gap: 6px; }
.gp-find-quick small { margin-right: 2px; font-size: 12px; color: #7d77a6; }
.gp-find-chip { padding: 5px 11px; border-radius: 999px; font-family: inherit; font-size: 12px; font-weight: 600; color: #b9aee8; background: rgba(148, 140, 220, 0.09); border: 1px solid rgba(148, 140, 220, 0.2); transition: color 0.25s ease, background 0.3s ease, border-color 0.3s ease, transform 0.3s var(--ease); }
.gp-find-chip:hover { color: #ffffff; background: rgba(124, 58, 237, 0.24); border-color: rgb(var(--gp) / 0.5); transform: translateY(-1px); }
.gp-find-chip:focus-visible { outline: 2px solid #c4b5fd; outline-offset: 2px; }
/* CTA darmowej doby pod wyszukiwarka */
.gp-trial { position: relative; display: flex; align-items: center; gap: 15px; width: 100%; margin-top: 16px; padding: 15px 17px 15px 19px; border-radius: 16px; overflow: hidden; background: linear-gradient(100deg, rgba(124, 58, 237, 0.26), rgba(14, 11, 32, 0.9) 64%); border: 1px solid rgba(148, 140, 220, 0.24); transition: border-color 0.35s ease, transform 0.3s var(--ease), box-shadow 0.4s ease; }
.gp-trial::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: linear-gradient(180deg, #c4b5fd, #7c3aed); }
.gp-trial::after { content: ""; position: absolute; right: -40px; top: -60px; width: 220px; height: 220px; border-radius: 50%; background: radial-gradient(closest-side, rgba(139, 92, 246, 0.4), transparent 70%); filter: blur(30px); pointer-events: none; transition: opacity 0.4s ease; }
.gp-trial:hover { border-color: rgb(var(--gp) / 0.5); transform: translateY(-2px); box-shadow: 0 22px 46px -30px rgba(124, 58, 237, 0.95); }
.gp-trial:focus-visible { outline: 2px solid #c4b5fd; outline-offset: 3px; }
.gp-trial-ico { position: relative; display: flex; align-items: baseline; justify-content: center; width: 44px; height: 44px; flex-shrink: 0; border-radius: 14px; font-family: 'Sora', var(--font-head); font-weight: 800; font-size: 17px; line-height: 44px; letter-spacing: -0.02em; color: #fff; background: rgba(124, 58, 237, 0.3); border: 1px solid rgba(167, 139, 250, 0.5); transition: background 0.3s ease, border-color 0.3s ease; }
.gp-trial-ico i { font-style: normal; font-size: 11.5px; font-weight: 700; color: #c4b5fd; }
.gp-trial:hover .gp-trial-ico { background: rgba(124, 58, 237, 0.42); border-color: rgba(196, 181, 253, 0.7); }
.gp-trial-txt { position: relative; display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.gp-trial-txt b { font-family: 'Sora', var(--font-head); font-weight: 700; font-size: 16.5px; letter-spacing: -0.012em; color: #fff; }
.gp-trial-txt small { font-size: 12.5px; line-height: 1.5; color: #b9aee8; }
.gp-swap { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 12px; padding: 22px; border-radius: 24px; background: linear-gradient(160deg, rgba(30, 24, 62, 0.86), rgba(9, 10, 22, 0.95)); border: 1px solid rgba(148, 140, 220, 0.22); box-shadow: 0 30px 70px -34px rgba(0, 0, 0, 0.9); }
.gp-swap-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.gp-swap-head b { font-family: var(--font-head); font-weight: 600; font-size: 15px; color: #fff; }
.gp-swap-tag { padding: 4px 10px; border-radius: 999px; font-family: "JetBrains Mono", ui-monospace, Consolas, monospace; font-size: 10.5px; font-weight: 700; text-transform: uppercase; color: #c4b5fd; background: rgba(124, 58, 237, 0.16); border: 1px solid rgb(var(--gp) / 0.34); }
.gp-swap-list { display: flex; flex-direction: column; gap: 12px; margin: 0; padding: 0; list-style: none; }
.gp-swap-row { display: flex; align-items: center; gap: 13px; padding: 12px 14px; border-radius: 15px; background: rgba(20, 18, 40, 0.6); border: 1px solid rgba(148, 140, 220, 0.16); }
.gp-swap-row.is-on { background: linear-gradient(150deg, rgba(72, 46, 140, 0.9), rgba(12, 10, 28, 0.96)); border-color: rgb(var(--gp) / 0.6); }
.gp-swap-row img { width: 38px; height: 38px; flex-shrink: 0; border-radius: 11px; object-fit: cover; }
.gp-swap-name { display: flex; flex-direction: column; gap: 2px; }
.gp-swap-name b { font-size: 14px; font-weight: 700; color: #c9c3ea; }
.gp-swap-name small { font-size: 11.5px; color: #7d77a6; }
.gp-swap-row.is-on .gp-swap-name b { color: #fff; }
.gp-swap-row.is-on .gp-swap-name small { color: #b9aee8; }
.gp-swap-mark { margin-left: auto; display: grid; place-items: center; width: 24px; height: 24px; flex-shrink: 0; border-radius: 50%; color: #12061f; background: #c4b5fd; }
.gp-swap-mark svg { width: 13px; height: 13px; }
.gp-swap-go { margin-left: auto; font-size: 11.5px; font-weight: 700; color: #a78bfa; }
.gp-swap-note { display: flex; align-items: center; gap: 9px; margin: 4px 0 0; font-size: 12.5px; color: #8f89b5; }
.gp-swap-note svg { width: 14px; height: 14px; flex-shrink: 0; color: #a78bfa; }

/* karuzela pakietow */
.gp-plans { position: relative; padding: 0 0 96px; overflow: hidden; scroll-margin-top: calc(var(--top-h) + 24px); }
.gp-plans-in { position: relative; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.gp-plans-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; padding-bottom: 16px; }
@media (max-width: 900px) { .gp-plans-head { flex-direction: column; align-items: stretch; gap: 16px; } .gp-tools { justify-content: space-between; } }
.gp-plans-title { display: flex; flex-direction: column; gap: 4px; }
.gp-plans-title b { font-family: var(--font-head); font-weight: 600; font-size: 19px; line-height: 1; color: #fff; }
.gp-plans-title small { font-size: 13px; color: #8f89b5; }
.gp-nav { display: flex; gap: 8px; flex-shrink: 0; }
.gp-arrow { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; color: #ede9fe; background: radial-gradient(120% 150% at 50% 130%, rgba(139, 92, 246, 0.75), rgba(46, 16, 101, 0.95) 62%), #1e1b4b; border: 1px solid rgba(196, 181, 253, 0.55); box-shadow: 0 0 20px -6px rgba(139, 92, 246, 0.7); transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, opacity 0.3s ease; }
.gp-arrow svg { width: 16px; height: 16px; }
.gp-arrow[data-dir="-1"] svg { transform: rotate(180deg); }
.gp-arrow:hover { color: #ffffff; filter: brightness(1.15); border-color: rgba(221, 210, 255, 0.8); }
.gp-arrow.is-off { color: #8f89b5; background: rgba(148, 140, 220, 0.08); border-color: rgba(148, 140, 220, 0.24); cursor: default; }
.gp-arrow:focus-visible { outline: 2px solid #c4b5fd; outline-offset: 3px; }

.gp-rail { position: relative; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.gp-track { display: flex; gap: 14px; padding: 4px 0; overflow-x: auto; scroll-snap-type: x proximity; scrollbar-width: none; -ms-overflow-style: none; }
.gp-track::-webkit-scrollbar { display: none; }
.gp-rail-fade { position: absolute; top: 0; bottom: 0; right: 24px; width: 90px; pointer-events: none; opacity: 1; background: linear-gradient(90deg, rgba(6, 9, 18, 0), var(--bg) 82%); transition: opacity 0.35s ease; }
.gp-rail.is-end .gp-rail-fade { opacity: 0; }

.gp-plan { position: relative; display: flex; flex-direction: column; gap: 14px; width: clamp(252px, 28vw, 354px); flex-shrink: 0; scroll-snap-align: start; padding: 18px; border-radius: 20px; overflow: hidden; background: linear-gradient(160deg, rgba(28, 24, 56, 0.6), rgba(9, 10, 22, 0.92)); border: 1px solid rgba(148, 140, 220, 0.18); transition: border-color 0.35s ease, transform 0.3s var(--ease), box-shadow 0.4s ease; }
.gp-plan:hover { border-color: rgb(var(--gp) / 0.45); transform: translateY(-2px); }
.gp-plan.is-top { padding: 20px; background: linear-gradient(160deg, rgba(72, 46, 140, 0.9), rgba(12, 10, 28, 0.96)); border-color: rgb(var(--gp) / 0.62); box-shadow: 0 1px 0 rgba(255, 255, 255, 0.14) inset, 0 0 46px -14px rgba(139, 92, 246, 0.9); }
.gp-plan-badge { position: absolute; right: 14px; top: 14px; padding: 3px 9px; border-radius: 999px; font-size: 9.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: #12061f; background: #c4b5fd; }
.gp-plan-ram { display: flex; flex-direction: column; gap: 2px; }
.gp-plan-ram b { font-family: 'Sora', var(--font-head); font-weight: 700; font-size: 30px; line-height: 1; letter-spacing: -0.02em; color: #fff; }
.gp-plan-ram small { font-size: 12px; color: #9d97c4; }
.gp-plan-specs { display: flex; flex-direction: column; gap: 6px; font-size: 12.5px; color: #8f89b5; }
.gp-plan.is-top .gp-plan-specs { color: #c9c3ea; }
.gp-plan-specs span { display: flex; align-items: center; gap: 8px; }
.gp-plan-specs svg { width: 13px; height: 13px; flex-shrink: 0; }
.gp-plan-specs .is-cpu { padding-top: 2px; font-weight: 600; color: #c9c3ea; }
.gp-plan.is-top .gp-plan-specs .is-cpu { color: #fff; }
.gp-plan-specs .is-cpu svg { color: #a78bfa; }
.gp-plan-specs .is-loc img { width: 13px; height: 9px; flex-shrink: 0; border-radius: 2px; object-fit: cover; box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.18) inset; }
.gp-plan-specs .is-games b { font-family: 'Sora', var(--font-head); font-weight: 700; color: #c9c3ea; }
.gp-plan.is-top .gp-plan-specs .is-games b { color: #fff; }
.gp-plan-buy { display: flex; flex-direction: column; gap: 10px; margin-top: auto; padding-top: 13px; border-top: 1px solid rgba(148, 140, 220, 0.14); }
.gp-plan.is-top .gp-plan-buy { border-top-color: rgb(var(--gp) / 0.28); }
.gp-plan-price { display: flex; align-items: baseline; gap: 5px; white-space: nowrap; }
.gp-plan-price b { font-family: 'Sora', var(--font-head); font-weight: 700; font-size: 21px; line-height: 1; color: #d5d2f0; }
.gp-plan.is-top .gp-plan-price b { color: #fff; }
.gp-plan-price small { font-size: 11.5px; color: #8f89b5; }
.gp-plan-btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 18px; border-radius: 12px; font-size: 13.5px; font-weight: 700; color: #c9c3ea; background: rgba(148, 140, 220, 0.08); border: 1px solid rgba(148, 140, 220, 0.24); transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease; }
.gp-plan-btn:hover { color: #fff; background: rgba(148, 140, 220, 0.16); border-color: rgb(var(--gp) / 0.5); }
.gp-plan.is-top .gp-plan-btn { color: #f5f3ff; background: radial-gradient(120% 150% at 50% 130%, rgba(139, 92, 246, 0.8), rgba(46, 16, 101, 0.95) 62%), #1e1b4b; border-color: rgba(196, 181, 253, 0.6); box-shadow: 0 1px 0 rgba(255, 255, 255, 0.25) inset, 0 0 0 3px rgba(124, 58, 237, 0.16), 0 0 26px rgba(139, 92, 246, 0.5), 0 12px 30px -12px rgba(124, 58, 237, 0.9); }
.gp-plan.is-top .gp-plan-btn:hover { color: #ffffff; filter: brightness(1.12); border-color: rgba(221, 210, 255, 0.85); }

.gp-tools { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.gp-bill { display: inline-flex; align-items: center; gap: 4px; padding: 4px; border-radius: 14px; background: rgba(17, 15, 36, 0.7); border: 1px solid rgba(148, 140, 220, 0.2); }
.gp-bill button { display: inline-flex; align-items: center; gap: 6px; padding: 8px 14px; border-radius: 11px; font-family: inherit; font-size: 12.5px; font-weight: 600; white-space: nowrap; color: #8f89b5; background: none; border: 1px solid transparent; transition: color 0.3s ease, background 0.35s ease, border-color 0.35s ease, box-shadow 0.4s ease; }
.gp-bill button i { display: inline-flex; align-items: center; padding: 3px 7px; border-radius: 999px; font-family: var(--font-mono); font-style: normal; font-size: 9.5px; font-weight: 700; letter-spacing: 0.02em; color: #c4b5fd; background: rgba(124, 58, 237, 0.22); border: 1px solid rgba(167, 139, 250, 0.32); transition: color 0.3s ease, background 0.35s ease, border-color 0.35s ease, box-shadow 0.4s ease; }
.gp-bill button:hover { color: #e6eef9; background: rgba(124, 58, 237, 0.14); }
.gp-bill button:hover i { color: #e9deff; background: rgba(124, 58, 237, 0.34); border-color: rgba(196, 181, 253, 0.5); }
.gp-bill button.is-on { font-weight: 700; color: #fff; background: radial-gradient(130% 170% at 50% 140%, rgba(139, 92, 246, 0.66), rgba(24, 14, 54, 0.94) 68%); border-color: rgba(167, 139, 250, 0.55); box-shadow: 0 1px 0 rgba(255, 255, 255, 0.16) inset, 0 0 26px -10px rgba(139, 92, 246, 0.9); }
.gp-bill button.is-on i { color: #12061f; background: linear-gradient(180deg, #ddd2ff, #c4b5fd); border-color: #ddd2ff; box-shadow: 0 0 14px -4px rgba(196, 181, 253, 0.9); }
.gp-bill button:focus-visible { outline: 2px solid #c4b5fd; outline-offset: -2px; }

.gp-plan-price b { font-variant-numeric: tabular-nums; }
.gp-plan-note { font-size: 11.5px; color: #8f89b5; white-space: nowrap; }
.gp-plan.is-top .gp-plan-note { color: #b9aee8; }
.gp-plan-note.is-tick { animation: gpNote 0.42s var(--ease); }
@keyframes gpNote { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: none; } }
.gp-bar { display: block; width: 120px; height: 3px; margin-top: 22px; border-radius: 2px; overflow: hidden; background: rgba(148, 140, 220, 0.18); }
.gp-bar i { display: block; width: 40%; height: 3px; border-radius: 2px; background: #a78bfa; transition: transform 0.2s ease, width 0.2s ease; }

/* FAQ i nagłówek sekcji w palecie Gamehost+ */
.is-plus .games-kicker, .is-zamp .games-kicker { color: #c4b5fd; }
.is-plus .games-sub a, .is-zamp .games-sub a { color: #c4b5fd; }
.is-plus .games-sub a:hover, .is-zamp .games-sub a:hover { color: #fff; }
.is-plus .faq-item, .is-zamp .faq-item { background: rgba(16, 14, 34, 0.6); border-color: rgba(148, 140, 220, 0.14); }
.is-plus .faq-item:hover, .is-zamp .faq-item:hover { background: rgba(22, 19, 46, 0.72); border-color: rgba(167, 139, 250, 0.34); }
.is-plus .faq-item.is-open, .is-zamp .faq-item.is-open { background: linear-gradient(160deg, rgba(56, 38, 110, 0.72), rgba(11, 10, 26, 0.94)); border-color: rgba(167, 139, 250, 0.5); box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1) inset, 0 0 34px -12px rgba(139, 92, 246, 0.75); }
.is-plus .faq-item.is-open::before, .is-zamp .faq-item.is-open::before { background: radial-gradient(closest-side, rgba(139, 92, 246, 0.34), transparent 72%); }
.is-plus .faq-item.is-open .faq-ico, .is-zamp .faq-item.is-open .faq-ico { background: rgba(167, 139, 250, 0.18); border-color: rgba(167, 139, 250, 0.5); }
.is-plus .faq-item.is-open .faq-ico i, .is-zamp .faq-item.is-open .faq-ico i { background: #ddd2ff; }
.is-plus .faq-q:focus-visible, .is-zamp .faq-q:focus-visible { outline-color: #c4b5fd; }

/* ---------- Abonament kontra klasyczny serwer ---------- */
.vs { position: relative; z-index: 2; padding: 8px 0 96px; scroll-margin-top: calc(var(--top-h) + 24px); }
.vs-in { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.vs-head { display: flex; flex-direction: column; gap: 8px; max-width: 660px; margin-bottom: 28px; }
.vs-kick { display: inline-flex; align-self: flex-start; padding: 5px 12px; border-radius: 999px; font-family: var(--font-mono); font-size: 10.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #c4b5fd; background: rgba(124, 58, 237, 0.16); border: 1px solid rgba(167, 139, 250, 0.3); }
.vs-head h2 { margin: 0; font-family: var(--font-head); font-weight: 600; font-size: clamp(21.5px, 2.05vw, 28px); line-height: 1.05; letter-spacing: -0.03em; color: #fff; }
.vs-head h2 span { color: #c4b5fd; }
.vs-head p { margin: 0; font-size: 14.5px; line-height: 1.6; color: #a5a1c6; }

.vs-tab { border-radius: 22px; overflow: hidden; background: linear-gradient(160deg, rgba(24, 26, 44, 0.5), rgba(9, 10, 22, 0.9)); border: 1px solid rgba(148, 140, 220, 0.16); }
.vs-row { display: grid; grid-template-columns: 210px minmax(0, 1fr) minmax(0, 1fr); align-items: center; border-top: 1px solid rgba(148, 140, 220, 0.12); }
.vs-row:first-child { border-top: 0; }
.vs-row--head { align-items: end; border-bottom: 1px solid rgba(148, 140, 220, 0.16); }
.vs-topic { display: flex; align-items: center; gap: 11px; padding: 16px 18px 16px 22px; }
.vs-ico { display: grid; place-items: center; width: 34px; height: 34px; flex-shrink: 0; border-radius: 11px; color: #b9aee8; background: rgba(148, 140, 220, 0.1); border: 1px solid rgba(148, 140, 220, 0.2); transition: color 0.3s ease, background 0.3s ease, border-color 0.3s ease; }
.vs-ico svg { width: 17px; height: 17px; }
.vs-row:hover .vs-ico { color: #e9deff; background: rgba(124, 58, 237, 0.26); border-color: rgba(167, 139, 250, 0.45); }
.vs-topic b { font-size: 13.5px; font-weight: 700; color: #fff; }
.vs-old, .vs-new { display: flex; align-items: center; gap: 10px; height: 100%; font-size: 13px; line-height: 1.45; }
.vs-old { padding: 16px 20px 16px 0; color: #8f89b5; }
.vs-new { padding: 16px 22px; color: var(--ice); background: linear-gradient(90deg, rgba(124, 58, 237, 0.16), rgba(124, 58, 237, 0.07)); }
.vs-old svg, .vs-new svg { width: 15px; height: 15px; flex-shrink: 0; }
.vs-old svg { color: #5d6478; }
.vs-new svg { color: #c4b5fd; }
.vs-row--head .vs-old, .vs-row--head .vs-new { flex-direction: column; align-items: flex-start; gap: 2px; padding-top: 18px; padding-bottom: 14px; }
.vs-row--head .vs-new { background: linear-gradient(90deg, rgba(124, 58, 237, 0.22), rgba(124, 58, 237, 0.1)); }
.vs-row--head b { display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-head); font-weight: 600; font-size: 14px; }
.vs-row--head .vs-old b { color: #8f89b5; }
.vs-row--head .vs-new b { color: #fff; }
.vs-row--head .vs-new b i { padding: 3px 9px; border-radius: 999px; font-family: var(--font-mono); font-style: normal; font-size: 9px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: #12061f; background: #c4b5fd; }
.vs-row--head small { font-size: 12px; }
.vs-row--head .vs-old small { color: #6b7590; }
.vs-row--head .vs-new small { color: #b9aee8; }

@media (max-width: 900px) {
    .vs-row.vs-row--head { display: none; }
    .vs-row { grid-template-columns: minmax(0, 1fr); padding: 16px 16px 18px; }
    .vs-topic { padding: 0 0 12px; }
    .vs-old, .vs-new { align-items: flex-start; padding: 11px 13px; border-radius: 13px; }
    .vs-old { margin-bottom: 8px; background: rgba(20, 22, 40, 0.6); border: 1px solid rgba(148, 140, 220, 0.12); }
    .vs-new { background: linear-gradient(120deg, rgba(124, 58, 237, 0.26), rgba(14, 11, 32, 0.9) 70%); border: 1px solid rgba(167, 139, 250, 0.4); }
    .vs-old::before, .vs-new::before { content: attr(data-col); flex-shrink: 0; align-self: flex-start; font-family: var(--font-mono); font-size: 9px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding-top: 3px; }
    .vs-old::before { color: #6b7590; }
    .vs-new::before { color: #c4b5fd; }
    .vs-old svg, .vs-new svg { display: none; }
}
@media (max-width: 720px) {
    .vs { padding-bottom: 72px; }
    .vs-in { padding-left: 18px; padding-right: 18px; }
}

/* ---------- Zmiana gry krok po kroku ---------- */
.sw { position: relative; z-index: 2; padding: 8px 0 96px; scroll-margin-top: calc(var(--top-h) + 24px); }
.sw-in { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.sw-head { display: flex; flex-direction: column; gap: 8px; max-width: 620px; margin-bottom: 30px; }
.sw-kick { display: inline-flex; align-self: flex-start; padding: 5px 12px; border-radius: 999px; font-family: var(--font-mono); font-size: 10.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #c4b5fd; background: rgba(124, 58, 237, 0.16); border: 1px solid rgba(167, 139, 250, 0.3); }
.sw-head h2 { margin: 0; font-family: var(--font-head); font-weight: 600; font-size: clamp(21.5px, 2.05vw, 28px); line-height: 1.05; letter-spacing: -0.03em; color: #fff; }
.sw-head p { margin: 0; font-size: 14.5px; line-height: 1.6; color: #a5a1c6; }

.sw-steps { position: relative; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; margin: 0; padding: 0; list-style: none; }
.sw-steps::before { content: ""; position: absolute; left: 40px; right: 40px; top: 43px; height: 1px; background: linear-gradient(90deg, rgba(167, 139, 250, 0.45), rgba(167, 139, 250, 0.16)); }
.sw-step { position: relative; display: flex; flex-direction: column; gap: 12px; padding: 22px 20px; border-radius: 20px; background: linear-gradient(160deg, rgba(28, 24, 56, 0.6), rgba(9, 10, 22, 0.92)); border: 1px solid rgba(148, 140, 220, 0.18); transition: border-color 0.35s ease, transform 0.3s var(--ease); }
.sw-step:hover { border-color: rgb(var(--gp) / 0.45); transform: translateY(-2px); }
.sw-step-top { display: flex; align-items: center; justify-content: space-between; }
.sw-step-ico { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 13px; color: #e9deff; background: rgba(124, 58, 237, 0.26); border: 1px solid rgba(167, 139, 250, 0.45); transition: background 0.3s ease, border-color 0.3s ease; }
.sw-step-ico svg { width: 21px; height: 21px; }
.sw-step:hover .sw-step-ico { background: rgba(124, 58, 237, 0.4); border-color: rgba(196, 181, 253, 0.7); }
.sw-step-nr { font-family: 'Sora', var(--font-head); font-weight: 800; font-size: 30px; line-height: 1; color: rgba(167, 139, 250, 0.32); }
.sw-step-title { font-family: 'Sora', var(--font-head); font-weight: 700; font-size: 15.5px; line-height: 1.25; color: #fff; }
.sw-step-desc { font-size: 12.5px; line-height: 1.55; color: #a5a1c6; }

.sw-facts { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; margin: 20px 0 0; padding: 0; list-style: none; }
.sw-fact { display: flex; align-items: center; gap: 12px; padding: 15px 18px; border-radius: 15px; background: rgba(148, 140, 220, 0.06); border: 1px solid rgba(148, 140, 220, 0.16); }
.sw-fact svg { width: 18px; height: 18px; flex-shrink: 0; color: #c4b5fd; }
.sw-fact span { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.sw-fact b { font-size: 13.5px; font-weight: 700; color: #fff; }
.sw-fact small { font-size: 12px; color: #8f89b5; }

@media (max-width: 1080px) {
    .sw-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .sw-steps::before { display: none; }
}
@media (max-width: 720px) {
    .sw { padding-bottom: 72px; }
    .sw-in { padding-left: 18px; padding-right: 18px; }
    .sw-steps { grid-template-columns: minmax(0, 1fr); }
    .sw-facts { grid-template-columns: minmax(0, 1fr); }
}
@media (prefers-reduced-motion: reduce) {
    .sw-step:hover { transform: none; }
}

/* ---------- Katalog gier Gamehost+ ---------- */
.gg { position: relative; z-index: 2; padding: 8px 0 96px; scroll-margin-top: calc(var(--top-h) + 24px); }
.gg-in { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.gg-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; margin-bottom: 28px; }
.gg-title { display: flex; flex-direction: column; gap: 8px; max-width: 640px; }
.gg-kick { display: inline-flex; align-self: flex-start; padding: 5px 12px; border-radius: 999px; font-family: var(--font-mono); font-size: 10.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #c4b5fd; background: rgba(124, 58, 237, 0.16); border: 1px solid rgba(167, 139, 250, 0.3); }
.gg-title h2 { margin: 0; font-family: var(--font-head); font-weight: 600; font-size: clamp(21.5px, 2.05vw, 28px); line-height: 1.05; letter-spacing: -0.03em; color: #fff; }
.gg-title p { margin: 0; font-size: 14.5px; line-height: 1.6; color: #a5a1c6; }

.gg-legs { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; flex-shrink: 0; }
.gg-leg { display: inline-flex; align-items: center; gap: 7px; padding: 7px 12px; border-radius: 999px; font-size: 12px; font-weight: 600; white-space: nowrap; color: #b7c3d8; background: rgba(148, 140, 220, 0.06); border: 1px solid rgba(148, 140, 220, 0.16); }
.gg-leg i { width: 7px; height: 7px; border-radius: 50%; background: var(--pg); }
.gg-leg b { font-family: 'Sora', var(--font-head); font-weight: 700; color: #fff; }
.gg-leg[data-ram="4"], .gg-card[data-ram="4"] { --pg: #9fe8c8; --pg-tlo: linear-gradient(135deg, rgba(16, 84, 66, 0.94), rgba(9, 10, 22, 0.96)); --pg-kant: rgba(52, 211, 153, 0.4); }
.gg-leg[data-ram="6"], .gg-card[data-ram="6"] { --pg: #c4b5fd; --pg-tlo: linear-gradient(135deg, rgba(72, 46, 140, 0.94), rgba(9, 10, 22, 0.96)); --pg-kant: rgba(167, 139, 250, 0.42); }
.gg-leg[data-ram="8"], .gg-card[data-ram="8"] { --pg: #fbcfe8; --pg-tlo: linear-gradient(135deg, rgba(122, 26, 74, 0.94), rgba(9, 10, 22, 0.96)); --pg-kant: rgba(244, 114, 182, 0.4); }

.gg-grid { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 16px 14px; }
.gg-card { display: flex; flex-direction: column; gap: 9px; min-width: 0; }
.gg-shot { position: relative; display: block; aspect-ratio: 16 / 9; border-radius: 15px; overflow: hidden; border: 1px solid rgba(148, 140, 220, 0.22); transition: border-color 0.35s ease, transform 0.35s var(--ease); }
.gg-shot img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gg-shot::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(6, 9, 18, 0) 38%, rgba(6, 9, 18, 0.8)); pointer-events: none; }
.gg-card:hover .gg-shot { border-color: var(--pg-kant); transform: translateY(-2px); }
.gg-ram { position: absolute; right: 0; bottom: 0; z-index: 2; display: inline-flex; flex-direction: column; align-items: flex-end; gap: 1px; padding: 8px 12px 9px 15px; border-radius: 15px 0 14px 0; background: var(--pg-tlo); border-left: 1px solid var(--pg-kant); border-top: 1px solid var(--pg-kant); }
.gg-ram small { font-family: var(--font-mono); font-size: 8px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--pg); }
.gg-ram b { display: flex; align-items: baseline; gap: 4px; font-family: 'Sora', var(--font-head); font-weight: 800; font-size: 14px; line-height: 1; white-space: nowrap; color: #fff; }
.gg-ram b i { font-style: normal; font-size: 9.5px; font-weight: 700; color: var(--pg); }
.gg-name { font-size: 13px; font-weight: 600; color: var(--ice); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.gg-cta { grid-column: span 4; display: flex; align-items: center; gap: 16px; padding: 18px 22px; border-radius: 16px; background: linear-gradient(100deg, rgba(124, 58, 237, 0.24), rgba(14, 11, 32, 0.9) 62%); border: 1px dashed rgba(167, 139, 250, 0.42); transition: border-color 0.35s ease, transform 0.3s var(--ease), box-shadow 0.4s ease; }
.gg-cta:hover { border-color: rgba(196, 181, 253, 0.75); transform: translateY(-2px); box-shadow: 0 22px 46px -30px rgba(124, 58, 237, 0.95); }
.gg-cta:focus-visible { outline: 2px solid #c4b5fd; outline-offset: 3px; }
.gg-cta-ico { display: grid; place-items: center; width: 44px; height: 44px; flex-shrink: 0; border-radius: 14px; color: #e9deff; background: rgba(124, 58, 237, 0.3); border: 1px solid rgba(167, 139, 250, 0.5); transition: background 0.3s ease, transform 0.4s var(--ease); }
.gg-cta-ico svg { width: 20px; height: 20px; }
.gg-cta:hover .gg-cta-ico { background: rgba(124, 58, 237, 0.45); transform: rotate(90deg); }
.gg-cta-txt { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.gg-cta-txt b { font-family: 'Sora', var(--font-head); font-weight: 700; font-size: 16px; color: #fff; }
.gg-cta-txt small { font-size: 12.5px; line-height: 1.5; color: #b9aee8; }
.gg-cta-go { margin-left: auto; display: inline-flex; align-items: center; gap: 7px; flex-shrink: 0; font-size: 13px; font-weight: 700; white-space: nowrap; color: #c4b5fd; }
.gg-cta-go svg { transition: transform 0.3s var(--ease); }
.gg-cta:hover .gg-cta-go svg { transform: translateX(3px); }

/* przycisk do katalogu w hero */
.gp-find-all { display: inline-flex; align-items: center; gap: 7px; margin-left: 4px; padding: 5px 12px; border-radius: 999px; font-size: 12px; font-weight: 700; white-space: nowrap; color: #c4b5fd; background: rgba(124, 58, 237, 0.16); border: 1px solid rgba(167, 139, 250, 0.32); transition: color 0.25s ease, background 0.3s ease, border-color 0.3s ease; }
.gp-find-all svg { transition: transform 0.3s var(--ease); }
.gp-find-all:hover { color: #fff; background: rgba(124, 58, 237, 0.3); border-color: rgba(196, 181, 253, 0.6); }
.gp-find-all:hover svg { transform: translateX(3px); }
.gp-find-all:focus-visible { outline: 2px solid #c4b5fd; outline-offset: 2px; }

@media (max-width: 1180px) {
    .gg-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .gg-cta { grid-column: span 2; }
}
@media (max-width: 860px) {
    .gg-head { flex-direction: column; align-items: flex-start; gap: 18px; }
}
@media (max-width: 720px) {
    .gg { padding-bottom: 72px; }
    .gg-in { padding-left: 18px; padding-right: 18px; }
    .gg-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .gg-cta { grid-column: 1 / -1; flex-wrap: wrap; gap: 12px; padding: 16px; }
    .gg-cta-go { margin-left: 60px; }
    .gg-ram { padding: 6px 9px 7px 12px; }
    .gg-ram b { font-size: 12.5px; }
}
@media (prefers-reduced-motion: reduce) {
    .gg-card:hover .gg-shot, .gg-cta:hover { transform: none; }
    .gg-cta:hover .gg-cta-ico { transform: none; }
}

@media (max-width: 1080px) {
    .gp-in { grid-template-columns: minmax(0, 1fr); gap: 30px; }
    .gp-text { max-width: 640px; }
    .gp-swap { max-width: 520px; }
}
@media (max-width: 720px) {
    .gp { padding-bottom: 56px; }
    .gp-in { padding-left: 18px; padding-right: 18px; }
    .gp-frame { top: -14px; bottom: -26px; border-radius: 28px; }
    .gp-plans { padding-bottom: 72px; }
    .gp-plans-in { padding-left: 18px; padding-right: 18px; }
    .gp-rail { padding-left: 18px; padding-right: 18px; }
    .gp-rail-fade { right: 18px; width: 60px; }
    .gp-nav { display: none; }
    .gp-bill { width: 100%; justify-content: space-between; }
    .gp-bill button { padding: 8px 9px; gap: 5px; font-size: 11.5px; }
    .gp-bill button i { padding: 2px 6px; font-size: 9px; }
    .gp-plan { width: 252px; }
    .gp-swap { padding: 18px; }
    .gp-lead { max-width: none; }
    .gp-trial { padding: 14px 15px 14px 17px; gap: 12px; }
    .gp-find-list { max-height: 248px; }
}
@media (prefers-reduced-motion: reduce) {
    .gp-find-list, .gp-plan-note.is-tick { animation: none; }
    .gp-kicker { animation: none; }
    .gp-plan, .gp-bar i { transition-duration: 0.01ms; }
    .gp-plan:hover { transform: none; }
}

/* =========================================================
   KREATOR ZAMÓWIENIA
   ========================================================= */
/* w kreatorze paski zostają na górze strony i uciekają przy przewijaniu */
.is-zam .promo { position: absolute; }
.is-zam .top { position: absolute; top: var(--promo-h); background: rgba(6, 9, 18, 0.92); box-shadow: none; }
.is-zam .top.is-stuck { background: rgba(6, 9, 18, 0.92); box-shadow: none; }
.zam { position: relative; z-index: 2; padding: calc(var(--promo-h) + var(--top-h) + 26px) 0 0; isolation: isolate; }
.zam-bg { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: -1; }
.zam-bg i { position: absolute; display: block; }
.zam-bg-glow { right: -6%; top: -16%; width: min(760px, 60%); aspect-ratio: 3 / 2; border-radius: 50%; background: radial-gradient(closest-side, rgba(47, 123, 255, 0.24), transparent 70%); filter: blur(70px); }
.zam-bg-line { left: 0; right: 0; top: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(94, 200, 255, 0.35) 30%, rgba(94, 200, 255, 0.35) 70%, transparent); }
.zam-in { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.zam [hidden] { display: none !important; }

.zam-top { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-bottom: 22px; }
.zam-top::before { content: ""; position: absolute; left: -60px; top: -70px; width: 420px; height: 260px; border-radius: 50%; background: radial-gradient(closest-side, rgba(47, 123, 255, 0.22), transparent 70%); filter: blur(40px); pointer-events: none; }
.zam-top-txt { position: relative; display: flex; flex-direction: column; align-items: flex-start; gap: 12px; min-width: 0; }
.zam-kick { margin: 0; display: inline-flex; align-items: center; gap: 9px; padding: 7px 16px 7px 9px; border-radius: 999px; font-size: 12px; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; max-width: 100%; color: #bfe6ff; background: rgba(47, 123, 255, 0.14); border: 1px solid rgba(94, 200, 255, 0.3); }
.zam-kick img { width: 20px; height: 20px; object-fit: contain; }
.zam-top p { margin: 0; font-size: 13.5px; color: var(--text-2); }
.zam-rail { display: flex; align-items: center; gap: 14px; flex-shrink: 0; margin: 0; padding: 12px 20px; list-style: none; border-radius: 16px; background: rgba(12, 18, 32, 0.72); border: 1px solid rgba(148, 178, 255, 0.14); }
.zam-rail-i { display: flex; align-items: center; gap: 9px; font-size: 13px; font-weight: 600; white-space: nowrap; color: #7f8db0; transition: color 0.3s ease; }
.zam-rail-i + .zam-rail-i::before { content: ""; width: 26px; height: 1px; margin-right: 5px; background: rgba(148, 178, 255, 0.2); }
.zam-rail-nr { position: relative; display: grid; place-items: center; width: 26px; height: 26px; border-radius: 50%; font-family: 'Sora', var(--font-head); font-weight: 700; font-size: 12px; color: #7f8db0; background: rgba(148, 178, 255, 0.08); border: 1px solid rgba(148, 178, 255, 0.16); transition: color 0.3s ease, background 0.35s ease, border-color 0.35s ease; }
.zam-rail-nr span { position: absolute; display: grid; place-items: center; opacity: 0; transition: opacity 0.25s ease; }
.zam-rail-nr svg { width: 13px; height: 13px; }
.zam-rail-i.is-on { color: #fff; font-weight: 700; }
.zam-rail-i.is-on .zam-rail-nr { color: #06121f; background: linear-gradient(180deg, #8fd8ff, #5ec8ff); border-color: #8fd8ff; }
.zam-rail-i.is-done { color: #c3cee2; }
.zam-rail-i.is-done .zam-rail-nr { color: #06121f; background: rgba(110, 231, 183, 0.9); border-color: rgba(110, 231, 183, 0.9); }
.zam-rail-i.is-done .zam-rail-nr i { opacity: 0; }
.zam-rail-i.is-done .zam-rail-nr span { opacity: 1; }

.zam-cols { display: grid; grid-template-columns: minmax(0, 1fr) 366px; gap: 24px; align-items: start; padding-bottom: 56px; }
.zam-steps { display: flex; flex-direction: column; gap: 12px; }

.zam-step { border-radius: 22px; background: rgba(10, 14, 26, 0.5); border: 1px solid rgba(148, 178, 255, 0.09); transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.4s ease; }
.zam-step.is-done { background: rgba(12, 18, 32, 0.6); border-color: rgba(148, 178, 255, 0.14); }
.zam-step.is-open { background: linear-gradient(160deg, rgba(20, 30, 54, 0.8), rgba(8, 12, 22, 0.94)); border-color: rgba(94, 200, 255, 0.34); box-shadow: 0 0 40px -16px rgba(47, 123, 255, 0.7); }
.zam-step-head { display: flex; align-items: center; gap: 14px; width: 100%; padding: 17px 22px; text-align: left; cursor: default; }
.zam-step.is-done .zam-step-head { cursor: pointer; }
.zam-step-nr { position: relative; display: grid; place-items: center; width: 28px; height: 28px; flex-shrink: 0; border-radius: 50%; font-family: 'Sora', var(--font-head); font-weight: 700; font-size: 12.5px; color: #7f8db0; background: rgba(148, 178, 255, 0.07); border: 1px solid rgba(148, 178, 255, 0.14); transition: color 0.3s ease, background 0.35s ease, border-color 0.35s ease; }
.zam-step-ok { position: absolute; display: grid; place-items: center; opacity: 0; transition: opacity 0.25s ease; }
.zam-step-ok svg { width: 13px; height: 13px; }
.zam-step.is-open .zam-step-nr { color: #06121f; background: linear-gradient(180deg, #8fd8ff, #5ec8ff); border-color: #8fd8ff; }
.zam-step.is-done .zam-step-nr { color: #06121f; background: rgba(110, 231, 183, 0.9); border-color: rgba(110, 231, 183, 0.9); }
.zam-step.is-done .zam-step-nr i { opacity: 0; }
.zam-step.is-done .zam-step-ok { opacity: 1; }
.zam-step-txt { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.zam-step-txt b { font-family: 'Sora', var(--font-head); font-weight: 700; font-size: 18px; line-height: 1.1; letter-spacing: -0.02em; color: #8b98b2; transition: color 0.3s ease; }
.zam-step.is-open .zam-step-txt b, .zam-step.is-done .zam-step-txt b { color: #fff; }
.zam-step-val { font-size: 11.5px; color: #6b7590; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.zam-step.is-done .zam-step-val { color: #8b98b2; }
.zam-step-edit { margin-left: auto; flex-shrink: 0; padding: 7px 14px; border-radius: 11px; font-size: 12.5px; font-weight: 700; color: #bfe6ff; background: rgba(47, 123, 255, 0.14); border: 1px solid rgba(94, 200, 255, 0.3); opacity: 0; pointer-events: none; transition: opacity 0.3s ease, background 0.3s ease; }
.zam-step.is-done .zam-step-edit { opacity: 1; }
.zam-step.is-done .zam-step-head:hover .zam-step-edit { background: rgba(47, 123, 255, 0.26); }
.zam-step-body { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.45s var(--ease); }
.zam-step.is-open .zam-step-body { grid-template-rows: 1fr; }
.zam-step-in { overflow: hidden; display: flex; flex-direction: column; gap: 18px; padding: 0 22px; opacity: 0; transition: opacity 0.3s ease, padding 0.3s ease; }
.zam-step.is-open .zam-step-in { padding: 4px 22px 22px; opacity: 1; transition-delay: 0.08s; }
.zam-step-go { display: flex; align-items: center; gap: 12px; }
.zam-next { display: inline-flex; align-items: center; gap: 9px; padding: 13px 22px; border-radius: 13px; font-family: inherit; font-size: 14px; font-weight: 700; color: #06121f; background: linear-gradient(180deg, #8fd8ff, #5ec8ff); border: 1px solid #8fd8ff; box-shadow: 0 14px 34px -16px rgba(94, 200, 255, 0.95); transition: filter 0.25s ease, box-shadow 0.35s ease; }
.zam-next:hover { filter: brightness(1.12); }
.zam-next svg { transition: transform 0.3s var(--ease); }
.zam-next:hover svg { transform: translateX(3px); }
.zam-back { display: inline-flex; align-items: center; gap: 8px; padding: 13px 16px; border-radius: 13px; font-family: inherit; font-size: 13.5px; font-weight: 600; color: #8b98b2; transition: color 0.25s ease; }
.zam-back:hover { color: var(--ice); }
.zam-next:focus-visible, .zam-back:focus-visible, .zam-step-head:focus-visible { outline: 2px solid var(--sky); outline-offset: 2px; border-radius: 13px; }

/* krok 1 */
.zam-lines { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.zam-line { position: relative; display: flex; align-items: center; gap: 12px; padding: 13px 15px; border-radius: 16px; text-align: left; background: rgba(10, 15, 27, 0.6); border: 1px solid rgba(148, 178, 255, 0.14); transition: background 0.35s ease, border-color 0.35s ease, transform 0.3s var(--ease); }
.zam-line:hover { transform: translateY(-2px); border-color: rgba(94, 200, 255, 0.34); }
.zam-line.is-on { background: radial-gradient(130% 170% at 50% 140%, rgba(47, 123, 255, 0.42), rgba(10, 18, 36, 0.94) 66%); border-color: rgba(94, 200, 255, 0.55); }
.zam-line img { width: 40px; height: 40px; flex-shrink: 0; object-fit: contain; }
.zam-line-txt { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.zam-line-txt b { font-size: 14px; font-weight: 700; color: var(--ice); }
.zam-line-txt small { font-size: 11.5px; color: #7f8db0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.zam-line-loc { display: flex; align-items: center; gap: 6px; }
.zam-line-mark { margin-left: auto; display: grid; place-items: center; width: 22px; height: 22px; flex-shrink: 0; border-radius: 50%; color: #06121f; background: var(--sky); opacity: 0; transform: scale(0.7); transition: opacity 0.3s ease, transform 0.3s var(--ease); }
.zam-line-mark svg { width: 12px; height: 12px; }
.zam-line.is-on .zam-line-mark { opacity: 1; transform: none; }
.zam-flag { width: 16px; height: 11px; flex-shrink: 0; border-radius: 2px; box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.16) inset; }

.zam-sep { display: block; height: 1px; margin: 4px 0; background: linear-gradient(90deg, transparent, rgba(148, 178, 255, 0.22) 16%, rgba(148, 178, 255, 0.22) 84%, transparent); }
.zam-packs { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.zam-pack { display: flex; align-items: center; gap: 12px; padding: 12px 14px; border-radius: 15px; text-align: left; background: rgba(10, 15, 27, 0.6); border: 1px solid rgba(148, 178, 255, 0.12); transition: background 0.35s ease, border-color 0.35s ease; }
.zam-pack:hover { border-color: rgba(94, 200, 255, 0.3); }
.zam-pack.is-on { background: radial-gradient(130% 170% at 50% 140%, rgba(47, 123, 255, 0.4), rgba(10, 18, 36, 0.94) 66%); border-color: rgba(94, 200, 255, 0.55); }
.zam-pack img { width: 34px; height: 34px; flex-shrink: 0; }
.zam-pack-txt { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.zam-pack-txt b { font-size: 13.5px; font-weight: 700; color: var(--ice); }
.zam-pack-txt small { font-size: 11.5px; color: #7f8db0; white-space: nowrap; }
.zam-pack-price { margin-left: auto; display: flex; flex-direction: column; align-items: flex-end; gap: 1px; flex-shrink: 0; }
.zam-pack-price b { font-family: 'Sora', var(--font-head); font-weight: 700; font-size: 14px; color: #fff; white-space: nowrap; }
.zam-pack-price small { font-size: 10.5px; color: #7f8db0; }

/* krok 2 */
.zam-loc { display: flex; align-items: center; gap: 12px; padding: 13px 15px; border-radius: 15px; background: rgba(12, 18, 32, 0.6); border: 1px solid rgba(148, 178, 255, 0.12); }
.zam-loc-txt { display: flex; flex-direction: column; gap: 1px; }
.zam-loc-txt b { font-size: 13.5px; font-weight: 700; color: #fff; }
.zam-loc-txt small { font-size: 11.5px; color: #7f8db0; }
.zam-loc-tag { margin-left: auto; flex-shrink: 0; padding: 6px 12px; border-radius: 999px; font-family: var(--font-mono); font-size: 9.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: #7f8db0; background: rgba(148, 178, 255, 0.07); border: 1px solid rgba(148, 178, 255, 0.14); }

.zam-field { display: flex; flex-direction: column; gap: 11px; }
.zam-field-head { display: flex; flex-direction: column; gap: 3px; }
.zam-field-head b { font-family: 'Sora', var(--font-head); font-weight: 700; font-size: 16px; letter-spacing: -0.015em; color: #fff; }
.zam-field-head small { font-size: 12.5px; color: var(--text-2); }
.zam-pers { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 10px; }
.zam-per { display: flex; flex-direction: column; align-items: center; gap: 2px; padding: 11px 6px; border-radius: 13px; background: rgba(10, 15, 27, 0.6); border: 1px solid rgba(148, 178, 255, 0.14); transition: background 0.35s ease, border-color 0.35s ease; }
.zam-per:hover { border-color: rgba(94, 200, 255, 0.3); }
.zam-per b { font-family: 'Sora', var(--font-head); font-weight: 700; font-size: 14px; color: #c3cee2; }
.zam-per small { font-family: var(--font-mono); font-size: 9.5px; font-weight: 700; color: #5b647d; }
.zam-per.is-on { background: radial-gradient(130% 170% at 50% 140%, rgba(47, 123, 255, 0.5), rgba(10, 18, 36, 0.94) 66%); border-color: rgba(94, 200, 255, 0.55); }
.zam-per.is-on b { color: #fff; }
.zam-per.is-on small { color: #bfe6ff; }


.zam-adds { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.zam-add { display: flex; flex-direction: column; gap: 12px; padding: 15px 16px; border-radius: 16px; background: rgba(10, 15, 27, 0.6); border: 1px solid rgba(148, 178, 255, 0.12); transition: background 0.35s ease, border-color 0.35s ease; }
.zam-add.is-on { background: rgba(47, 123, 255, 0.12); border-color: rgba(94, 200, 255, 0.4); }
.zam-add-head { display: flex; flex-direction: column; gap: 2px; }
.zam-add-head b { display: flex; align-items: center; gap: 7px; font-size: 13.5px; font-weight: 700; color: #e2e8f0; }
.zam-add-head small { font-size: 11.5px; color: #64748b; }
.zam-add-foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.zam-add-price { font-size: 13.5px; font-weight: 700; color: var(--sky); white-space: nowrap; }
.zam-add-price.is-zero { color: #64748b; }
.zam-tip { display: inline-grid; place-items: center; color: #475569; cursor: help; }
.zam-tip svg { width: 13px; height: 13px; }
.zam-tip:hover, .zam-tip:focus-visible { color: var(--sky); outline: none; }
.zam-add { position: relative; }
.zam-tip-box { position: absolute; left: 14px; right: 14px; top: 44px; z-index: 6; padding: 10px 12px; border-radius: 10px; font-size: 11.5px; font-weight: 500; line-height: 1.45; color: #cbd5e1; background: #0c111a; border: 1px solid rgba(94, 200, 255, 0.28); box-shadow: 0 12px 34px rgba(0, 0, 0, 0.55); opacity: 0; visibility: hidden; transform: translateY(-4px); transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s; }
.zam-tip:hover .zam-tip-box, .zam-tip:focus-visible .zam-tip-box { opacity: 1; visibility: visible; transform: none; }
.zam-count { display: flex; align-items: center; border-radius: 11px; overflow: hidden; background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(148, 178, 255, 0.14); }
.zam-count-btn { display: grid; place-items: center; width: 32px; height: 32px; font-size: 17px; font-weight: 700; color: var(--sky); transition: background 0.25s ease; }
.zam-count-btn:hover { background: rgba(47, 123, 255, 0.16); }
.zam-count-val { min-width: 58px; text-align: center; font-family: 'Sora', var(--font-head); font-size: 13px; font-weight: 700; color: #fff; }
.zam-switch { position: relative; width: 44px; height: 24px; flex-shrink: 0; border-radius: 99px; background: rgba(255, 255, 255, 0.12); transition: background 0.3s ease; }
.zam-switch i { position: absolute; top: 3px; left: 3px; width: 18px; height: 18px; border-radius: 50%; background: #fff; transition: transform 0.3s var(--ease); }
.zam-switch.is-on { background: var(--sky); }
.zam-switch.is-on i { transform: translateX(20px); }
.zam-switch:focus-visible, .zam-count-btn:focus-visible { outline: 2px solid var(--sky); outline-offset: 2px; }

/* krok 3 */
.zam-tabs { display: flex; gap: 6px; padding: 5px; border-radius: 14px; background: rgba(8, 12, 22, 0.6); border: 1px solid rgba(148, 178, 255, 0.12); }
.zam-tab { flex: 1; padding: 11px 14px; border-radius: 11px; font-family: inherit; font-size: 13.5px; font-weight: 600; color: #8b98b2; border: 1px solid transparent; transition: color 0.3s ease, background 0.35s ease, border-color 0.35s ease; }
.zam-tab.is-on { font-weight: 700; color: #fff; background: radial-gradient(130% 170% at 50% 140%, rgba(47, 123, 255, 0.55), rgba(10, 18, 36, 0.94) 66%); border-color: rgba(94, 200, 255, 0.5); }
/* konto: rejestracja kontra logowanie */
.zam-step [data-only="old"] { display: none; }
.zam-step.is-login [data-only="new"] { display: none; }
.zam-step.is-login [data-only="old"] { display: flex; }
.zam-step.is-login [data-only="old"], .zam-step:not(.is-login) [data-only="new"] { animation: zamSwap 0.34s var(--ease) both; }
@keyframes zamSwap { from { opacity: 0; transform: translateY(-5px); } to { opacity: 1; transform: none; } }
.zam-step.is-login .zam-grid2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.zam-social { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.zam-soc { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 13px 18px; border-radius: 13px; font-family: inherit; font-size: 13.5px; font-weight: 700; color: var(--ice); background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(148, 178, 255, 0.2); transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s var(--ease); }
.zam-soc:hover { background: rgba(255, 255, 255, 0.09); border-color: rgba(148, 178, 255, 0.35); transform: translateY(-1px); }
.zam-soc svg { width: 18px; height: 18px; flex-shrink: 0; }
.zam-soc--dc { color: #dfe1ff; background: rgba(88, 101, 242, 0.18); border-color: rgba(88, 101, 242, 0.45); }
.zam-soc--dc:hover { background: rgba(88, 101, 242, 0.28); border-color: rgba(140, 150, 255, 0.7); }
.zam-soc:focus-visible { outline: 2px solid var(--sky); outline-offset: 2px; }
.zam-or { display: flex; align-items: center; gap: 14px; font-size: 12px; color: #6b7590; }
.zam-or i { flex: 1; height: 1px; background: rgba(148, 178, 255, 0.14); }
.zam-grid2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.zam-input { display: flex; flex-direction: column; gap: 7px; }
.zam-input > span { font-size: 12.5px; font-weight: 700; color: #c3cee2; }
.zam-input input { height: 48px; padding: 0 15px; border-radius: 13px; font-family: inherit; font-size: 14px; color: #fff; background: rgba(8, 12, 22, 0.7); border: 1px solid rgba(148, 178, 255, 0.14); outline: none; transition: border-color 0.3s ease, box-shadow 0.35s ease; }
.zam-input input::placeholder { color: #5b647d; }
.zam-input input:focus { border-color: rgba(94, 200, 255, 0.5); box-shadow: 0 0 0 3px rgba(47, 123, 255, 0.14); }
.zam-hint { display: block; font-size: 12px; color: #7f8db0; opacity: 0; max-height: 0; overflow: hidden; transition: opacity 0.25s ease, max-height 0.25s ease; }
.zam-hint.is-on { opacity: 1; max-height: 40px; }
.zam-hint.is-ok { color: #6ee7b7; }
.zam-hint.is-bad { color: #fca5a5; }
.zam-note { display: flex; align-items: center; gap: 11px; margin: 0; padding: 13px 15px; border-radius: 14px; font-size: 12.5px; line-height: 1.5; color: #bfe6ff; background: rgba(47, 123, 255, 0.1); border: 1px solid rgba(94, 200, 255, 0.28); }
.zam-note svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--sky); }
.zam-agree { display: flex; flex-direction: column; gap: 11px; }
.zam-check { display: flex; align-items: flex-start; gap: 11px; cursor: pointer; }
.zam-check input { position: absolute; opacity: 0; width: 0; height: 0; }
.zam-box { display: grid; place-items: center; width: 20px; height: 20px; flex-shrink: 0; margin-top: 1px; border-radius: 6px; color: transparent; background: transparent; border: 1px solid rgba(148, 178, 255, 0.3); transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease; }
.zam-box svg { width: 12px; height: 12px; }
.zam-check input:checked + .zam-box { color: #06121f; background: var(--sky); border-color: var(--sky); }
.zam-check input:focus-visible + .zam-box { outline: 2px solid var(--sky); outline-offset: 2px; }
.zam-check small { font-size: 12.5px; line-height: 1.5; color: #8b98b2; }
.zam-check a { color: #bfe6ff; font-weight: 600; }

/* krok 4 */
.zam-pays { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.zam-pay { display: flex; flex-direction: column; gap: 5px; padding: 14px 15px; border-radius: 15px; text-align: left; background: rgba(10, 15, 27, 0.6); border: 1px solid rgba(148, 178, 255, 0.14); transition: background 0.35s ease, border-color 0.35s ease; }
.zam-pay:hover { border-color: rgba(94, 200, 255, 0.3); }
.zam-pay.is-on { background: radial-gradient(130% 170% at 50% 140%, rgba(47, 123, 255, 0.45), rgba(10, 18, 36, 0.94) 66%); border-color: rgba(94, 200, 255, 0.55); }
.zam-pay-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.zam-pay-logo { display: inline-flex; align-items: center; gap: 9px; min-height: 26px; }
.zam-pay-logo img { height: 22px; width: auto; object-fit: contain; filter: grayscale(1) brightness(1.6); opacity: 0.75; transition: filter 0.3s ease, opacity 0.3s ease; }
.zam-pay[data-pay="karta"] .zam-pay-logo img { height: 19px; }
.zam-pay[data-pay="psc"] .zam-pay-logo img { height: 17px; }
.zam-pay.is-on .zam-pay-logo img, .zam-pay:hover .zam-pay-logo img { filter: none; opacity: 1; }
.zam-pay-tag { padding: 3px 8px; border-radius: 999px; font-family: var(--font-mono); font-size: 9px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: #bfe6ff; background: rgba(47, 123, 255, 0.18); border: 1px solid rgba(94, 200, 255, 0.3); }
.zam-visa { display: inline-flex; align-items: center; padding: 4px 9px; border-radius: 5px; font-family: 'Sora', var(--font-head); font-weight: 800; font-size: 13px; font-style: italic; letter-spacing: 0.06em; color: #f7f9ff; background: #1434cb; opacity: 0.75; transition: opacity 0.3s ease; }
.zam-pay.is-on .zam-visa, .zam-pay:hover .zam-visa { opacity: 1; }
.zam-mc { position: relative; display: inline-flex; align-items: center; }
.zam-mc i { width: 17px; height: 17px; border-radius: 50%; background: #eb001b; opacity: 0.75; transition: opacity 0.3s ease; }
.zam-mc i:last-child { margin-left: -7px; background: #f79e1b; mix-blend-mode: screen; }
.zam-pay.is-on .zam-mc i, .zam-pay:hover .zam-mc i { opacity: 1; }
.zam-psc { display: inline-flex; align-items: baseline; gap: 1px; font-family: 'Sora', var(--font-head); font-weight: 700; font-size: 14px; letter-spacing: -0.01em; opacity: 0.75; transition: opacity 0.3s ease; }
.zam-psc i { font-style: normal; color: #ffce00; }
.zam-psc b { font-weight: 700; color: #f7f9ff; }
.zam-pay.is-on .zam-psc, .zam-pay:hover .zam-psc { opacity: 1; }

.zam-pay-head b { font-size: 13.5px; font-weight: 700; color: #c3cee2; }
.zam-pay.is-on .zam-pay-head b { color: #fff; }
.zam-pay small { font-size: 11.5px; color: #7f8db0; }
.zam-pay-mark { display: grid; place-items: center; width: 20px; height: 20px; flex-shrink: 0; border-radius: 50%; color: #06121f; background: var(--sky); opacity: 0; transform: scale(0.7); transition: opacity 0.3s ease, transform 0.3s var(--ease); }
.zam-pay-mark svg { width: 11px; height: 11px; }
.zam-pay.is-on .zam-pay-mark { opacity: 1; transform: none; }
/* panel kodu BLIK w miejscu listy metod */
.zam-blik { display: flex; flex-direction: column; gap: 16px; padding: 20px; border-radius: 18px; background: linear-gradient(160deg, rgba(20, 30, 54, 0.8), rgba(8, 12, 22, 0.94)); border: 1px solid rgba(94, 200, 255, 0.34); animation: zamSwap 0.34s var(--ease) both; }
.zam-blik-head { display: flex; align-items: center; gap: 14px; }
.zam-blik-head img { height: 26px; width: auto; flex-shrink: 0; }
.zam-blik-txt { display: flex; flex-direction: column; gap: 2px; }
.zam-blik-txt b { font-family: 'Sora', var(--font-head); font-weight: 700; font-size: 15px; color: #fff; }
.zam-blik-txt small { font-size: 12px; color: var(--text-2); }
.zam-blik-back { margin-left: auto; flex-shrink: 0; padding: 8px 14px; border-radius: 11px; font-family: inherit; font-size: 12.5px; font-weight: 700; color: #bfe6ff; background: rgba(47, 123, 255, 0.14); border: 1px solid rgba(94, 200, 255, 0.3); transition: background 0.3s ease, color 0.25s ease; }
.zam-blik-back:hover { color: #fff; background: rgba(47, 123, 255, 0.26); }
.zam-blik-code { display: flex; gap: 10px; }
.zam-blik-code input { width: 56px; height: 62px; text-align: center; font-family: 'Sora', var(--font-head); font-size: 24px; font-weight: 700; color: #fff; background: rgba(8, 12, 22, 0.8); border: 1px solid rgba(148, 178, 255, 0.18); border-radius: 14px; outline: none; transition: border-color 0.25s ease, box-shadow 0.3s ease, background 0.3s ease; }
.zam-blik-code input:focus { border-color: rgba(94, 200, 255, 0.7); background: rgba(12, 20, 38, 0.9); box-shadow: 0 0 0 3px rgba(47, 123, 255, 0.16); }
.zam-blik.is-full .zam-blik-code input { border-color: rgba(110, 231, 183, 0.5); }
.zam-blik-info { display: flex; align-items: center; gap: 10px; margin: 0; font-size: 12.5px; line-height: 1.5; color: #8b98b2; }
.zam-blik-info svg { width: 15px; height: 15px; flex-shrink: 0; color: var(--sky); }
@media (max-width: 720px) {
    .zam-blik-code { gap: 7px; }
    .zam-blik-code input { width: 100%; height: 54px; font-size: 20px; }
    .zam-blik-head { flex-wrap: wrap; }
    .zam-blik-back { margin-left: 0; }
}
.zam-code { display: flex; align-items: center; gap: 10px; height: 48px; padding: 0 15px; border-radius: 13px; background: rgba(8, 12, 22, 0.7); border: 1px solid rgba(110, 231, 183, 0.4); transition: border-color 0.3s ease; }
.zam-code.is-off { border-color: rgba(148, 178, 255, 0.14); }
.zam-code-ico { display: grid; place-items: center; flex-shrink: 0; color: #6ee7b7; }
.zam-code.is-off .zam-code-ico { color: #5b647d; }
.zam-code-ico svg { width: 16px; height: 16px; }
.zam-code-val { font-family: var(--font-mono); font-size: 14px; font-weight: 700; color: #fff; }
.zam-code-state { display: inline-flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 700; color: #6ee7b7; }
.zam-code-state svg { width: 13px; height: 13px; }
.zam-code.is-off .zam-code-state { display: none; }
.zam-code-del { margin-left: auto; flex-shrink: 0; padding: 8px 16px; border-radius: 11px; font-family: inherit; font-size: 12.5px; font-weight: 700; color: #8b98b2; background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(148, 178, 255, 0.14); transition: color 0.25s ease, background 0.3s ease; }
.zam-code-del:hover { color: var(--ice); background: rgba(255, 255, 255, 0.08); }

/* prawa kolumna */
.zam-side { position: sticky; top: calc(var(--top-h) + 18px); display: flex; flex-direction: column; gap: 12px; }
.zam-sum { position: relative; display: flex; flex-direction: column; gap: 15px; padding: 22px; border-radius: 22px; overflow: hidden; background: linear-gradient(160deg, rgba(20, 30, 54, 0.9), rgba(8, 12, 22, 0.96)); border: 1px solid rgba(148, 178, 255, 0.2); box-shadow: 0 30px 70px -34px rgba(0, 0, 0, 0.95); }
.zam-sum::before { content: ""; position: absolute; right: -40px; top: -60px; width: 200px; height: 200px; border-radius: 50%; background: radial-gradient(closest-side, rgba(47, 123, 255, 0.3), transparent 70%); filter: blur(28px); pointer-events: none; }
.zam-sum-head { position: relative; display: flex; align-items: center; gap: 13px; padding-bottom: 15px; border-bottom: 1px solid rgba(148, 178, 255, 0.12); }
.zam-sum-ico { display: grid; place-items: center; width: 54px; height: 54px; flex-shrink: 0; border-radius: 16px; background: rgba(47, 123, 255, 0.14); border: 1px solid rgba(94, 200, 255, 0.3); }
.zam-sum-ico img { width: 38px; height: 38px; }
.zam-sum-name { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.zam-sum-name small { font-size: 11.5px; color: #8b98b2; }
.zam-sum-name b { font-family: var(--font-head); font-weight: 600; font-size: 15.5px; color: #fff; }
.zam-sum-rows { position: relative; display: flex; flex-direction: column; gap: 8px; }
.zam-sum-adds, .zam-sum-cash { padding-top: 14px; border-top: 1px solid rgba(148, 178, 255, 0.12); }
.zam-sum-lab { font-family: var(--font-mono); font-size: 9.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #7f8db0; }
.zam-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; font-size: 13px; color: #8b98b2; }
.zam-row b { display: inline-flex; align-items: center; gap: 6px; font-family: 'Sora', var(--font-head); font-weight: 600; color: #d5deee; white-space: nowrap; }
.zam-row--total { font-size: 14px; color: #fff; }
.zam-row--total b { font-weight: 700; font-size: 16px; color: #fff; }
.zam-sum-cta { position: relative; display: flex; align-items: center; justify-content: center; gap: 9px; margin-top: 2px; padding: 15px 18px; border-radius: 14px; font-family: inherit; font-size: 15px; font-weight: 700; color: #06121f; background: linear-gradient(180deg, #8fd8ff, #5ec8ff); border: 1px solid #8fd8ff; box-shadow: 0 16px 38px -16px rgba(94, 200, 255, 1); transition: filter 0.25s ease, box-shadow 0.35s ease; }
.zam-sum-cta:hover { filter: brightness(1.06); box-shadow: 0 18px 42px -14px rgba(94, 200, 255, 1); }
.zam-sum-cta svg { transition: transform 0.3s var(--ease); }
.zam-sum-cta:hover svg { transform: translateX(3px); }
.zam-sum-foot { position: relative; font-size: 11.5px; line-height: 1.5; text-align: center; color: #7f8db0; }

.zam-card { display: flex; align-items: center; gap: 13px; padding: 17px 18px; border-radius: 20px; background: rgba(12, 18, 32, 0.6); border: 1px solid rgba(148, 178, 255, 0.12); }
.zam-card-ico { display: grid; place-items: center; width: 42px; height: 42px; flex-shrink: 0; border-radius: 13px; color: var(--sky); background: rgba(47, 123, 255, 0.16); border: 1px solid rgba(94, 200, 255, 0.3); }
.zam-card-ico svg { width: 20px; height: 20px; }
.zam-card-txt { display: flex; flex-direction: column; gap: 2px; }
.zam-card-txt b { font-size: 13.5px; font-weight: 700; color: #fff; }
.zam-card-txt small { font-size: 12px; line-height: 1.45; color: var(--text-2); }
.zam-card--promo { background: linear-gradient(100deg, rgba(47, 123, 255, 0.22), rgba(10, 14, 26, 0.9) 70%); border: 1px dashed rgba(94, 200, 255, 0.45); }
.zam-card--list { flex-direction: column; align-items: stretch; gap: 12px; padding: 20px; }
.zam-card--list > b { font-family: var(--font-head); font-weight: 600; font-size: 13px; color: #fff; }
.zam-card--list ul { display: flex; flex-direction: column; gap: 9px; margin: 0; padding: 0; list-style: none; }
.zam-card--list li { display: flex; align-items: flex-start; gap: 10px; font-size: 12.5px; line-height: 1.45; color: var(--text-2); }
.zam-card--list svg { width: 13px; height: 13px; flex-shrink: 0; margin-top: 3px; color: var(--sky); }
.zam-card--dc { background: linear-gradient(100deg, rgba(88, 101, 242, 0.3), rgba(10, 14, 26, 0.9) 70%); border-color: rgba(88, 101, 242, 0.45); transition: border-color 0.3s ease, transform 0.3s var(--ease); }
.zam-card--dc:hover { border-color: rgba(140, 150, 255, 0.7); transform: translateY(-2px); }
.zam-card--dc .zam-card-ico { color: #c9cdff; background: rgba(88, 101, 242, 0.3); border-color: rgba(140, 150, 255, 0.45); }

@media (max-width: 1080px) {
    .zam-cols { grid-template-columns: minmax(0, 1fr); }
    .zam-side { position: static; }
    .zam-top { flex-direction: column; align-items: flex-start; gap: 16px; }
    .zam-rail { width: 100%; justify-content: space-between; }
}
@media (max-width: 860px) {
    .zam-lines { grid-template-columns: minmax(0, 1fr); }
    .zam-packs, .zam-adds, .zam-grid2 { grid-template-columns: minmax(0, 1fr); }
    .zam-pays { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .zam-pers { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 720px) {
    .zam-in { padding-left: 18px; padding-right: 18px; }
    .zam-rail-i span:not(.zam-rail-nr span) { display: none; }
    .zam-rail-i { font-size: 0; gap: 0; }
    .zam-rail-nr { font-size: 12px; }
    .zam-step-head, .zam-step.is-open .zam-step-in { padding-left: 16px; padding-right: 16px; }
    .zam-pays { grid-template-columns: minmax(0, 1fr); }
    .zam-step-edit { padding: 6px 11px; font-size: 11.5px; }
}
@media (prefers-reduced-motion: reduce) {
    .zam-line:hover, .zam-card--dc:hover { transform: none; }
}

/* =========================================================
   KREATOR ZAMÓWIENIA GAMEHOST+
   ========================================================= */
.is-zamp .zam-bg-glow { background: radial-gradient(closest-side, rgba(124, 58, 237, 0.28), transparent 70%); }
.is-zamp .zam-bg-line { background: linear-gradient(90deg, transparent, rgba(167, 139, 250, 0.4) 30%, rgba(167, 139, 250, 0.4) 70%, transparent); }
.is-zamp .zam-top::before { background: radial-gradient(closest-side, rgba(124, 58, 237, 0.24), transparent 70%); }

.is-zamp .zam-kick { padding: 7px 16px 7px 10px; color: #f1ecff; background: radial-gradient(135% 175% at 50% 142%, rgba(139, 92, 246, 0.62), rgba(16, 11, 38, 0.94) 68%); border-color: rgba(167, 139, 250, 0.3); box-shadow: 0 0 30px -8px rgba(124, 58, 237, 0.6); }
.is-zamp .zam-kick img { width: auto; height: 22px; }
.zamp-chip-ram { font-family: 'Sora', var(--font-head); font-weight: 700; font-size: 13px; color: #fff; }

.is-zamp .zam-rail { background: rgba(18, 15, 38, 0.72); border-color: rgba(148, 140, 220, 0.2); }
.is-zamp .zam-rail-i.is-on .zam-rail-nr { color: #12061f; background: linear-gradient(180deg, #ddd2ff, #c4b5fd); border-color: #ddd2ff; }
.is-zamp .zam-rail-i.is-done .zam-rail-nr { color: #12061f; background: #c4b5fd; border-color: #c4b5fd; }

.is-zamp .zam-step.is-open { background: linear-gradient(160deg, rgba(34, 24, 68, 0.86), rgba(10, 9, 24, 0.95)); border-color: rgba(167, 139, 250, 0.4); box-shadow: 0 0 40px -16px rgba(124, 58, 237, 0.8); }
.is-zamp .zam-step.is-done { background: rgba(18, 15, 38, 0.6); border-color: rgba(148, 140, 220, 0.18); }
.is-zamp .zam-step.is-open .zam-step-nr { color: #12061f; background: linear-gradient(180deg, #ddd2ff, #c4b5fd); border-color: #ddd2ff; }
.is-zamp .zam-step.is-done .zam-step-nr { color: #12061f; background: #c4b5fd; border-color: #c4b5fd; }
.is-zamp .zam-step-edit { color: #ddd2ff; background: rgba(124, 58, 237, 0.2); border-color: rgba(167, 139, 250, 0.35); }
.is-zamp .zam-step.is-done .zam-step-head:hover .zam-step-edit { background: rgba(124, 58, 237, 0.32); }
.is-zamp .zam-next, .is-zamp .zam-sum-cta { color: #12061f; background: linear-gradient(180deg, #ddd2ff, #c4b5fd); border-color: #ddd2ff; box-shadow: 0 16px 38px -16px rgba(167, 139, 250, 1); }
.is-zamp .zam-next:focus-visible, .is-zamp .zam-back:focus-visible, .is-zamp .zam-step-head:focus-visible { outline-color: #c4b5fd; }

.is-zamp .zam-sep { background: linear-gradient(90deg, transparent, rgba(167, 139, 250, 0.26) 16%, rgba(167, 139, 250, 0.26) 84%, transparent); }
.is-zamp .zam-pack { background: rgba(16, 14, 34, 0.6); border-color: rgba(148, 140, 220, 0.16); }
.is-zamp .zam-pack:hover { border-color: rgba(167, 139, 250, 0.4); }
.is-zamp .zam-pack.is-on { background: radial-gradient(130% 170% at 50% 140%, rgba(124, 58, 237, 0.45), rgba(14, 11, 32, 0.94) 66%); border-color: rgba(167, 139, 250, 0.6); }
.zamp-ram { display: grid; place-items: center; width: 46px; height: 46px; flex-shrink: 0; border-radius: 14px; background: rgba(124, 58, 237, 0.2); border: 1px solid rgba(167, 139, 250, 0.34); line-height: 1; }
.zamp-ram b { font-family: 'Sora', var(--font-head); font-weight: 800; font-size: 16px; color: #fff; }
.zamp-ram small { font-family: var(--font-mono); font-size: 8.5px; font-weight: 700; letter-spacing: 0.08em; color: #b9aee8; }
.zamp-top { margin-left: 8px; padding: 2px 8px; border-radius: 999px; font-family: var(--font-mono); font-style: normal; font-size: 9px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: #12061f; background: #c4b5fd; }
.is-zamp .zam-pack-price b { color: #fff; }

.zamp-info { display: flex; align-items: center; gap: 12px; padding: 13px 15px; border-radius: 15px; background: rgba(18, 15, 38, 0.6); border: 1px solid rgba(148, 140, 220, 0.18); }
.zamp-info-ico { display: grid; place-items: center; width: 38px; height: 38px; flex-shrink: 0; border-radius: 12px; color: #ddd2ff; background: rgba(124, 58, 237, 0.24); border: 1px solid rgba(167, 139, 250, 0.4); }
.zamp-info-ico svg { width: 18px; height: 18px; }

.zamp-search { display: flex; align-items: center; gap: 11px; height: 48px; padding: 0 14px 0 15px; border-radius: 14px; background: rgba(12, 10, 28, 0.72); border: 1px solid rgba(148, 140, 220, 0.22); cursor: text; transition: border-color 0.3s ease, box-shadow 0.35s ease; }
.zamp-search:focus-within { border-color: rgba(167, 139, 250, 0.6); box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.16); }
.zamp-search-ico { display: grid; place-items: center; flex-shrink: 0; color: #8f89b5; transition: color 0.3s ease; }
.zamp-search-ico svg { width: 17px; height: 17px; }
.zamp-search:focus-within .zamp-search-ico { color: #c4b5fd; }
.zamp-search input { flex: 1; min-width: 0; font-family: inherit; font-size: 14px; color: #f2f0ff; background: none; border: 0; outline: none; }
.zamp-search input::placeholder { color: #7d77a6; }
.zamp-search-count { flex-shrink: 0; padding: 4px 10px; border-radius: 999px; font-family: var(--font-mono); font-size: 10px; font-weight: 700; color: #b9aee8; background: rgba(124, 58, 237, 0.18); border: 1px solid rgba(167, 139, 250, 0.28); }
.zamp-empty { margin: 0; padding: 14px 16px; border-radius: 14px; font-size: 12.5px; line-height: 1.5; color: #b9aee8; background: rgba(124, 58, 237, 0.12); border: 1px dashed rgba(167, 139, 250, 0.34); }
.zamp-games { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 8px; max-height: 262px; overflow-y: auto; padding-right: 4px; }
.zamp-games::-webkit-scrollbar { width: 6px; }
.zamp-games::-webkit-scrollbar-thumb { border-radius: 3px; background: rgba(167, 139, 250, 0.3); }
.zamp-game { position: relative; display: flex; flex-direction: column; gap: 7px; padding: 8px; border-radius: 14px; text-align: left; background: rgba(16, 14, 34, 0.6); border: 1px solid rgba(148, 140, 220, 0.14); transition: border-color 0.3s ease, background 0.35s ease, opacity 0.3s ease; }
.zamp-game img { width: 100%; height: auto; aspect-ratio: 16 / 9; border-radius: 8px; object-fit: cover; }
.zamp-game-txt { display: flex; flex-direction: column; gap: 1px; min-width: 0; padding: 0 2px 2px; }
.zamp-game-txt b { font-size: 12.5px; font-weight: 600; color: var(--ice); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.zamp-game-txt small { font-size: 10.5px; color: #8f89b5; }
.zamp-game:hover { border-color: rgba(167, 139, 250, 0.4); }
.zamp-game.is-on { background: radial-gradient(130% 170% at 50% 140%, rgba(124, 58, 237, 0.42), rgba(14, 11, 32, 0.94) 66%); border-color: rgba(167, 139, 250, 0.6); }
.zamp-game.is-off { opacity: 0.34; cursor: not-allowed; }
.zamp-game-mark { position: absolute; right: 14px; top: 14px; display: grid; place-items: center; width: 22px; height: 22px; border-radius: 50%; color: #12061f; background: #c4b5fd; opacity: 0; transform: scale(0.7); transition: opacity 0.3s ease, transform 0.3s var(--ease); }
.zamp-game-mark svg { width: 12px; height: 12px; }
.zamp-game.is-on .zamp-game-mark { opacity: 1; transform: none; }

.is-zamp .zam-per { background: rgba(16, 14, 34, 0.6); border-color: rgba(148, 140, 220, 0.16); }
.is-zamp .zam-per b { font-family: var(--font-body); font-size: 13.5px; }
.is-zamp .zam-per.is-on { background: radial-gradient(130% 170% at 50% 140%, rgba(124, 58, 237, 0.5), rgba(14, 11, 32, 0.94) 66%); border-color: rgba(167, 139, 250, 0.6); }
.is-zamp .zam-per.is-on small { color: #ddd2ff; }
.zamp-per-price { margin-top: 3px; font-family: 'Sora', var(--font-head); font-style: normal; font-size: 13px; font-weight: 700; color: #c9c3ea; }
.zamp-per-price s { margin-right: 7px; font-weight: 600; font-size: 12px; color: #7d77a6; text-decoration-thickness: 1px; text-underline-offset: 2px; }
.is-zamp .zam-per.is-on .zamp-per-price { color: #fff; }
.is-zamp .zam-per { padding: 12px 8px; gap: 1px; }
.is-zamp .zam-pers { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.is-zamp .zam-tab.is-on { background: radial-gradient(130% 170% at 50% 140%, rgba(124, 58, 237, 0.55), rgba(14, 11, 32, 0.94) 66%); border-color: rgba(167, 139, 250, 0.55); }
.is-zamp .zam-input input:focus { border-color: rgba(167, 139, 250, 0.55); box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.16); }
.is-zamp .zam-note { color: #ddd2ff; background: rgba(124, 58, 237, 0.14); border-color: rgba(167, 139, 250, 0.32); }
.is-zamp .zam-note svg { color: #c4b5fd; }
.is-zamp .zam-check input:checked + .zam-box { color: #12061f; background: #c4b5fd; border-color: #c4b5fd; }
.is-zamp .zam-check a { color: #ddd2ff; }
.is-zamp .zam-soc--dc { border-color: rgba(88, 101, 242, 0.5); }

.zamp-card { display: flex; flex-direction: column; gap: 14px; padding: 20px; border-radius: 18px; background: linear-gradient(160deg, rgba(34, 24, 68, 0.8), rgba(10, 9, 24, 0.94)); border: 1px solid rgba(167, 139, 250, 0.34); }
.zamp-card-head { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.zamp-card-marks { display: inline-flex; align-items: center; gap: 10px; }
.zamp-card-marks img { height: 19px; width: auto; }
.zamp-card-safe { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; color: #8f89b5; }
.zamp-card-safe svg { width: 15px; height: 15px; color: #c4b5fd; }

.is-zamp .zam-code { border-color: rgba(110, 231, 183, 0.4); }
.is-zamp .zam-code-del { background: rgba(148, 140, 220, 0.1); border-color: rgba(148, 140, 220, 0.22); }
.zam-row--note { font-size: 12px; color: #8f89b5; }
.is-zamp .zam-sum { background: linear-gradient(160deg, rgba(34, 24, 68, 0.9), rgba(10, 9, 24, 0.96)); border-color: rgba(148, 140, 220, 0.24); }
.is-zamp .zam-sum::before { background: radial-gradient(closest-side, rgba(124, 58, 237, 0.34), transparent 70%); }
.is-zamp .zam-sum-ico { display: grid; place-items: center; width: auto; min-width: 54px; height: 54px; padding: 0 12px; background: rgba(124, 58, 237, 0.16); border-color: rgba(167, 139, 250, 0.34); }
.is-zamp .zam-sum-ico img { width: auto; height: 24px; }
.is-zamp .zam-sum-name b { white-space: nowrap; font-size: 17px; }
.is-zamp .zam-sum-head { gap: 11px; }
.is-zamp .zam-card { background: rgba(18, 15, 38, 0.6); border-color: rgba(148, 140, 220, 0.18); }
.is-zamp .zam-card--promo { background: linear-gradient(100deg, rgba(124, 58, 237, 0.26), rgba(12, 10, 28, 0.9) 70%); border: 1px dashed rgba(167, 139, 250, 0.45); }
.is-zamp .zam-card-ico { color: #ddd2ff; background: rgba(124, 58, 237, 0.24); border-color: rgba(167, 139, 250, 0.4); }
.is-zamp .zam-card--dc .zam-card-ico { color: #c9cdff; background: rgba(88, 101, 242, 0.3); border-color: rgba(140, 150, 255, 0.45); }

@media (max-width: 1080px) { .zamp-games { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
@media (max-width: 720px) { .zamp-games { grid-template-columns: repeat(3, minmax(0, 1fr)); max-height: 250px; } }
@media (max-width: 480px) { .zamp-games { grid-template-columns: repeat(2, minmax(0, 1fr)); max-height: 270px; } }

/* =========================================================
   VPS I VDS
   ========================================================= */
.vps { position: relative; z-index: 2; padding: calc(var(--promo-h) + var(--top-h) + 44px) 0 0; isolation: isolate; }
.vps-bg { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: -1; }
.vps-bg i { position: absolute; display: block; }
.vps-bg-glow { left: -10%; top: -20%; width: min(900px, 70%); aspect-ratio: 3 / 2; border-radius: 50%; background: radial-gradient(closest-side, rgba(47, 123, 255, 0.22), transparent 70%); filter: blur(70px); }
.vps-in { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.vps-kick { display: inline-flex; align-self: flex-start; padding: 6px 13px; border-radius: 999px; font-family: var(--font-mono); font-size: 10.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #bfe6ff; background: rgba(47, 123, 255, 0.14); border: 1px solid rgba(94, 200, 255, 0.3); }

.vps-head { display: flex; flex-direction: column; gap: 14px; max-width: 680px; margin-bottom: 30px; }
.vps-head h1 { margin: 0; font-family: var(--font-head); font-weight: 600; font-size: clamp(26px, 3.28vw, 37.5px); line-height: 1; letter-spacing: -0.035em; color: #fff; }
.vps-head h1 span { color: var(--sky); }
.vps-head p { margin: 0; max-width: 620px; font-size: 15px; line-height: 1.6; color: var(--text-2); }

.vps-gates { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.vps-gate { position: relative; display: flex; flex-direction: column; gap: 15px; padding: 26px; border-radius: 24px; overflow: hidden; text-align: left; background: linear-gradient(160deg, rgba(18, 24, 44, 0.7), rgba(9, 10, 22, 0.94)); border: 1px solid rgba(148, 178, 255, 0.18); transition: border-color 0.35s ease, transform 0.3s var(--ease), box-shadow 0.4s ease; }
.vps-gate:hover { transform: translateY(-2px); }
.vps-gate-bg { position: absolute; inset: 0; pointer-events: none; opacity: 0.9; }
.vps-gate--vps .vps-gate-bg { background: radial-gradient(120% 130% at 8% 0%, rgba(47, 123, 255, 0.3), transparent 62%), repeating-linear-gradient(0deg, rgba(148, 178, 255, 0.05) 0 1px, transparent 1px 26px), repeating-linear-gradient(90deg, rgba(148, 178, 255, 0.05) 0 1px, transparent 1px 26px); -webkit-mask-image: radial-gradient(95% 85% at 12% 0%, #000, transparent 74%); mask-image: radial-gradient(95% 85% at 12% 0%, #000, transparent 74%); }
.vps-gate--vds .vps-gate-bg { background: radial-gradient(90% 90% at 100% 0%, rgba(34, 211, 238, 0.3), transparent 62%), linear-gradient(150deg, rgba(8, 46, 64, 0.6), transparent 58%); }
.vps-gate--vps.is-on { border-color: rgba(94, 200, 255, 0.6); box-shadow: 0 0 60px -26px rgba(47, 123, 255, 0.95); }
.vps-gate--vds.is-on { border-color: rgba(34, 211, 238, 0.55); box-shadow: 0 0 60px -26px rgba(34, 211, 238, 0.85); }
.vps-gate:focus-visible { outline: 2px solid var(--sky); outline-offset: 3px; }

.vps-gate-head { position: relative; display: flex; align-items: center; gap: 12px; }
.vps-gate-head b { font-family: var(--font-head); font-weight: 600; font-size: 24.5px; letter-spacing: -0.03em; color: #fff; }
.vps-gate-tag { padding: 5px 11px; border-radius: 999px; font-family: var(--font-mono); font-size: 9.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: #06121f; background: var(--sky); }
.vps-gate--vds .vps-gate-tag { background: #22d3ee; }
.vps-gate-pick { margin-left: auto; display: grid; place-items: center; width: 26px; height: 26px; flex-shrink: 0; border-radius: 50%; border: 2px solid rgba(148, 178, 255, 0.34); transition: border-color 0.3s ease, background 0.3s ease; }
.vps-gate-pick i { display: block; width: 12px; height: 12px; border-radius: 50%; background: var(--sky); opacity: 0; transform: scale(0.4); transition: opacity 0.25s ease, transform 0.3s var(--ease); }
.vps-gate--vds .vps-gate-pick i { background: #22d3ee; }
.vps-gate:hover .vps-gate-pick { border-color: rgba(148, 178, 255, 0.6); }
.vps-gate--vps.is-on .vps-gate-pick { border-color: var(--sky); }
.vps-gate--vds.is-on .vps-gate-pick { border-color: #22d3ee; }
.vps-gate.is-on .vps-gate-pick i { opacity: 1; transform: none; }
.vps-gate-lead { position: relative; margin: 0; max-width: 400px; font-size: 13.5px; line-height: 1.6; color: var(--text-2); }
.vps-gate-list { position: relative; display: flex; flex-direction: column; gap: 8px; }
.vps-gate-list span { display: flex; align-items: center; gap: 10px; font-size: 12.5px; color: #c3cee2; }
.vps-gate-list svg { width: 14px; height: 14px; flex-shrink: 0; color: var(--sky); }
.vps-gate--vds .vps-gate-list svg { color: #22d3ee; }
.vps-gate-foot { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-top: 14px; border-top: 1px solid rgba(148, 178, 255, 0.12); }
.vps-gate-od { display: flex; flex-direction: column; gap: 1px; }
.vps-gate-btn { display: inline-grid; place-items: center; min-width: 152px; padding: 13px 22px; border-radius: 13px; font-size: 13.5px; font-weight: 700; color: #06121f; background: var(--sky); border: 1px solid var(--sky); box-shadow: 0 12px 30px -16px rgba(94, 200, 255, 0.9); transition: color 0.3s ease, background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease; }
.vps-gate--vds .vps-gate-btn { background: #22d3ee; border-color: #22d3ee; box-shadow: 0 12px 30px -16px rgba(34, 211, 238, 0.9); }
.vps-gate-btn i { grid-area: 1 / 1; display: inline-flex; align-items: center; gap: 8px; font-style: normal; transition: opacity 0.28s ease; }
.vps-gate-btn i svg { width: 12px; height: 12px; }
.vps-gate-btn [data-picked] { opacity: 0; }
.vps-gate:not(.is-on):hover .vps-gate-btn { filter: brightness(1.08); }
.vps-gate.is-on .vps-gate-btn { color: #93a2be; background: rgba(148, 178, 255, 0.07); border-color: rgba(148, 178, 255, 0.2); box-shadow: none; }
.vps-gate.is-on .vps-gate-btn [data-pick] { opacity: 0; }
.vps-gate.is-on .vps-gate-btn [data-picked] { opacity: 1; }
.vps-gate-foot small { font-size: 11.5px; color: #8b98b2; }
.vps-gate-foot b { font-family: 'Sora', var(--font-head); font-weight: 700; font-size: 24px; color: #fff; }

.vps-plans { position: relative; z-index: 2; padding: 56px 0 0; }
.vps-plans-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 18px; }
.vps-plans-title { display: flex; flex-direction: column; gap: 5px; }
.vps-plans-title b { font-family: var(--font-head); font-weight: 600; font-size: 19.5px; line-height: 1; color: #fff; }
.vps-plans-title small { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-2); }
.vps-flag { width: 16px; height: 11px; flex-shrink: 0; border-radius: 2px; box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.16) inset; }
.vps-pers { display: grid; grid-template-columns: repeat(5, 92px); gap: 8px; flex-shrink: 0; }
.vps-per { display: flex; flex-direction: column; align-items: center; gap: 2px; padding: 10px 6px; border-radius: 12px; background: rgba(10, 15, 27, 0.6); border: 1px solid rgba(148, 178, 255, 0.14); transition: background 0.35s ease, border-color 0.35s ease; }
.vps-per:hover { border-color: rgba(94, 200, 255, 0.3); }
.vps-per b { font-family: 'Sora', var(--font-head); font-weight: 700; font-size: 13.5px; color: #c3cee2; }
.vps-per small { font-family: var(--font-mono); font-size: 9px; font-weight: 700; color: #5b647d; }
.vps-per.is-on { background: radial-gradient(130% 170% at 50% 140%, rgba(47, 123, 255, 0.5), rgba(10, 18, 36, 0.94) 66%); border-color: rgba(94, 200, 255, 0.55); }
.vps-per.is-on b { color: #fff; }
.vps-per.is-on small { color: #bfe6ff; }

.vps-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.vps-grid--vds { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.vps [hidden] { display: none !important; }
.vps-plans [hidden] { display: none !important; }
.vps-card { position: relative; display: flex; flex-direction: column; gap: 14px; padding: 20px; border-radius: 20px; background: linear-gradient(160deg, rgba(18, 24, 44, 0.6), rgba(9, 10, 22, 0.92)); border: 1px solid rgba(148, 178, 255, 0.14); transition: border-color 0.35s ease, transform 0.3s var(--ease); }
.vps-card:hover { border-color: rgba(94, 200, 255, 0.34); transform: translateY(-2px); }
.vps-card.is-top { background: linear-gradient(160deg, rgba(23, 42, 86, 0.9), rgba(9, 12, 24, 0.96)); border-color: rgba(94, 200, 255, 0.6); box-shadow: 0 0 46px -16px rgba(47, 123, 255, 0.85); }
.vps-card-badge { position: absolute; right: 16px; top: 16px; padding: 3px 9px; border-radius: 999px; font-family: var(--font-mono); font-size: 9px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: #06121f; background: var(--sky); }
.vps-card-head { display: flex; flex-direction: column; gap: 3px; }
.vps-card-head small { font-family: var(--font-mono); font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: #7f8db0; }
.vps-card-head b { display: flex; align-items: baseline; gap: 7px; font-family: 'Sora', var(--font-head); font-weight: 800; font-size: 32px; line-height: 1; color: #fff; }
.vps-card-head b i { font-family: var(--font-body); font-style: normal; font-size: 12.5px; font-weight: 500; color: #8b98b2; }
.vps-card-specs { display: flex; flex-direction: column; gap: 7px; font-size: 12.5px; color: #8b98b2; }
.vps-card-specs span { display: flex; align-items: center; gap: 9px; }
.vps-card-specs svg { width: 14px; height: 14px; flex-shrink: 0; color: var(--sky); }
.vps-card-where { display: flex; flex-direction: column; gap: 6px; padding-top: 11px; border-top: 1px dashed rgba(148, 178, 255, 0.12); font-size: 12px; color: #c3cee2; }
.vps-card-where span { display: flex; align-items: center; gap: 9px; }
.vps-card-where svg { width: 14px; height: 14px; flex-shrink: 0; color: #7f8db0; }
.vps-card-where .vps-flag { width: 14px; height: 10px; }
.vps-grid--vds .vps-card-where svg:not(.vps-flag) { color: #22d3ee; }
.vps-card-buy { display: flex; flex-direction: column; gap: 10px; margin-top: auto; padding-top: 13px; border-top: 1px solid rgba(148, 178, 255, 0.12); }
.vps-card-price { display: flex; flex-direction: column; gap: 3px; white-space: nowrap; }
.vps-card-old { display: flex; align-items: center; gap: 8px; }
.vps-card-old s { font-size: 12.5px; color: #6b7590; font-variant-numeric: tabular-nums; }
.vps-card-old i { padding: 2px 7px; border-radius: 999px; font-family: var(--font-mono); font-style: normal; font-size: 9px; font-weight: 700; letter-spacing: 0.06em; color: #bfe6ff; background: rgba(47, 123, 255, 0.18); border: 1px solid rgba(94, 200, 255, 0.45); }
.vps-grid--vds .vps-card-old i { color: #c6f6fd; background: rgba(34, 211, 238, 0.16); border-color: rgba(34, 211, 238, 0.5); }
.vps-card-now { display: flex; align-items: baseline; gap: 6px; }
.vps-gate-od s { margin-left: 4px; color: #6b7590; }
.vps-card-price b { font-family: 'Sora', var(--font-head); font-weight: 700; font-size: 21px; color: #fff; font-variant-numeric: tabular-nums; }
.vps-card-price small { font-size: 11.5px; color: #8b98b2; }
.vps-card-btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 18px; border-radius: 12px; font-size: 13.5px; font-weight: 700; color: #eaf4ff; background: rgba(148, 178, 255, 0.08); border: 1px solid rgba(148, 178, 255, 0.22); transition: background 0.3s ease, border-color 0.3s ease, color 0.25s ease; }
.vps-card-btn:hover { color: #fff; background: rgba(47, 123, 255, 0.24); border-color: rgba(94, 200, 255, 0.5); }
.vps-card-btn svg { transition: transform 0.3s var(--ease); }
.vps-card-btn:hover svg { transform: translateX(3px); }
.vps-card.is-top .vps-card-btn { color: #eaf4ff; background: var(--blue-bg); border-color: rgba(94, 200, 255, 0.6); box-shadow: var(--blue-shadow); }
.vps-grid--vds .vps-card-specs svg, .vps-grid--vds .vps-card-badge { color: #22d3ee; }
.vps-grid--vds .vps-card-badge { color: #06121f; background: #22d3ee; }
.vps-grid--vds .vps-card.is-top { border-color: rgba(34, 211, 238, 0.55); box-shadow: 0 0 46px -16px rgba(34, 211, 238, 0.8); }
@keyframes vpsWjazd { from { opacity: 0; transform: translateY(14px) scale(0.975); } to { opacity: 1; transform: none; } }
.vps-grid.is-swap .vps-card { animation: vpsWjazd 0.44s cubic-bezier(0.22, 1, 0.36, 1) backwards; }

.vps-sec-head { display: flex; flex-direction: column; gap: 8px; max-width: 640px; margin-bottom: 26px; }
.vps-sec-head h2, .vps-os-txt h2 { margin: 0; font-family: var(--font-head); font-weight: 600; font-size: clamp(21.5px, 2.05vw, 28px); line-height: 1.05; letter-spacing: -0.03em; color: #fff; }
.vps-sec-head p, .vps-os-txt p { margin: 0; font-size: 14.5px; line-height: 1.6; color: var(--text-2); }
.vps-diff { position: relative; z-index: 2; padding: 88px 0 0; }
.vps-table { border-radius: 22px; overflow: hidden; background: linear-gradient(160deg, rgba(18, 24, 44, 0.5), rgba(9, 10, 22, 0.9)); border: 1px solid rgba(148, 178, 255, 0.16); }
.vps-row { display: grid; grid-template-columns: 210px minmax(0, 1fr) minmax(0, 1fr); align-items: center; border-top: 1px solid rgba(148, 178, 255, 0.12); }
.vps-row:first-child { border-top: 0; }
.vps-row--head { align-items: end; border-bottom: 1px solid rgba(148, 178, 255, 0.16); }
.vps-topic { display: flex; align-items: center; padding: 16px 18px 16px 22px; }
.vps-topic b { font-size: 13.5px; font-weight: 700; color: #fff; }
.vps-old, .vps-new { display: flex; align-items: center; height: 100%; font-size: 13px; line-height: 1.45; }
.vps-old { padding: 16px 20px 16px 0; color: #8b98b2; }
.vps-new { padding: 16px 22px; color: var(--ice); background: linear-gradient(90deg, rgba(34, 211, 238, 0.12), rgba(34, 211, 238, 0.05)); }
.vps-row--head .vps-old, .vps-row--head .vps-new { flex-direction: column; align-items: flex-start; gap: 2px; padding-top: 18px; padding-bottom: 14px; }
.vps-row--head .vps-new { background: linear-gradient(90deg, rgba(34, 211, 238, 0.18), rgba(34, 211, 238, 0.07)); }
.vps-row--head b { display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-head); font-weight: 600; font-size: 14px; }
.vps-row--head .vps-old b { color: #8b98b2; }
.vps-row--head .vps-new b { color: #fff; }
.vps-row--head .vps-new b i { padding: 3px 9px; border-radius: 999px; font-family: var(--font-mono); font-style: normal; font-size: 9px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: #06121f; background: #22d3ee; }
.vps-row--head small { font-size: 12px; color: #6b7590; }
.vps-row--head .vps-new small { color: #a5e9f5; }

.vps-os { position: relative; z-index: 2; padding: 88px 0 0; }
.vps-os-cols { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr); gap: 48px; align-items: center; }
.vps-os-txt { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }
.vps-os-perks { display: flex; flex-direction: column; gap: 11px; margin-top: 4px; }
.vps-os-perks span { display: flex; align-items: center; gap: 11px; font-size: 13px; color: #c3cee2; }
.vps-os-perks svg { width: 17px; height: 17px; flex-shrink: 0; color: var(--sky); }
.vps-os-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.vps-os-item { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; padding: 22px 14px; border-radius: 18px; background: rgba(13, 19, 34, 0.6); border: 1px solid rgba(148, 178, 255, 0.12); transition: border-color 0.35s ease, background 0.35s ease, transform 0.3s var(--ease); }
.vps-os-item:hover { border-color: rgba(94, 200, 255, 0.3); background: rgba(16, 24, 42, 0.72); transform: translateY(-2px); }
.vps-os-item img { height: 34px; width: auto; max-width: 100%; object-fit: contain; filter: grayscale(1) brightness(1.5); opacity: 0.8; transition: filter 0.35s ease, opacity 0.35s ease; }
.vps-os-item:hover img { filter: none; opacity: 1; }
.vps-os-item b { font-size: 12.5px; font-weight: 600; color: #c3cee2; }
.vps-os-item--iso { grid-column: 1 / -1; flex-direction: row; align-items: center; justify-content: flex-start; gap: 14px; padding: 15px 20px; text-align: left; background: linear-gradient(120deg, rgba(23, 42, 86, 0.6), rgba(13, 19, 34, 0.7) 62%); border-style: dashed; border-color: rgba(148, 178, 255, 0.22); }
.vps-os-item--iso:hover { border-color: rgba(94, 200, 255, 0.42); }
.vps-os-iso-ico { display: grid; place-items: center; width: 38px; height: 38px; flex-shrink: 0; border-radius: 13px; background: rgba(47, 123, 255, 0.16); border: 1px solid rgba(94, 200, 255, 0.28); }
.vps-os-iso-ico svg { width: 20px; height: 20px; color: var(--sky); }
.vps-os-iso-txt { display: flex; flex-direction: column; gap: 3px; }
.vps-os-iso-txt b { font-size: 13.5px; font-weight: 700; color: #fff; }
.vps-os-iso-txt small { font-size: 12.5px; line-height: 1.5; color: #8b98b2; }

@media (max-width: 1180px) {
    .vps-grid--vds { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 980px) {
    .vps-gates { grid-template-columns: minmax(0, 1fr); }
    .vps-plans-head { flex-direction: column; align-items: stretch; gap: 16px; }
    .vps-pers { grid-template-columns: repeat(5, minmax(0, 1fr)); }
    .vps-os-cols { grid-template-columns: minmax(0, 1fr); gap: 30px; }
}
@media (max-width: 860px) {
    .vps-grid, .vps-grid--vds { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .vps-row.vps-row--head { display: none; }
    .vps-row { grid-template-columns: minmax(0, 1fr); padding: 16px 16px 18px; }
    .vps-topic { padding: 0 0 12px; }
    .vps-old, .vps-new { align-items: flex-start; gap: 12px; padding: 11px 13px; border-radius: 13px; }
    .vps-old { margin-bottom: 8px; background: rgba(20, 22, 40, 0.6); border: 1px solid rgba(148, 178, 255, 0.12); }
    .vps-new { background: linear-gradient(120deg, rgba(34, 211, 238, 0.2), rgba(14, 20, 32, 0.9) 70%); border: 1px solid rgba(34, 211, 238, 0.35); }
    .vps-old::before, .vps-new::before { content: attr(data-col); flex-shrink: 0; font-family: var(--font-mono); font-size: 9px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding-top: 3px; }
    .vps-old::before { color: #6b7590; }
    .vps-new::before { color: #22d3ee; }
}
@media (max-width: 720px) {
    .vps { padding-top: calc(var(--promo-h) + var(--top-h) + 30px); }
    .vps-in { padding-left: 18px; padding-right: 18px; }
    .vps-grid, .vps-grid--vds { grid-template-columns: minmax(0, 1fr); }
    .vps-pers { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .vps-gate-foot { flex-wrap: wrap; }
    .vps-gate-btn { flex: 1 1 100%; }
    .vps-os-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .vps-diff, .vps-os { padding-top: 64px; }
}
@media (prefers-reduced-motion: reduce) {
    .vps-gate:hover, .vps-card:hover, .vps-os-item:hover { transform: none; }
    .vps-grid.is-swap .vps-card { animation: none; }
}
/* logo gry w rogu karty menu Oferta */
.dtile-logo { position: absolute; top: 10px; right: 10px; z-index: 2; width: 36px; height: 36px; border-radius: 10px; object-fit: cover; border: 1px solid rgba(255, 255, 255, 0.18); box-shadow: 0 8px 20px -6px rgba(0, 0, 0, 0.7); transition: transform 0.3s var(--ease); }
.dtile:hover .dtile-logo { transform: scale(1.06); }

/* ---------- Loader między stronami ---------- */
.pl { position: fixed; inset: 0; z-index: 5000; display: grid; place-items: center; background: var(--bg); opacity: 1; visibility: visible; transition: opacity 0.22s ease, visibility 0s linear 0s; animation: plZapas 0.3s ease 6s forwards; }
.pl.is-done { opacity: 0; visibility: hidden; transition: opacity 0.35s ease, visibility 0s linear 0.35s; animation: none; }
.pl-kolko { width: 42px; height: 42px; border-radius: 50%; border: 3px solid rgba(148, 178, 255, 0.16); border-top-color: var(--sky); animation: plObrot 0.75s linear infinite; }
@keyframes plObrot { to { transform: rotate(360deg); } }
@keyframes plZapas { to { opacity: 0; visibility: hidden; } }
@media (prefers-reduced-motion: reduce) { .pl-kolko { animation-duration: 1.6s; } }

/* =========================================================
   OFERTA MINECRAFT
   ========================================================= */
.mc { position: relative; z-index: 2; padding: calc(var(--promo-h) + var(--top-h) + 16px) 0 72px; overflow: hidden; isolation: isolate; }
.mc-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.5; pointer-events: none; }
.mc-veil { position: absolute; inset: 0; pointer-events: none; background: linear-gradient(100deg, rgba(6, 9, 18, 0.94) 26%, rgba(6, 9, 18, 0.66) 52%, rgba(6, 9, 18, 0.9) 88%), linear-gradient(180deg, rgba(6, 9, 18, 0.72), transparent 22%, transparent 68%, var(--bg)); }
.mc-in { position: relative; z-index: 1; display: grid; grid-template-columns: 404px minmax(0, 1fr); gap: 28px; align-items: center; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }

/* --- lewa kolumna --- */
.mc-left { display: flex; flex-direction: column; gap: 18px; min-width: 0; }
.mc-kicker { display: inline-flex; align-items: center; gap: 10px; align-self: flex-start; margin: 0; padding: 7px 16px 7px 8px; border-radius: 999px; font-family: var(--font-head); font-size: 12px; font-weight: 600; letter-spacing: 0.02em; color: #fff; background: rgba(9, 14, 26, 0.72); border: 1px solid rgba(148, 178, 255, 0.2); }
.mc-kicker img { width: 22px; height: 22px; }

.mc-step { display: flex; flex-direction: column; gap: 12px; }
.mc-step-head { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 11px; min-width: 0; }
.mc-step-head > i { display: grid; place-items: center; width: 26px; height: 26px; flex-shrink: 0; border-radius: 50%; font-family: "JetBrains Mono", ui-monospace, Consolas, monospace; font-style: normal; font-weight: 700; font-size: 11.5px; color: #eaf4ff; background: radial-gradient(120% 150% at 50% 130%, rgba(47, 123, 255, 0.7), rgba(12, 28, 68, 0.95) 64%); border: 1px solid rgba(94, 200, 255, 0.5); }
.mc-step-head > b { font-family: var(--font-head); font-weight: 600; font-size: 15.5px; white-space: nowrap; color: #fff; }
.mc-step-head > small { font-size: 12px; white-space: nowrap; color: #7f8db0; }
.mc-step-head em { font-style: normal; font-weight: 600; color: #b7c3d8; }

.mc-lines { display: flex; flex-direction: column; gap: 12px; }
.mc-line { --t: 94 200 255; --t-deep: 40 68 130; --t-glow: 47 123 255; position: relative; display: flex; align-items: center; gap: 15px; width: 100%; padding: 17px 18px; border-radius: 19px; overflow: hidden; text-align: left; background: linear-gradient(150deg, rgb(var(--t-deep) / 0.34), rgba(11, 16, 28, 0.92)); border: 1px solid rgb(var(--t) / 0.2); transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.4s ease, transform 0.3s var(--ease); }
.mc-line[data-line="budget"] { --t: 92 224 143; --t-deep: 24 78 56; --t-glow: 34 197 94; }
.mc-line[data-line="premium"] { --t: 190 152 255; --t-deep: 66 48 122; --t-glow: 139 92 246; }
.mc-line:hover { border-color: rgb(var(--t) / 0.4); background: linear-gradient(150deg, rgb(var(--t-deep) / 0.52), rgba(11, 16, 28, 0.92)); transform: translateY(-2px); }
.mc-line.is-on { background: linear-gradient(150deg, rgb(var(--t-deep) / 0.94), rgba(10, 16, 32, 0.96)); border-color: rgb(var(--t) / 0.62); box-shadow: 0 1px 0 rgba(255, 255, 255, 0.16) inset, 0 0 48px -16px rgb(var(--t-glow) / 0.95); }
.mc-line.is-on::before { content: ''; position: absolute; right: -50px; top: -70px; width: 210px; height: 210px; border-radius: 50%; background: radial-gradient(closest-side, rgb(var(--t-glow) / 0.42), transparent 72%); filter: blur(14px); pointer-events: none; animation: mcGlow 0.5s ease both; }
@keyframes mcGlow { from { opacity: 0; } to { opacity: 1; } }
.mc-line:focus-visible { outline: 2px solid rgb(var(--t)); outline-offset: 2px; }

.mc-line-ico { position: relative; display: block; width: 54px; height: 54px; flex-shrink: 0; border-radius: 15px; overflow: hidden; background: rgb(var(--t) / 0.08); border: 1px solid rgb(var(--t) / 0.2); transition: border-color 0.3s ease, background 0.3s ease; }
.mc-line-ico img { width: 100%; height: 100%; object-fit: cover; opacity: 0.86; transition: opacity 0.3s ease; }
.mc-line.is-on .mc-line-ico { background: rgb(var(--t) / 0.12); border-color: rgb(var(--t) / 0.38); }
.mc-line.is-on .mc-line-ico img { opacity: 1; }
.mc-line-body { position: relative; flex: 1; display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.mc-line-head { display: flex; align-items: center; gap: 9px; }
.mc-line-head b { font-family: var(--font-head); font-weight: 600; font-size: 20px; line-height: 1; color: #d5deee; transition: color 0.3s ease; }
.mc-line.is-on .mc-line-head b { color: #fff; }
.mc-line-foot { display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; }
.mc-line-from { font-size: 12px; white-space: nowrap; color: #7f8db0; }
.mc-line-from i { font-family: 'Sora', var(--font-head); font-style: normal; font-weight: 700; font-size: 14px; color: #b7c3d8; transition: color 0.3s ease; }
.mc-line.is-on .mc-line-from i { color: rgb(var(--t)); }
.mc-line-from small { font-size: 11.5px; color: #64748f; }
.mc-top { align-self: flex-start; flex-shrink: 0; padding: 3px 9px; border-radius: 999px; font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--sky); background: rgba(94, 200, 255, 0.12); border: 1px solid rgba(94, 200, 255, 0.34); }
.mc-line.is-on .mc-top { color: #0a1426; background: rgb(var(--t)); border-color: rgb(var(--t)); }
.mc-pack.is-on .mc-top { color: #0a1426; background: var(--sky); border-color: var(--sky); }
.mc-line-cpu { display: flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 600; color: #b7c3d8; transition: color 0.3s ease; }
.mc-line-cpu svg { width: 15px; height: 15px; flex-shrink: 0; color: rgb(var(--t) / 0.7); transition: color 0.3s ease; }
.mc-line.is-on .mc-line-cpu { color: #fff; }
.mc-line.is-on .mc-line-cpu svg { color: rgb(var(--t)); }
.mc-line-tag { flex-shrink: 0; padding: 3px 8px; border-radius: 999px; font-size: 9px; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; white-space: nowrap; color: #ff9ed4; background: rgba(255, 122, 198, 0.1); border: 1px solid rgba(255, 122, 198, 0.32); transition: color 0.3s ease, border-color 0.3s ease, background 0.3s ease; }
.mc-line.is-on .mc-line-tag { color: #ffd3ec; background: rgba(255, 122, 198, 0.2); border-color: rgba(255, 122, 198, 0.58); }
.mc-line-meta { display: flex; align-items: center; gap: 6px; font-family: "JetBrains Mono", ui-monospace, Consolas, monospace; font-size: 11.5px; color: #64748f; }
.mc-line-meta em { font-style: normal; }
.mc-flag { width: 16px; height: 11px; flex-shrink: 0; border-radius: 2px; box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.16) inset; }
.mc-sum-specs dd.is-loc { display: flex; align-items: center; gap: 7px; white-space: nowrap; }

.mc-line-mark { margin-left: auto; display: grid; place-items: center; width: 26px; height: 26px; flex-shrink: 0; border-radius: 50%; color: transparent; background: rgb(var(--t) / 0.07); border: 1px solid rgb(var(--t) / 0.26); transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease; }
.mc-line-mark svg { width: 14px; height: 14px; }
.mc-line.is-on .mc-line-mark { color: #0a1426; background: rgb(var(--t)); border-color: rgb(var(--t)); }


.mc-step-help { margin-left: auto; display: inline-flex; align-items: center; gap: 7px; flex-shrink: 0; font-size: 13px; font-weight: 600; white-space: nowrap; color: var(--sky); transition: color 0.3s ease; }
.mc-step-help svg { transition: transform 0.3s var(--ease); }
.mc-step-help:hover { color: #8fd8ff; }
.mc-step-help:hover svg { transform: translateX(3px); }
.mc-sep { display: block; height: 1px; margin: 14px 0 0; background: linear-gradient(90deg, transparent, rgba(148, 178, 255, 0.26) 18%, rgba(148, 178, 255, 0.26) 82%, transparent); }

/* kafelek Gamehost+ w kolumnie wyboru linii */
.mc-plus { position: relative; display: flex; flex-direction: column; gap: 11px; padding: 15px 17px 16px; border-radius: 17px; overflow: hidden; border: 1px solid rgba(167, 139, 250, 0.55); background: radial-gradient(90% 100% at 100% 0%, rgba(99, 60, 255, 0.5), transparent 60%), linear-gradient(160deg, rgba(36, 24, 72, 0.9), rgba(10, 12, 26, 0.96)); box-shadow: 0 0 0 1px rgba(124, 58, 237, 0.25), 0 0 30px -4px rgba(124, 58, 237, 0.55), 0 1px 0 rgba(255, 255, 255, 0.14) inset; animation: plusGlow 3.2s ease-in-out infinite; transition: border-color 0.35s ease, box-shadow 0.4s ease, transform 0.3s var(--ease); }
.mc-plus::after { content: ''; position: absolute; inset: 0; pointer-events: none; background: repeating-linear-gradient(0deg, rgba(180, 160, 255, 0.07) 0 1px, transparent 1px 22px), repeating-linear-gradient(90deg, rgba(180, 160, 255, 0.07) 0 1px, transparent 1px 22px); -webkit-mask-image: radial-gradient(80% 80% at 80% 0%, #000, transparent 70%); mask-image: radial-gradient(80% 80% at 80% 0%, #000, transparent 70%); }
.mc-plus:hover { border-color: rgba(196, 181, 253, 0.8); box-shadow: 0 0 0 1px rgba(124, 58, 237, 0.4), 0 0 44px -4px rgba(139, 92, 246, 0.75), 0 20px 40px -24px rgba(124, 58, 237, 0.8), 0 1px 0 rgba(255, 255, 255, 0.18) inset; transform: translateY(-2px); }
.mc-plus .dtile-plus-ring { border-radius: 17px; opacity: 0.85; animation: plusRing 6s linear infinite; }
.mc-plus .dtile-badge--plus { opacity: 1; top: 14px; right: 14px; padding: 4px 10px; font-size: 10px; }
.mc-plus .dtile-plus-glyph { right: 10px; top: -30px; font-size: 140px; }
.mc-plus:hover .dtile-plus-glyph { transform: rotate(8deg); }
.mc-plus-logo { position: relative; z-index: 2; height: 22px; width: auto; align-self: flex-start; }
.mc-plus-body { position: relative; z-index: 2; display: flex; flex-direction: column; gap: 4px; }
.mc-plus-body b { font-family: var(--font-head); font-weight: 600; font-size: 13px; line-height: 1.15; color: #fff; }
.mc-plus-body small { font-size: 12.5px; line-height: 1.45; color: #a3a0c8; }
.mc-plus-price { font-size: 12.5px; color: #c9c3ea; white-space: nowrap; }
.mc-plus-price b { font-family: 'Sora', var(--font-head); font-weight: 700; font-size: 15px; color: #fff; }
.mc-plus-body em { font-style: normal; font-weight: 700; white-space: nowrap; color: #a78bfa; }

@media (prefers-reduced-motion: reduce) {
    .mc-plus, .mc-plus .dtile-plus-ring { animation: none; }
    .mc-plus:hover { transform: none; }
}

.mc-help { display: flex; align-items: center; gap: 14px; padding: 15px 17px; border-radius: 17px; background: linear-gradient(160deg, rgba(22, 32, 56, 0.72), rgba(9, 13, 24, 0.9)); border: 1px solid rgba(148, 178, 255, 0.16); transition: border-color 0.35s ease, transform 0.3s var(--ease); }
.mc-help:hover { border-color: rgba(94, 200, 255, 0.34); transform: translateY(-2px); }
.mc-help-ico { display: grid; place-items: center; width: 42px; height: 42px; flex-shrink: 0; border-radius: 13px; color: var(--sky); background: rgba(94, 200, 255, 0.1); border: 1px solid rgba(94, 200, 255, 0.24); }
.mc-help-text { display: flex; flex-direction: column; gap: 3px; }
.mc-help-text b { font-family: var(--font-head); font-weight: 600; font-size: 13px; color: #fff; }
.mc-help-text small { font-size: 13px; color: #94a3bd; }
.mc-help-arrow { margin-left: auto; display: grid; place-items: center; width: 34px; height: 34px; flex-shrink: 0; border-radius: 11px; color: #b7c3d8; background: rgba(148, 178, 255, 0.07); border: 1px solid rgba(148, 178, 255, 0.16); transition: transform 0.3s var(--ease); }
.mc-help:hover .mc-help-arrow { transform: translateX(3px); }

/* --- panel --- */
.mc-panel { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) 284px; gap: 18px; align-items: start; padding: 20px; border-radius: 26px; overflow: hidden; background: linear-gradient(160deg, rgba(20, 29, 52, 0.92), rgba(8, 12, 22, 0.96)); border: 1px solid rgba(180, 200, 240, 0.16); box-shadow: 0 30px 80px -40px rgba(0, 0, 0, 0.9); }
.mc-panel::before { content: ''; position: absolute; left: 50%; top: -18%; width: 74%; aspect-ratio: 2 / 1; transform: translateX(-50%); border-radius: 50%; background: radial-gradient(closest-side, rgba(47, 123, 255, 0.2), transparent 72%); filter: blur(30px); pointer-events: none; }
.mc-packs { position: relative; display: flex; flex-direction: column; gap: 12px; min-width: 0; }
.mc-promo { flex-shrink: 0; display: inline-flex; align-items: center; gap: 7px; white-space: nowrap; padding: 5px 11px; border-radius: 999px; background: rgba(94, 200, 255, 0.1); border: 1px solid rgba(94, 200, 255, 0.3); }
.mc-promo b { flex-shrink: 0; font-family: "JetBrains Mono", ui-monospace, Consolas, monospace; font-size: 11px; font-weight: 700; color: #fff; }
.mc-promo i { flex-shrink: 0; padding: 1px 7px; border-radius: 999px; font-style: normal; font-size: 10.5px; font-weight: 700; color: #0a1426; background: var(--sky); }

.mc-grid { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 12px; }
.mc-pack { grid-column: span 2; }

/* niepelny ostatni wiersz rozciaga sie na cala szerokosc */
@media (min-width: 861px) {
    .mc-grid > .mc-pack:last-child:nth-child(3n + 1) { grid-column: span 6; }
    .mc-grid > .mc-pack:nth-last-child(2):nth-child(3n + 1),
    .mc-grid > .mc-pack:nth-last-child(2):nth-child(3n + 1) ~ .mc-pack { grid-column: span 3; }

    /* sam w wierszu: uklad poziomy, bo szerokosci jest pod dostatkiem */
    .mc-grid > .mc-pack:last-child:nth-child(3n + 1) { flex-direction: row; align-items: center; gap: 22px; min-height: 0; padding: 16px 18px; }
    .mc-grid > .mc-pack:last-child:nth-child(3n + 1) .mc-pack-top { flex: 0 0 auto; align-items: center; gap: 13px; min-width: 132px; }
    .mc-grid > .mc-pack:last-child:nth-child(3n + 1) .mc-pack-specs { flex-direction: row; gap: 18px; }
    .mc-grid > .mc-pack:last-child:nth-child(3n + 1) .mc-pack-price { margin-left: auto; align-items: flex-end; padding-top: 0; border-top: 0; }
    .mc-grid > .mc-pack.is-top:last-child:nth-child(3n + 1) { padding-top: 38px; }
}
/* wszystkie siatki leza na sobie, wiec panel ma stala wysokosc niezalezna od liczby pakietow */
.mc-grids { display: grid; }
.mc-grid { grid-area: 1 / 1; }
.mc-grid[hidden] { visibility: hidden; }
.mc-grid.is-swap .mc-pack { animation: mcIn 0.4s var(--ease) both; }
@keyframes mcIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.mc-pack { position: relative; display: flex; flex-direction: column; justify-content: space-between; gap: 10px; min-height: 150px; padding: 14px 15px 13px; border-radius: 18px; overflow: hidden; text-align: left; background: rgba(10, 15, 27, 0.66); border: 1px solid rgba(148, 178, 255, 0.28); transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.4s ease, transform 0.3s var(--ease); }
.mc-pack:hover { border-color: rgba(94, 200, 255, 0.55); background: rgba(15, 23, 40, 0.8); transform: translateY(-2px); }
.mc-pack.is-on { background: linear-gradient(155deg, rgba(38, 66, 126, 0.94), rgba(10, 16, 32, 0.96)); border-color: rgba(94, 200, 255, 0.58); box-shadow: 0 1px 0 rgba(255, 255, 255, 0.14) inset, 0 0 42px -12px rgba(47, 123, 255, 0.9); }
.mc-pack.is-on::before { content: ''; position: absolute; right: -48px; top: -60px; width: 180px; height: 180px; border-radius: 50%; background: radial-gradient(closest-side, rgba(47, 123, 255, 0.44), transparent 72%); filter: blur(13px); pointer-events: none; animation: mcGlow 0.5s ease both; }
.mc-pack:focus-visible { outline: 2px solid var(--sky); outline-offset: 2px; }
.mc-pack.is-top { padding-top: 38px; }
.mc-pack-band { position: absolute; left: 0; right: 0; top: 0; z-index: 1; padding: 6px 0 5px; text-align: center; font-size: 9.5px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--sky); background: rgba(94, 200, 255, 0.1); border-bottom: 1px solid rgba(94, 200, 255, 0.2); transition: background 0.35s ease, color 0.3s ease, border-color 0.35s ease; }
.mc-pack.is-on .mc-pack-band { color: #06101f; background: var(--sky); border-bottom-color: var(--sky); }

.mc-pack-top { position: relative; display: flex; align-items: flex-start; justify-content: space-between; gap: 8px; }
.mc-pack-top img { width: 36px; height: 36px; flex-shrink: 0; object-fit: contain; opacity: 0.82; filter: drop-shadow(0 5px 12px rgba(0, 0, 0, 0.5)); transition: opacity 0.3s ease; }
.mc-pack.is-on .mc-pack-top img { opacity: 1; }
.mc-pack-id { display: flex; flex-direction: column; gap: 3px; }
.mc-pack-id b { font-family: 'Sora', var(--font-head); font-weight: 700; font-size: 21px; line-height: 1; letter-spacing: -0.02em; white-space: nowrap; color: var(--text); transition: color 0.3s ease; }
.mc-pack.is-on .mc-pack-id b { color: #fff; }
.mc-pack-id small { font-size: 12.5px; color: #7f8db0; transition: color 0.3s ease; }
.mc-pack.is-on .mc-pack-id small { color: #a9cdff; }

.mc-pack-specs { position: relative; display: flex; flex-direction: column; gap: 5px; font-size: 11.5px; color: #8b98b2; transition: color 0.3s ease; }
.mc-pack.is-on .mc-pack-specs { color: #a9cdff; }
.mc-pack-specs span { display: flex; align-items: center; gap: 7px; }
.mc-pack-specs svg { width: 13px; height: 13px; flex-shrink: 0; }

.mc-pack-price { position: relative; display: flex; flex-direction: column; align-items: flex-start; gap: 3px; padding-top: 10px; border-top: 1px solid rgba(148, 178, 255, 0.1); transition: border-color 0.35s ease; }
.mc-pack.is-on .mc-pack-price { border-top-color: rgba(94, 200, 255, 0.24); }
.mc-pack-price b { font-family: 'Sora', var(--font-head); font-weight: 700; font-size: 19px; line-height: 1; letter-spacing: -0.015em; white-space: nowrap; font-variant-numeric: tabular-nums; color: #b7c3d8; transition: color 0.3s ease; }
.mc-pack.is-on .mc-pack-price b { color: var(--sky); }

.mc-was { display: flex; align-items: center; gap: 7px; white-space: nowrap; }
.mc-was s { font-size: 11.5px; color: #64748f; }
.mc-was i { padding: 1px 6px; border-radius: 999px; font-style: normal; font-size: 10px; font-weight: 700; color: #0a1426; background: var(--sky); }

/* --- podsumowanie --- */
.mc-sum { position: relative; display: flex; flex-direction: column; gap: 16px; padding: 20px; border-radius: 22px; overflow: hidden; background: linear-gradient(165deg, rgba(32, 54, 104, 0.84), rgba(8, 12, 22, 0.96)); border: 1px solid rgba(94, 200, 255, 0.36); box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1) inset; }
.mc-sum::before { content: ''; position: absolute; right: -24%; top: -28%; width: 82%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(closest-side, rgba(47, 123, 255, 0.38), transparent 72%); filter: blur(15px); pointer-events: none; }
.mc-sum-head { position: relative; display: flex; align-items: center; gap: 13px; }
.mc-sum-head img { width: 50px; height: 50px; flex-shrink: 0; object-fit: contain; filter: drop-shadow(0 7px 16px rgba(0, 0, 0, 0.55)); }
.mc-sum-head span { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.mc-sum-head small { font-size: 11px; font-weight: 700; letter-spacing: 0.11em; text-transform: uppercase; color: var(--sky); }
.mc-sum-head b { font-family: var(--font-head); font-weight: 600; font-size: clamp(15px, 1.24vw, 17.5px); line-height: 1.08; overflow-wrap: break-word; color: #fff; }

.mc-sum-specs { position: relative; display: flex; flex-direction: column; gap: 10px; margin: 0; padding: 15px 0; border-top: 1px solid rgba(94, 200, 255, 0.2); border-bottom: 1px solid rgba(94, 200, 255, 0.2); }
.mc-sum-specs > div { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 4px 12px; font-size: 14px; }
.mc-sum-specs dt { color: #94a3bd; }
.mc-sum-specs dd { margin: 0; font-weight: 600; text-align: right; color: #fff; }
.mc-sum-specs dd.is-num { font-family: "JetBrains Mono", ui-monospace, Consolas, monospace; font-weight: 700; }

.mc-sum-perks { position: relative; display: flex; flex-direction: column; gap: 9px; }
.mc-lab { font-size: 11px; font-weight: 700; letter-spacing: 0.11em; text-transform: uppercase; color: #64748f; }
.mc-perk { display: flex; align-items: center; gap: 9px; font-size: 13.5px; color: #c3cee2; }
.mc-perk svg { width: 14px; height: 14px; flex-shrink: 0; color: var(--sky); }

.mc-bill { position: relative; display: flex; flex-direction: column; gap: 8px; padding: 11px 13px 12px; border-radius: 16px; background: rgba(13, 19, 34, 0.5); border: 1px solid rgba(148, 178, 255, 0.1); }
.mc-period { position: relative; display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 8px; }
.mc-period button { display: flex; align-items: center; justify-content: center; gap: 5px; padding: 9px 4px; border-radius: 12px; white-space: nowrap; font-size: 12px; font-weight: 600; color: #7f8db0; background: rgba(8, 12, 22, 0.6); border: 1px solid rgba(148, 178, 255, 0.1); transition: background 0.35s ease, color 0.3s ease, border-color 0.35s ease, box-shadow 0.4s ease; }
.mc-period button i { font-style: normal; font-size: 10.5px; color: rgba(94, 200, 255, 0.55); transition: color 0.3s ease; }
.mc-period button:hover { color: #d5deee; background: rgba(17, 25, 44, 0.75); border-color: rgba(94, 200, 255, 0.26); }
.mc-period button:hover i { color: var(--sky); }
.mc-period button.is-on { font-weight: 700; color: #fff; background: radial-gradient(130% 170% at 50% 140%, rgba(47, 123, 255, 0.62), rgba(12, 28, 68, 0.94) 66%); border-color: rgba(94, 200, 255, 0.55); box-shadow: 0 1px 0 rgba(255, 255, 255, 0.16) inset, 0 0 30px -10px rgba(47, 123, 255, 0.9); }
.mc-period button.is-on i { color: #bfe6ff; }
.mc-period button:focus-visible { outline: 2px solid var(--sky); outline-offset: -2px; }

.mc-total { position: relative; display: flex; flex-direction: column; align-items: flex-start; gap: 3px; }

/* przeliczenie ceny po zmianie okresu */
@keyframes mcTick { from { opacity: 0; transform: translateY(-5px); } to { opacity: 1; transform: none; } }
@keyframes mcTickGlow { 0% { color: var(--sky); text-shadow: 0 0 22px rgba(94, 200, 255, 0.55); } 100% { color: #fff; text-shadow: none; } }
@keyframes mcTickPulse { 0% { text-shadow: 0 0 20px rgba(94, 200, 255, 0.6); } 100% { text-shadow: none; } }
.mc-grid.is-tick .mc-p-now { animation: mcTickPulse 0.55s ease; }
.mc-grid.is-tick .mc-was { animation: mcTick 0.38s var(--ease) both; }
.mc-grid.is-tick .mc-pack:nth-child(3n + 2) .mc-was { animation-delay: 0.05s; }
.mc-grid.is-tick .mc-pack:nth-child(3n) .mc-was { animation-delay: 0.1s; }
.mc-total.is-tick .mc-lab, .mc-total.is-tick .mc-total-was { animation: mcTick 0.38s var(--ease) both; }
.mc-total.is-tick strong { animation: mcTickGlow 0.55s ease both; }
.mc-total-was { font-size: 12.5px; white-space: nowrap; color: #64748f; }
.mc-total-was s { color: #7f8db0; }

.mc-code { position: relative; display: flex; align-items: center; gap: 10px; padding: 9px 11px; border-radius: 13px; background: rgba(94, 200, 255, 0.08); border: 1px solid rgba(94, 200, 255, 0.22); }
.mc-code-ico { display: grid; place-items: center; width: 28px; height: 28px; flex-shrink: 0; border-radius: 9px; color: var(--sky); background: rgba(94, 200, 255, 0.12); border: 1px solid rgba(94, 200, 255, 0.26); }
.mc-code-ico svg { width: 15px; height: 15px; }
.mc-code-text { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.mc-code-text b { font-family: "JetBrains Mono", ui-monospace, Consolas, monospace; font-size: 11.5px; font-weight: 700; color: #fff; }
.mc-code-text small { font-size: 11px; color: #8b98b2; }
.mc-code-off { margin-left: auto; flex-shrink: 0; padding: 3px 9px; border-radius: 999px; font-size: 11px; font-weight: 700; color: #06101f; background: var(--sky); }
.mc-total strong { font-family: 'Sora', var(--font-head); font-weight: 700; font-size: 33px; line-height: 1.1; letter-spacing: -0.02em; white-space: nowrap; color: #fff; font-variant-numeric: tabular-nums; }
.mc-cta { position: relative; justify-content: center; padding: 16px 20px; font-size: 15px; font-weight: 700; color: #eaf4ff; background: var(--blue-bg); border: 1px solid rgba(94, 200, 255, 0.6); box-shadow: var(--blue-shadow); }
.mc-cta:hover { filter: brightness(1.12); border-color: rgba(94, 200, 255, 0.85); box-shadow: 0 1px 0 rgba(255, 255, 255, 0.3) inset, 0 0 0 4px rgba(47, 123, 255, 0.2), 0 0 34px rgba(47, 123, 255, 0.6), 0 14px 34px -12px rgba(47, 123, 255, 1); }
.mc-cta:active { transform: translateY(0); }
.mc-cta svg { stroke-width: 3; }
.mc-pays { display: flex; flex-direction: column; gap: 9px; margin-top: 2px; padding-top: 15px; border-top: 1px solid rgba(148, 178, 255, 0.14); }
.mc-pays-rail { position: relative; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); }
.mc-pays-track { display: flex; width: max-content; animation: mcPays 24s linear infinite; }
.mc-pays-set { display: flex; align-items: center; gap: 26px; padding-right: 26px; }
.mc-pays-set img { height: 19px; width: auto; flex-shrink: 0; object-fit: contain; }
.mc-pays-set .is-visa { height: 15px; }
.mc-pays-set .is-paysafecard { height: 14px; }
.mc-pays-set .is-dpay, .mc-pays-set .is-paypal { height: 15px; }
@keyframes mcPays { from { transform: none; } to { transform: translateX(-50%); } }

@media (max-width: 1180px) {
    .mc-in { grid-template-columns: 380px minmax(0, 1fr); gap: 22px; }
    .mc-panel { grid-template-columns: minmax(0, 1fr) 262px; }
    .mc-pack .mc-top { font-size: 9.5px; padding: 3px 7px; }
}
@media (max-width: 1080px) {
    .mc-in { grid-template-columns: minmax(0, 1fr); gap: 24px; align-items: start; }
    .mc-left { max-width: 720px; }
}
@media (max-width: 860px) {
    .mc-panel { grid-template-columns: minmax(0, 1fr); }
    .mc-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (max-width: 720px) {
    .mc { padding: calc(var(--promo-h) + var(--top-h) + 14px) 0 56px; }
    .mc-in { padding-left: 18px; padding-right: 18px; }
    .mc-panel { padding: 14px; border-radius: 22px; }
    .mc-sum { padding: 16px; }
    .mc-line { padding: 14px 15px; gap: 12px; }
    .mc-line-ico { width: 40px; height: 40px; }
    .mc-line-head b { font-size: 17.5px; }
    .mc-step-head small { display: none; }
    .mc-promo { margin-left: 0; }
    .mc-pack { min-height: 146px; }
    .mc-total strong { font-size: 30px; }
}
@media (min-width: 421px) and (max-width: 860px) {
    .mc-grid > .mc-pack:last-child:nth-child(2n + 1) { grid-column: span 4; }
}
@media (max-width: 420px) {
    .mc-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .mc-pack { min-height: 0; }
}
@media (prefers-reduced-motion: reduce) {
    .mc-pays-track { animation: none; }
    .mc-pays-set:last-child { display: none; }
    .mc-pays-rail { overflow-x: auto; }
    .mc-line, .mc-pack, .mc-help { transition-duration: 0.01ms; }
    .mc-line:hover, .mc-pack:hover, .mc-help:hover { transform: none; }
    .mc-grid.is-swap .mc-pack, .mc-line.is-on::before, .mc-pack.is-on::before { animation: none; }
    .mc-grid.is-tick .mc-p-now, .mc-grid.is-tick .mc-was, .mc-total.is-tick .mc-lab, .mc-total.is-tick .mc-total-was, .mc-total.is-tick strong { animation: none; }
}

/* =========================================================
   MODPACKI
   ========================================================= */
.mp { position: relative; padding: 72px 0 72px; overflow: hidden; }
.mp::before { content: ''; position: absolute; left: 4%; top: 6%; width: min(660px, 50%); aspect-ratio: 3 / 2; border-radius: 50%; background: radial-gradient(closest-side, rgba(47, 123, 255, 0.15), transparent 72%); filter: blur(44px); pointer-events: none; }
.mp-in { position: relative; z-index: 1; display: grid; grid-template-columns: 604px minmax(0, 1fr); gap: 24px; align-items: center; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }

.mp-text { display: flex; flex-direction: column; gap: 16px; min-width: 0; }
.mp-kicker { display: inline-flex; align-items: center; align-self: flex-start; padding: 6px 15px; border-radius: 999px; font-size: 11.5px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--sky); background: rgba(9, 14, 26, 0.8); border: 1px solid rgba(148, 178, 255, 0.2); }
.mp-title { margin: 0; font-family: var(--font-head); font-weight: 600; font-size: clamp(24.5px, 2.54vw, 36px); line-height: 1.06; letter-spacing: -0.04em; color: #fff; }
.mp-title span { color: var(--sky); }
.mp-lead { margin: 0; font-size: 15.5px; line-height: 1.62; color: #a7b4cc; max-width: 520px; }

.mp-src { display: flex; flex-direction: column; gap: 10px; margin-top: 4px; }
.mp-tags { display: flex; flex-wrap: wrap; gap: 7px; }
.mp-tag { display: inline-flex; align-items: center; gap: 7px; padding: 8px 12px; border-radius: 11px; font-size: 12px; font-weight: 600; color: #d5deee; background: rgba(13, 19, 34, 0.7); border: 1px solid rgba(148, 178, 255, 0.14); transition: border-color 0.3s ease, color 0.3s ease, background 0.3s ease; }
.mp-tag::before { content: ''; width: 5px; height: 5px; flex-shrink: 0; border-radius: 50%; background: var(--sky); box-shadow: 0 0 7px var(--sky); }
.mp-tag:hover { color: #fff; background: rgba(17, 25, 44, 0.8); border-color: rgba(94, 200, 255, 0.3); }

/* sciana okladek */
.mp-wall { position: relative; height: 520px; overflow: hidden; }
.mp-cols { position: absolute; left: -6%; top: -26%; width: 112%; height: 152%; display: flex; justify-content: center; gap: 14px; transform: rotate(-9deg); }
.mp-col { display: flex; flex-direction: column; gap: 14px; flex-shrink: 0; will-change: transform; }
.mp-col img { display: block; width: 138px; height: 138px; object-fit: cover; border-radius: 16px; background: linear-gradient(135deg, #16273e, #0e131c); border: 1px solid rgba(255, 255, 255, 0.07); }
.mp-col--up { animation: mpUp 46s linear infinite; animation-delay: var(--mp-delay, 0s); }
.mp-col--down { animation: mpDown 52s linear infinite; animation-delay: var(--mp-delay, 0s); }
@keyframes mpUp { from { transform: translateY(0); } to { transform: translateY(-50%); } }
@keyframes mpDown { from { transform: translateY(-50%); } to { transform: translateY(0); } }

.mp-fade { position: absolute; inset: 0; pointer-events: none; }
.mp-fade--x { background: linear-gradient(90deg, var(--bg) 0%, rgba(6, 9, 18, 0.8) 12%, rgba(6, 9, 18, 0) 40%, rgba(6, 9, 18, 0) 84%, rgba(6, 9, 18, 0.92) 100%); }
.mp-fade--y { background: linear-gradient(180deg, var(--bg) 0%, rgba(6, 9, 18, 0) 26%, rgba(6, 9, 18, 0) 74%, var(--bg) 100%); }
.mp-fade--o { background: radial-gradient(ellipse 78% 86% at 62% 50%, transparent 38%, rgba(6, 9, 18, 0.85) 100%); }

@media (max-width: 1180px) {
    .mp-in { grid-template-columns: 500px minmax(0, 1fr); }
}
@media (max-width: 1080px) {
    .mp-in { grid-template-columns: minmax(0, 1fr); gap: 28px; }
    .mp-text { max-width: 640px; }
    .mp-wall { height: 360px; }
    .mp-fade--x { background: linear-gradient(90deg, var(--bg) 0%, rgba(6, 9, 18, 0) 18%, rgba(6, 9, 18, 0) 82%, var(--bg) 100%); }
}
@media (max-width: 720px) {
    .mp { padding: 48px 0 48px; }
    .mp-in { padding-left: 18px; padding-right: 18px; }
    .mp-wall { height: 280px; }
    .mp-col img { width: 108px; height: 108px; border-radius: 13px; }
    .mp-lead { font-size: 15px; }
}
@media (prefers-reduced-motion: reduce) {
    .mp-col--up, .mp-col--down { animation: none; }
    .mp-col--down { transform: translateY(-50%); }
}

/* =========================================================
   ANALIZA LOGOW
   ========================================================= */
.lg { position: relative; padding: 72px 0 72px; overflow: hidden; }
.lg::before { content: ''; position: absolute; left: 50%; top: 0; width: min(980px, 76%); aspect-ratio: 7 / 3; transform: translateX(-50%); border-radius: 50%; background: radial-gradient(closest-side, rgba(47, 123, 255, 0.13), transparent 72%); filter: blur(44px); pointer-events: none; }
.lg-in { position: relative; z-index: 1; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }

.lg-head { display: flex; flex-direction: column; gap: 8px; max-width: 700px; margin-bottom: 26px; }
.lg-title { margin: 0; font-family: var(--font-head); font-weight: 600; font-size: clamp(23px, 2.38vw, 33px); line-height: 1.07; letter-spacing: -0.038em; color: #fff; }
.lg-title span { color: var(--sky); }
.lg-lead { margin: 0; font-size: 15px; line-height: 1.6; color: #a7b4cc; }

.lg-flow { display: grid; grid-template-columns: minmax(0, 1fr) 74px minmax(0, 1fr); align-items: center; }

/* okno logu */
.lg-log { position: relative; display: flex; flex-direction: column; border-radius: 20px; overflow: hidden; background: #080c16; border: 1px solid rgba(148, 178, 255, 0.16); }
.lg-log::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 70px; background: linear-gradient(180deg, transparent, #080c16); pointer-events: none; }
.lg-log-bar { display: flex; align-items: center; gap: 10px; padding: 11px 15px; background: rgba(10, 15, 28, 0.95); border-bottom: 1px solid rgba(148, 178, 255, 0.12); }
.lg-log-ico { display: grid; place-items: center; width: 22px; height: 22px; flex-shrink: 0; border-radius: 7px; color: #7f8db0; background: rgba(148, 178, 255, 0.08); border: 1px solid rgba(148, 178, 255, 0.16); }
.lg-log-ico svg { width: 12px; height: 12px; }
.lg-log-name { font-family: "JetBrains Mono", ui-monospace, Consolas, monospace; font-size: 11.5px; color: #8b98b2; }
.lg-log-count { margin-left: auto; font-family: "JetBrains Mono", ui-monospace, Consolas, monospace; font-size: 11px; color: #4a5570; }
.lg-log-body { display: flex; flex-direction: column; gap: 5px; margin: 0; padding: 14px 15px; height: 228px; overflow: hidden; font-family: "JetBrains Mono", ui-monospace, Consolas, monospace; font-size: 11.5px; line-height: 1.5; }
.lg-line { display: flex; gap: 10px; white-space: nowrap; color: #5c6880; }
.lg-line i { font-style: normal; color: #3d4761; }
.lg-line b { font-weight: 400; color: #4a5570; }
.lg-line.is-warn, .lg-line.is-warn b { color: #f3c86b; }
.lg-line.is-err, .lg-line.is-err b { color: #ff8a8a; }

/* strzalka */
.lg-arrow { display: flex; flex-direction: column; align-items: center; gap: 9px; }
.lg-arrow-dot { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; color: #04121f; background: var(--sky); box-shadow: 0 0 34px -6px rgba(94, 200, 255, 0.9); }
.lg-arrow-cap { font-size: 10.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #64748f; }

/* karta wyniku */
.lg-res { position: relative; display: flex; flex-direction: column; gap: 14px; padding: 20px; border-radius: 22px; overflow: hidden; background: linear-gradient(165deg, rgba(32, 54, 104, 0.86), rgba(8, 12, 22, 0.96)); border: 1px solid rgba(94, 200, 255, 0.4); box-shadow: 0 1px 0 rgba(255, 255, 255, 0.12) inset, 0 24px 60px -30px rgba(0, 0, 0, 0.9); }
.lg-res::before { content: ''; position: absolute; right: -16%; top: -30%; width: 56%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(closest-side, rgba(47, 123, 255, 0.4), transparent 72%); filter: blur(15px); pointer-events: none; }
.lg-res-head { position: relative; display: flex; align-items: center; gap: 10px; }
.lg-res-ico { display: grid; place-items: center; width: 34px; height: 34px; flex-shrink: 0; border-radius: 11px; color: var(--sky); background: rgba(94, 200, 255, 0.12); border: 1px solid rgba(94, 200, 255, 0.3); }
.lg-res-ico svg { width: 17px; height: 17px; }
.lg-res-id { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.lg-res-id small { font-size: 10.5px; font-weight: 700; letter-spacing: 0.11em; text-transform: uppercase; color: var(--sky); }
.lg-res-id b { font-family: var(--font-head); font-weight: 600; font-size: 16.5px; line-height: 1.15; color: #fff; }
.lg-res-rule { margin-left: auto; flex-shrink: 0; padding: 4px 10px; border-radius: 999px; font-family: "JetBrains Mono", ui-monospace, Consolas, monospace; font-size: 10px; font-weight: 700; white-space: nowrap; color: #a9cdff; background: rgba(94, 200, 255, 0.1); border: 1px solid rgba(94, 200, 255, 0.26); }
.lg-res-why { position: relative; margin: 0; font-size: 13.5px; line-height: 1.55; color: #c3cee2; }
.lg-res-why b { color: #fff; }
.lg-res-fix { position: relative; display: flex; flex-direction: column; gap: 8px; padding-top: 14px; border-top: 1px solid rgba(94, 200, 255, 0.2); }
.lg-res-step { display: flex; gap: 9px; font-size: 13.5px; line-height: 1.5; color: #d5deee; }
.lg-res-step svg { width: 15px; height: 15px; flex-shrink: 0; margin-top: 3px; color: var(--sky); }
.lg-res-cta { position: relative; }

/* pasek faktow */
.lg-facts { display: flex; flex-wrap: wrap; align-items: stretch; gap: 14px 26px; margin-top: 22px; padding: 15px 20px; border-radius: 18px; background: rgba(13, 19, 34, 0.5); border: 1px solid rgba(148, 178, 255, 0.1); }
.lg-fact { flex: 1 1 0; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.lg-fact + .lg-fact { padding-left: 26px; border-left: 1px solid rgba(148, 178, 255, 0.12); }
.lg-fact b { font-family: var(--font-head); font-weight: 600; font-size: 13px; color: #fff; }
.lg-fact small { font-size: 12.5px; color: #8b98b2; }

@media (max-width: 1080px) {
    .lg-flow { grid-template-columns: minmax(0, 1fr); gap: 0; }
    .lg-arrow { flex-direction: row; gap: 12px; padding: 14px 0; }
    .lg-arrow-dot { transform: rotate(90deg); }
    .lg-log-body { height: 200px; }
}
@media (max-width: 720px) {
    .lg { padding: 48px 0 48px; }
    .lg-in { padding-left: 18px; padding-right: 18px; }
    .lg-res { padding: 16px; }
    .lg-log-body { height: 176px; font-size: 10.5px; }
    .lg-facts { flex-direction: column; align-items: flex-start; gap: 12px; }
    .lg-fact + .lg-fact { padding-left: 0; border-left: 0; }
}

/* =========================================================
   MOZLIWOSCI
   ========================================================= */
.fx { position: relative; padding: 72px 0 72px; overflow: hidden; }
.fx::before { content: ''; position: absolute; left: 50%; top: 0; width: min(980px, 76%); aspect-ratio: 7 / 3; transform: translateX(-50%); border-radius: 50%; background: radial-gradient(closest-side, rgba(47, 123, 255, 0.12), transparent 72%); filter: blur(44px); pointer-events: none; }
.fx-in { position: relative; z-index: 1; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.fx-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }

.fx-card { position: relative; display: flex; flex-direction: column; gap: 13px; padding: 20px; border-radius: 20px; overflow: hidden; background: linear-gradient(160deg, rgba(22, 32, 56, 0.58), rgba(9, 13, 24, 0.9)); border: 1px solid rgba(148, 178, 255, 0.14); transition: border-color 0.35s ease, transform 0.3s var(--ease); }
.fx-card:hover { border-color: rgba(94, 200, 255, 0.3); transform: translateY(-2px); }
.fx-ico { display: grid; place-items: center; width: 40px; height: 40px; flex-shrink: 0; border-radius: 13px; color: var(--sky); background: rgba(94, 200, 255, 0.1); border: 1px solid rgba(94, 200, 255, 0.24); }
.fx-ico svg { width: 18px; height: 18px; }
.fx-body { display: flex; flex-direction: column; gap: 6px; }
.fx-body b { font-family: var(--font-head); font-weight: 600; font-size: 15.5px; line-height: 1.15; color: #fff; }
.fx-body small { font-size: 13.5px; line-height: 1.55; color: #94a3bd; }
.fx-note { margin-top: auto; padding-top: 12px; border-top: 1px solid rgba(148, 178, 255, 0.1); font-size: 12.5px; line-height: 1.45; color: #7f8db0; }

/* kafelek z silnikami */
.fx-card--eng { gap: 16px; }
.fx-eng-head { display: flex; align-items: center; gap: 14px; }
.fx-eng-head .fx-body small { font-size: 13px; line-height: 1.5; }
.fx-eng { position: relative; flex-shrink: 0; margin-top: auto; overflow: hidden; }
.fx-eng::after { content: ''; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(90deg, #0d1526 0%, rgba(13, 21, 38, 0) 11%, rgba(13, 21, 38, 0) 89%, #0d1526 100%); }
.fx-eng-row { display: flex; gap: 10px; width: max-content; animation: fxRun 34s linear infinite; will-change: transform; }
@keyframes fxRun { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.fx-eng-item { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 7px; width: 92px; min-height: 77px; flex-shrink: 0; padding: 11px 6px; border-radius: 14px; font-size: 10.5px; font-weight: 600; white-space: nowrap; color: #8b98b2; background: rgba(13, 19, 34, 0.62); border: 1px solid rgba(148, 178, 255, 0.12); }
.fx-eng-item img { width: 30px; height: 30px; object-fit: contain; }

@media (max-width: 1080px) {
    .fx-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 720px) {
    .fx-in { padding-left: 18px; padding-right: 18px; }
    .fx-grid { grid-template-columns: minmax(0, 1fr); }
    .fx-card { padding: 17px; }
    .fx-note { margin-top: 0; }
}
@media (prefers-reduced-motion: reduce) {
    .fx-eng-row { animation: none; }
}

/* =========================================================
   KREATOR SERWERA
   ========================================================= */
.kr { position: relative; padding: 72px 0 72px; overflow: hidden; }
.kr::before { content: ''; position: absolute; left: 50%; top: 0; width: min(980px, 76%); aspect-ratio: 7 / 3; transform: translateX(-50%); border-radius: 50%; background: radial-gradient(closest-side, rgba(47, 123, 255, 0.12), transparent 72%); filter: blur(44px); pointer-events: none; }
.kr-in { position: relative; z-index: 1; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }

.kr-flow { display: grid; grid-template-columns: minmax(0, 1fr) 58px minmax(0, 1fr) 58px minmax(0, 1fr); align-items: stretch; }
.kr-arrow { display: grid; place-items: center; align-self: center; color: var(--sky); }
.kr-arrow svg { width: 34px; height: 34px; padding: 9px; border-radius: 50%; background: rgba(94, 200, 255, 0.1); border: 1px solid rgba(94, 200, 255, 0.26); }

.kr-screen { position: relative; display: flex; flex-direction: column; gap: 14px; padding: 18px; border-radius: 20px; overflow: hidden; background: linear-gradient(160deg, rgba(20, 29, 52, 0.9), rgba(8, 12, 22, 0.96)); border: 1px solid rgba(180, 200, 240, 0.16); box-shadow: 0 24px 60px -34px rgba(0, 0, 0, 0.9); }

.kr-bar { display: flex; flex-direction: column; gap: 9px; }
.kr-bar-top { display: flex; align-items: center; gap: 9px; }
.kr-step { font-family: "JetBrains Mono", ui-monospace, Consolas, monospace; font-size: 10.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; white-space: nowrap; color: var(--sky); }
.kr-dots { flex: 1; display: flex; gap: 4px; }
.kr-dots i { flex: 1; height: 3px; border-radius: 2px; background: rgba(148, 178, 255, 0.16); }
.kr-dots i.is-on { background: var(--sky); }
.kr-bar b { font-family: var(--font-head); font-weight: 600; font-size: 16.5px; line-height: 1.15; color: #fff; }

.kr-opts { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px; }
.kr-opt { display: flex; flex-direction: column; gap: 3px; padding: 12px 13px; border-radius: 14px; background: rgba(13, 19, 34, 0.62); border: 1px solid rgba(148, 178, 255, 0.14); }
.kr-opt b { font-size: 13.5px; font-weight: 700; color: #d5deee; }
.kr-opt small { font-size: 11.5px; color: #7f8db0; }
.kr-opt.is-on { background: radial-gradient(130% 170% at 50% 145%, rgba(47, 123, 255, 0.5), rgba(12, 28, 68, 0.92) 66%); border-color: rgba(94, 200, 255, 0.55); box-shadow: 0 0 28px -10px rgba(47, 123, 255, 0.9); }
.kr-opt.is-on b { color: #fff; }
.kr-opt.is-on small { color: #a9cdff; }

.kr-eng { display: flex; align-items: center; gap: 9px; padding: 9px 11px; border-radius: 12px; font-size: 12.5px; font-weight: 600; color: #b7c3d8; background: rgba(13, 19, 34, 0.62); border: 1px solid rgba(148, 178, 255, 0.14); }
.kr-eng img { width: 22px; height: 22px; flex-shrink: 0; object-fit: contain; }
.kr-eng.is-on { color: #fff; background: radial-gradient(130% 170% at 50% 145%, rgba(47, 123, 255, 0.5), rgba(12, 28, 68, 0.92) 66%); border-color: rgba(94, 200, 255, 0.55); }

.kr-ver { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 11px 13px; border-radius: 12px; background: rgba(13, 19, 34, 0.62); border: 1px solid rgba(148, 178, 255, 0.14); font-size: 12.5px; color: #8b98b2; }
.kr-ver b { display: flex; align-items: center; gap: 8px; font-family: "JetBrains Mono", ui-monospace, Consolas, monospace; font-weight: 700; color: #fff; }
.kr-ver svg { color: var(--sky); }

.kr-sum { display: flex; flex-direction: column; gap: 9px; padding: 13px 0; border-top: 1px solid rgba(148, 178, 255, 0.12); border-bottom: 1px solid rgba(148, 178, 255, 0.12); }
.kr-sum-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; font-size: 13px; color: #94a3bd; }
.kr-sum-row b { font-weight: 600; text-align: right; color: #fff; }
.kr-cta { margin-top: auto; }

@media (max-width: 1080px) {
    .kr-flow { grid-template-columns: minmax(0, 1fr); }
    .kr-arrow { padding: 12px 0; }
    .kr-arrow svg { transform: rotate(90deg); }
}
@media (max-width: 720px) {
    .kr-in { padding-left: 18px; padding-right: 18px; }
    .kr-screen { padding: 16px; }
    .kr-opts { grid-template-columns: minmax(0, 1fr); }
}

/* =========================================================
   POROWNANIE: RECZNIE KONTRA PANEL
   ========================================================= */
.cmp { position: relative; padding: 72px 0 88px; overflow: hidden; }
.cmp::before { content: ''; position: absolute; left: 50%; top: 0; width: min(980px, 76%); aspect-ratio: 7 / 3; transform: translateX(-50%); border-radius: 50%; background: radial-gradient(closest-side, rgba(47, 123, 255, 0.12), transparent 72%); filter: blur(44px); pointer-events: none; }
.cmp-in { position: relative; z-index: 1; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.cmp-head { align-items: flex-start; max-width: 760px; margin: 0 0 32px; text-align: left; }

.cmp-table { border-radius: 22px; overflow: hidden; border: 1px solid rgba(148, 178, 255, 0.14); }
.cmp-row { display: grid; grid-template-columns: 26% minmax(0, 1fr) minmax(0, 1fr); }
.cmp-row + .cmp-row { border-top: 1px solid rgba(148, 178, 255, 0.1); }

.cmp-row--head { background: rgba(13, 19, 34, 0.7); border-bottom: 1px solid rgba(148, 178, 255, 0.14); }
.cmp-col { padding: 14px 20px; font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: #64748f; }
.cmp-col.is-us { color: var(--sky); background: rgba(94, 200, 255, 0.06); }

.cmp-label { display: flex; align-items: center; padding: 17px 20px; font-size: 11.5px; font-weight: 600; color: #d5deee; background: rgba(13, 19, 34, 0.4); }
.cmp-cell { display: flex; align-items: center; gap: 10px; padding: 17px 20px; font-size: 13px; line-height: 1.45; color: #7f8db0; }
.cmp-cell i { width: 14px; height: 1.5px; flex-shrink: 0; border-radius: 2px; background: rgba(148, 178, 255, 0.28); }
.cmp-cell svg { width: 15px; height: 15px; flex-shrink: 0; margin-top: 4px; align-self: flex-start; color: var(--sky); }
.cmp-cell.is-us { align-items: flex-start; padding: 15px 20px; background: rgba(94, 200, 255, 0.05); }
.cmp-feat { display: flex; flex-direction: column; gap: 2px; }
.cmp-feat b { font-size: 14px; font-weight: 700; color: #fff; }
.cmp-feat small { font-size: 12.5px; line-height: 1.45; color: #94a3bd; }

/* na waskim ekranie tabela zamienia sie w liste */
@media (max-width: 780px) {
    .cmp { padding: 48px 0 64px; }
    .cmp-in { padding-left: 18px; padding-right: 18px; }
    .cmp-table { display: flex; flex-direction: column; gap: 12px; border: 0; border-radius: 0; overflow: visible; }
    .cmp-row.cmp-row--head { display: none; }
    .cmp-row { display: flex; flex-direction: column; padding: 15px 16px; border-radius: 18px; background: rgba(13, 19, 34, 0.55); border: 1px solid rgba(148, 178, 255, 0.12); }
    .cmp-row + .cmp-row { border-top: 1px solid rgba(148, 178, 255, 0.12); }
    .cmp-label { padding: 0 0 10px; font-family: var(--font-head); font-weight: 600; font-size: 14px; color: #fff; background: none; }
    .cmp-cell { justify-content: space-between; align-items: flex-start; gap: 14px; padding: 9px 0 0; font-size: 12.5px; text-align: right; }
    .cmp-cell::before { content: attr(data-col); flex-shrink: 0; font-size: 11px; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; text-align: left; color: #64748f; }
    .cmp-cell i, .cmp-cell svg { display: none; }
    .cmp-cell.is-us { margin-top: 10px; padding: 11px 13px; border-radius: 12px; background: rgba(94, 200, 255, 0.08); border: 1px solid rgba(94, 200, 255, 0.24); }
    .cmp-cell.is-us::before { color: var(--sky); }
    .cmp-feat { align-items: flex-end; }
    .cmp-feat small { text-align: right; }
}

/* zmiana linii pakietow: kaskadowe wejscie kafelkow */
@keyframes zamPackIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.zam-packs-in .zam-pack:not([hidden]) { animation: zamPackIn 0.42s cubic-bezier(0.22, 1, 0.36, 1) backwards; }
@media (prefers-reduced-motion: reduce) { .zam-packs-in .zam-pack:not([hidden]) { animation: none; } }

/* kafelki okresu: badge rabatu, cena za okres, przyblizenie za 30 dni */
.zam-pers .zam-per { gap: 4px; padding: 12px 8px 11px; }
.zam-per-top { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 4px 6px; }
.zam-per-top b { white-space: nowrap; }
.zam-per-off { font-style: normal; padding: 2px 6px; border-radius: 999px; font-family: var(--font-mono); font-size: 9.5px; font-weight: 700; line-height: 1.3; color: #052e1b; background: linear-gradient(135deg, #bbf7d0 0%, #4ade80 100%); box-shadow: 0 0 12px -4px rgba(74, 222, 128, 0.7); }
.zam-per .zam-per-cena { font-family: 'Sora', var(--font-head); font-weight: 700; font-size: 15px; line-height: 1.2; color: #eaf4ff; white-space: nowrap; font-variant-numeric: tabular-nums; }
.zam-per .zam-per-mies { font-family: var(--font); font-size: 10.5px; font-weight: 500; color: #7f8db0; white-space: nowrap; }
.zam-per .zam-per-mies:empty { display: none; }
.zam-per .zam-per-was { font-size: 11px; font-weight: 500; line-height: 1; color: #6f7b96; text-decoration: line-through; text-decoration-color: rgba(248, 113, 113, 0.75); white-space: nowrap; font-variant-numeric: tabular-nums; }
.zam-per .zam-per-was:empty { display: none; }
.zam-per.has-promo .zam-per-kw { color: #86efac; }
.zam-per.is-on.has-promo .zam-per-kw { color: #bbf7d0; }
.zam-per.is-on .zam-per-was { color: #93a2be; }
.zam-per.is-on .zam-per-cena { color: #fff; }
.zam-per .zam-per-cena i { font-style: normal; font-family: var(--font); font-size: 10.5px; font-weight: 500; color: #7f8db0; white-space: nowrap; }
.zam-per.is-on .zam-per-cena i { color: #bfe6ff; }
.zam-per .zam-per-kw { white-space: nowrap; }
.zam-per.is-on .zam-per-mies { color: #bfe6ff; }
@media (max-width: 1180px) { .zam-per .zam-per-cena { font-size: 13.5px; } .zam-per .zam-per-mies, .zam-per .zam-per-cena i { font-size: 9.5px; } }
@media (max-width: 720px) { .zam-per .zam-per-cena { white-space: normal; text-align: center; } }

/* =========================================================
   STRONA GRY (szablon uniwersalny, prefiks gs-)
   ========================================================= */
.gs-hero { position: relative; z-index: 1; padding: calc(var(--promo-h) + var(--top-h) + 64px) 0 40px; isolation: isolate; }
.gs-hero-bg { position: absolute; inset: 0; z-index: -1; overflow: hidden; pointer-events: none; }
.gs-hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: 60% 30%; animation: gsHeroIn 1.2s var(--ease) both; }
.gs-hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(6, 9, 18, 0.97) 0%, rgba(6, 9, 18, 0.84) 38%, rgba(6, 9, 18, 0.25) 75%, rgba(6, 9, 18, 0.5) 100%), linear-gradient(180deg, rgba(6, 9, 18, 0.35) 0%, rgba(6, 9, 18, 0) 40%, var(--bg) 100%); }
@keyframes gsHeroIn { from { opacity: 0; transform: scale(1.04); } to { opacity: 1; transform: none; } }
.gs-in { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.gs-hero-text { display: flex; flex-direction: column; gap: 18px; max-width: 640px; }
.gs-crumb { display: inline-flex; align-items: center; gap: 8px; align-self: flex-start; padding: 6px 13px 6px 7px; border-radius: 999px; font-size: 12.5px; font-weight: 600; color: #c3cee2; background: rgba(8, 12, 24, 0.7); border: 1px solid rgba(148, 178, 255, 0.22); }
.gs-crumb img { width: 22px; height: 22px; border-radius: 6px; object-fit: contain; }
.gs-crumb a { color: #c3cee2; transition: color 0.25s ease; }
.gs-crumb a:hover { color: #fff; }
.gs-crumb span { color: #5b647d; }
.gs-crumb b { color: #fff; }
.gs-hero h1 { font-family: var(--font-head); font-weight: 600; font-size: clamp(2rem, 3.6vw, 3.1rem); line-height: 1.02; letter-spacing: -0.03em; color: #fff; }
.gs-hero h1 span { color: var(--sky); }
.gs-lead { max-width: 580px; font-size: 17px; line-height: 1.6; color: #b7c3d8; }
.gs-facts { display: flex; flex-wrap: wrap; gap: 8px; }
.gs-fact { display: inline-flex; align-items: center; gap: 7px; padding: 7px 12px; border-radius: 999px; font-size: 13px; font-weight: 600; color: #eaf4ff; background: rgba(8, 12, 24, 0.7); border: 1px solid rgba(148, 178, 255, 0.2); }
.gs-fact svg { width: 14px; height: 14px; flex-shrink: 0; color: var(--sky); }
.gs-hero-cta { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; margin-top: 6px; }
.gs-hero-cta .btn-blue { padding: 14px 24px; font-size: 15px; }
.gs-from { display: flex; flex-direction: column; gap: 1px; }
.gs-from small { font-size: 12px; color: #8b98b2; }
.gs-from small s { color: #6f7b96; }
.gs-from b { font-family: 'Sora', var(--font-head); font-size: 22px; font-weight: 700; color: #86efac; }
.gs-from b i { font-family: var(--font); font-style: normal; font-size: 13px; font-weight: 500; color: #8b98b2; }

.gs-sec { position: relative; padding: 72px 0 0; scroll-margin-top: calc(var(--promo-h) + var(--top-h) + 16px); }
.gs-plans { padding-top: 40px; }
.gs-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 22px; }
.gs-head-text { display: flex; flex-direction: column; gap: 6px; }
.gs-head-text p { font-size: 14px; color: var(--text-2); }

/* przyklejony pasek okresów: trzyma się ekranu do końca sekcji cennika */
.gs-bar { position: sticky; top: calc(var(--promo-h) + var(--top-h)); z-index: 20; display: flex; justify-content: flex-end; margin-bottom: 16px; padding: 10px 0; pointer-events: none; }
.gs-bar-sentinel { display: block; height: 0; }
.gs-pers { pointer-events: auto; display: flex; align-items: center; gap: 4px; max-width: 100%; padding: 5px; border-radius: 999px; background: rgba(10, 15, 27, 0.72); border: 1px solid rgba(148, 178, 255, 0.16); box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05) inset; -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.4s ease; }
.gs-bar.is-stuck .gs-pers { background: rgba(8, 12, 24, 0.96); border-color: rgba(94, 200, 255, 0.34); box-shadow: 0 18px 40px -18px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(47, 123, 255, 0.12); }
.gs-pers-lab { display: inline-flex; align-items: center; gap: 6px; padding: 0 10px 0 8px; font-size: 12px; font-weight: 700; color: #7f8db0; white-space: nowrap; }
.gs-pers-lab svg { width: 14px; height: 14px; color: var(--sky); }
.gs-per { display: inline-flex; align-items: center; gap: 6px; padding: 8px 13px; border-radius: 999px; font-size: 13px; font-weight: 600; color: #8b98b2; white-space: nowrap; border: 1px solid transparent; transition: color 0.25s ease, background 0.35s ease, border-color 0.35s ease; }
.gs-per:hover { color: #d5deee; }
.gs-per.is-on { font-weight: 700; color: #fff; background: radial-gradient(130% 170% at 50% 140%, rgba(47, 123, 255, 0.55), rgba(10, 18, 36, 0.94) 66%); border-color: rgba(94, 200, 255, 0.55); }
.gs-per i { font-style: normal; padding: 1px 6px; border-radius: 999px; font-size: 9.5px; font-weight: 700; color: #052e1b; background: linear-gradient(135deg, #bbf7d0, #4ade80); }
.gs-per:focus-visible { outline: 2px solid var(--sky); outline-offset: 2px; }

.gs-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.gs-card { position: relative; display: flex; flex-direction: column; gap: 14px; padding: 20px; border-radius: 20px; background: linear-gradient(160deg, rgba(18, 24, 44, 0.6), rgba(9, 10, 22, 0.92)); border: 1px solid rgba(148, 178, 255, 0.14); transition: border-color 0.35s ease, transform 0.3s var(--ease); }
.gs-card:hover { border-color: rgba(94, 200, 255, 0.34); transform: translateY(-2px); }
.gs-card.is-top { background: linear-gradient(160deg, rgba(23, 42, 86, 0.9), rgba(9, 12, 24, 0.96)); border-color: rgba(94, 200, 255, 0.6); box-shadow: 0 0 46px -16px rgba(47, 123, 255, 0.85); }
.gs-card-top { display: flex; flex-direction: column; gap: 8px; }
.gs-card-lab { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.gs-card-lab small { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: #8fd8ff; }
.gs-card.is-top .gs-card-lab small { color: #bfe6ff; }
.gs-card-lab small i { font-style: normal; padding: 2px 8px; border-radius: 999px; font-size: 10.5px; font-weight: 700; color: #06121f; background: var(--sky); }
.gs-card-lab svg { width: 22px; height: 22px; flex-shrink: 0; color: var(--sky); }
.gs-card.is-top .gs-card-lab svg { color: #bfe6ff; }
.gs-card-ram { display: flex; align-items: baseline; gap: 7px; font-family: 'Sora', var(--font-head); font-weight: 800; font-size: 32px; line-height: 1; color: #fff; }
.gs-card-ram i { font-family: var(--font); font-style: normal; font-size: 12.5px; font-weight: 500; color: #8b98b2; }
.gs-meter { display: flex; gap: 3px; }
.gs-meter i { flex: 1; height: 6px; border-radius: 3px; background: rgba(148, 178, 255, 0.12); }
.gs-meter i.is-on { background: var(--sky); }
.gs-card.is-top .gs-meter i.is-on { background: #8fd8ff; }
.gs-specs { display: flex; flex-direction: column; gap: 7px; font-size: 12.5px; color: #8b98b2; list-style: none; }
.gs-specs li { display: flex; align-items: center; gap: 9px; }
.gs-specs svg { width: 14px; height: 14px; flex-shrink: 0; color: var(--sky); }
.gs-where { display: flex; flex-direction: column; gap: 6px; padding-top: 11px; border-top: 1px dashed rgba(148, 178, 255, 0.14); font-size: 12px; color: #c3cee2; }
.gs-where span { display: flex; align-items: center; gap: 9px; }
.gs-where span:first-child { font-weight: 600; }
.gs-where svg { width: 14px; height: 14px; flex-shrink: 0; color: #7f8db0; }
.gs-flag { width: 14px; height: 10px; flex-shrink: 0; border-radius: 2px; }
.gs-buy { display: flex; flex-direction: column; gap: 10px; margin-top: auto; padding-top: 13px; border-top: 1px solid rgba(148, 178, 255, 0.12); }
.gs-card.is-top .gs-buy { border-top-color: rgba(148, 178, 255, 0.18); }
.gs-price { display: flex; flex-direction: column; gap: 3px; }
.gs-old { display: flex; align-items: center; gap: 8px; }
.gs-old s { font-size: 12.5px; color: #6b7590; font-variant-numeric: tabular-nums; }
.gs-card.is-top .gs-old s { color: #93a2be; }
.gs-old i { font-style: normal; padding: 2px 7px; border-radius: 999px; font-size: 10px; font-weight: 700; color: #bfe6ff; background: rgba(47, 123, 255, 0.18); border: 1px solid rgba(94, 200, 255, 0.45); }
.gs-now { display: flex; align-items: baseline; gap: 6px; white-space: nowrap; }
.gs-now b { font-family: 'Sora', var(--font-head); font-weight: 700; font-size: 21px; color: #fff; font-variant-numeric: tabular-nums; }
.gs-now small { font-size: 11.5px; color: #8b98b2; }
.gs-total { font-size: 11.5px; color: #7f8db0; }
.gs-total:empty { display: none; }
/* zmiana okresu: te same animacje co na minecraft.html (mcTick, mcTickPulse) */
.gs-grid.is-tick .gs-now b { animation: mcTickPulse 0.55s ease; }
.gs-grid.is-tick .gs-old, .gs-grid.is-tick .gs-total { animation: mcTick 0.38s var(--ease) both; }
.gs-grid.is-tick .gs-card:nth-child(4n + 2) .gs-old, .gs-grid.is-tick .gs-card:nth-child(4n + 2) .gs-total { animation-delay: 0.05s; }
.gs-grid.is-tick .gs-card:nth-child(4n + 3) .gs-old, .gs-grid.is-tick .gs-card:nth-child(4n + 3) .gs-total { animation-delay: 0.1s; }
.gs-grid.is-tick .gs-card:nth-child(4n) .gs-old, .gs-grid.is-tick .gs-card:nth-child(4n) .gs-total { animation-delay: 0.15s; }
.gs-btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 18px; border-radius: 12px; font-size: 13.5px; font-weight: 700; color: #eaf4ff; background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.14); transition: background 0.3s ease, border-color 0.3s ease, color 0.25s ease, transform 0.35s var(--ease), box-shadow 0.35s ease; }
.gs-btn:hover { color: #fff; background: rgba(255, 255, 255, 0.11); border-color: rgba(255, 255, 255, 0.26); }
.gs-btn svg { transition: transform 0.3s var(--ease); }
.gs-btn:hover svg { transform: translateX(3px); }
.gs-card.is-top .gs-btn { color: #06213f; background: var(--blue-bg); border-color: rgba(255, 255, 255, 0.55); box-shadow: var(--blue-shadow); }
.gs-card.is-top .gs-btn:hover { transform: translateY(-1px); box-shadow: 0 1px 0 #ffffff inset, 0 0 0 4px rgba(143, 216, 255, 0.2), 0 12px 30px -10px rgba(143, 216, 255, 1); }

.gs-feats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.gs-feat { display: flex; flex-direction: column; gap: 10px; padding: 22px; border-radius: 18px; background: rgba(13, 19, 34, 0.6); border: 1px solid rgba(148, 178, 255, 0.12); transition: border-color 0.35s ease, transform 0.3s var(--ease); }
.gs-feat:hover { border-color: rgba(94, 200, 255, 0.3); transform: translateY(-2px); }
.gs-feat-ico { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 12px; color: var(--sky); background: rgba(94, 200, 255, 0.12); }
.gs-feat-ico svg { width: 18px; height: 18px; }
.gs-feat b { font-size: 15.5px; color: #fff; }
.gs-feat p { font-size: 13.5px; line-height: 1.55; color: #94a3bd; }

.gs-cta { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 30px; margin-top: 80px; padding: 36px 40px; border-radius: 26px; overflow: hidden; background: linear-gradient(120deg, rgba(23, 42, 86, 0.95), rgba(9, 12, 24, 0.97) 70%); border: 1px solid rgba(94, 200, 255, 0.4); }
.gs-cta img { position: absolute; right: 0; top: 0; width: 46%; height: 100%; object-fit: cover; opacity: 0.35; -webkit-mask-image: linear-gradient(90deg, transparent, #000 60%); mask-image: linear-gradient(90deg, transparent, #000 60%); pointer-events: none; }
.gs-cta-text { position: relative; display: flex; flex-direction: column; gap: 8px; }
.gs-cta-text h2 { font-family: var(--font-head); font-weight: 600; font-size: 26px; letter-spacing: -0.025em; color: #fff; }
.gs-cta-text p { font-size: 14.5px; color: #b7c3d8; }
.gs-cta .btn-blue { position: relative; flex-shrink: 0; padding: 14px 24px; font-size: 15px; }
.is-gra .faq { padding-top: 72px; }

@media (max-width: 1180px) {
    .gs-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .gs-grid.is-tick .gs-card .gs-old, .gs-grid.is-tick .gs-card .gs-total { animation-delay: 0s; }
}
@media (max-width: 980px) {
    .gs-bar { justify-content: stretch; }
    .gs-pers { width: 100%; overflow-x: auto; scrollbar-width: none; }
    .gs-pers::-webkit-scrollbar { display: none; }
    .gs-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .gs-feats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 720px) {
    .gs-hero { padding-top: calc(var(--promo-h) + var(--top-h) + 36px); }
    .gs-in { padding-left: 18px; padding-right: 18px; }
    .gs-lead { font-size: 16px; }
    .gs-bar { padding: 8px 0; }
    .gs-pers-lab { display: none; }
    .gs-grid, .gs-feats { grid-template-columns: minmax(0, 1fr); }
    .gs-cta { flex-direction: column; align-items: flex-start; padding: 28px 22px; }
    .gs-cta img { width: 100%; opacity: 0.18; }
    .gs-cta .btn-blue { width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
    .gs-hero-bg img, .gs-grid.is-tick .gs-now b, .gs-grid.is-tick .gs-old, .gs-grid.is-tick .gs-total { animation: none; }
    .gs-card:hover, .gs-feat:hover { transform: none; }
}

/* CTA Gamehost+ w cenniku: kafelek w siatce (<= 7 pakietów) albo baner pod siatką (8 pakietów) */
.gs-plus { position: relative; display: block; overflow: hidden; container-type: inline-size; grid-column: span var(--s4, 1); border-radius: 20px; background: radial-gradient(90% 70% at 100% 0%, rgba(124, 58, 237, 0.45), transparent 62%), linear-gradient(165deg, rgba(34, 18, 78, 0.95), rgba(12, 10, 30, 0.97)); border: 1px solid rgba(167, 139, 250, 0.5); box-shadow: 0 0 46px -18px rgba(139, 92, 246, 0.8); transition: border-color 0.35s ease, box-shadow 0.4s ease, transform 0.3s var(--ease); }
.gs-plus:hover { border-color: rgba(196, 181, 253, 0.8); box-shadow: 0 0 56px -14px rgba(139, 92, 246, 0.9); transform: translateY(-2px); }
.gs-plus::after { content: '+'; position: absolute; right: -8px; bottom: -52px; font-family: var(--font-head); font-weight: 600; font-size: 190px; line-height: 1; color: transparent; -webkit-text-stroke: 1px rgba(196, 181, 253, 0.16); pointer-events: none; }
.gs-plus-in { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 14px; height: 100%; padding: 20px; }
.gs-plus-top { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.gs-plus-top img { height: 22px; width: auto; }
.gs-plus-tag { padding: 3px 9px; border-radius: 999px; font-size: 10.5px; font-weight: 700; color: #fff; background: linear-gradient(135deg, #8b5cf6, #6d28d9); white-space: nowrap; }
.gs-plus-text { display: flex; flex-direction: column; gap: 6px; }
.gs-plus-text b { font-family: var(--font-head); font-weight: 600; font-size: 19px; line-height: 1.15; color: #fff; }
.gs-plus-text .gs-plus-p { font-size: 13px; line-height: 1.5; color: #c9c3ea; }
.gs-plus-list { display: flex; flex-direction: column; gap: 8px; font-size: 12.5px; color: #ddd6fe; list-style: none; }
.gs-plus-list li { display: flex; align-items: center; gap: 9px; }
.gs-plus-list svg { width: 14px; height: 14px; flex-shrink: 0; color: #c4b5fd; }
.gs-plus-buy { display: flex; flex-direction: column; gap: 10px; margin-top: auto; padding-top: 13px; border-top: 1px solid rgba(196, 181, 253, 0.2); }
.gs-plus-price { display: flex; align-items: baseline; gap: 6px; font-size: 12px; color: #c9c3ea; white-space: nowrap; }
.gs-plus-price b { font-family: 'Sora', var(--font-head); font-weight: 700; font-size: 21px; color: #fff; }
.gs-plus .btn-plus { justify-content: center; padding: 12px 18px; font-size: 13.5px; }
.gs-plus:hover .btn-plus svg { transform: translateX(3px); }
/* szeroki kafelek (2-3 pola) i baner: układ poziomy */
.gs-plus-games { display: none; }
/* średni kafelek (2 pola): nagłówek, rząd okładek gier, korzyści jako pigułki, cena i przycisk */
@container (min-width: 520px) {
    .gs-plus-in { padding: 24px 26px; gap: 16px; justify-content: space-between; }
    .gs-plus-buy { margin-top: 0; }
    .gs-plus-top { justify-content: flex-start; }
    .gs-plus-text b { font-size: 22px; }
    .gs-plus-text .gs-plus-p { font-size: 14px; }
    .gs-plus-games { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); align-items: start; gap: 8px; }
    .gs-plus-list li:nth-child(2) { display: none; }
    .gs-plus-games img, .gs-plus-games i { display: block; width: 100%; height: auto; aspect-ratio: 16 / 9; border-radius: 10px; object-fit: cover; border: 1px solid rgba(196, 181, 253, 0.28); box-shadow: 0 8px 18px -10px rgba(0, 0, 0, 0.7); transition: transform 0.35s var(--ease); }
    .gs-plus-games i { display: grid; place-items: center; font-style: normal; font-size: 13px; font-weight: 800; color: #ddd6fe; background: rgba(139, 92, 246, 0.16); border-style: dashed; border-color: rgba(196, 181, 253, 0.45); }
    .gs-plus:hover .gs-plus-games img { transform: translateY(-2px); }
    .gs-plus:hover .gs-plus-games img:nth-child(even) { transform: translateY(2px); }
    .gs-plus-list { flex-direction: row; flex-wrap: wrap; gap: 6px; }
    .gs-plus-list li { gap: 6px; padding: 5px 11px 5px 8px; border-radius: 999px; font-size: 12px; background: rgba(139, 92, 246, 0.14); border: 1px solid rgba(196, 181, 253, 0.22); }
    .gs-plus-list svg { width: 12px; height: 12px; }
    .gs-plus-buy { flex-direction: row; align-items: center; justify-content: space-between; }
    .gs-plus::after { right: -10px; bottom: -70px; }
}
/* baner (pełna szerokość): tekst, korzyści, cena w jednym rzędzie */
@container (min-width: 880px) {
    .gs-plus-in { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr) auto; grid-template-rows: auto auto; align-items: center; column-gap: 28px; row-gap: 12px; padding: 26px 28px; }
    .gs-plus-top { grid-column: 1; }
    .gs-plus-text { grid-column: 1; }
    .gs-plus-games { display: none; }
    .gs-plus-list { grid-column: 2; grid-row: 1 / 3; flex-direction: column; gap: 10px; }
    .gs-plus-list li { padding: 0; font-size: 13.5px; background: none; border: 0; }
    .gs-plus-list li:nth-child(2) { display: flex; }
    .gs-plus-list svg { width: 14px; height: 14px; }
    .gs-plus-buy { grid-column: 3; grid-row: 1 / 3; flex-direction: column; align-items: flex-end; margin-top: 0; padding-top: 0; border-top: 0; }
    .gs-plus::after { right: 30%; bottom: -60px; }
}
.gs-plus--banner { margin-top: 14px; }
@media (max-width: 1180px) { .gs-plus { grid-column: span var(--s3, 1); } }
@media (max-width: 980px) { .gs-plus { grid-column: span var(--s2, 1); } }
@media (max-width: 720px) { .gs-plus { grid-column: span 1; } }
@media (prefers-reduced-motion: reduce) { .gs-plus:hover { transform: none; } }

/* =========================================================
   PRZYCISKI (komplet B + H)
   ========================================================= */
.mc-cta, .zam-next, .zam-sum-cta, .vps-card.is-top .vps-card-btn { color: #06213f; background: var(--blue-bg); border: 1px solid rgba(255, 255, 255, 0.55); box-shadow: var(--blue-shadow); transition: transform 0.35s var(--ease), filter 0.25s ease, border-color 0.3s ease, box-shadow 0.35s ease; }
.mc-cta:hover, .zam-next:hover, .zam-sum-cta:hover, .vps-card.is-top .vps-card-btn:hover { color: #06213f; transform: translateY(-1px); filter: brightness(1.05); border-color: rgba(255, 255, 255, 0.8); box-shadow: 0 1px 0 #ffffff inset, 0 0 0 4px rgba(143, 216, 255, 0.2), 0 12px 30px -10px rgba(143, 216, 255, 1); }
.vps-card-btn { color: #eaf4ff; background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.14); box-shadow: 0 1px 0 rgba(255, 255, 255, 0.12) inset; }
.vps-card-btn:hover { color: #fff; background: rgba(255, 255, 255, 0.11); border-color: rgba(255, 255, 255, 0.26); }
.vps-gate-btn { color: #06213f; background: var(--blue-bg); border: 1px solid rgba(255, 255, 255, 0.55); box-shadow: var(--blue-shadow); }
.vps-gate--vds .vps-gate-btn { color: #042f36; background: linear-gradient(135deg, #f0fdff 0%, #bff4fb 55%, #67e8f9 100%); border-color: rgba(255, 255, 255, 0.55); box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset, 0 8px 24px -10px rgba(103, 232, 249, 0.8); }
.vps-gate.is-on .vps-gate-btn { color: #93a2be; background: rgba(255, 255, 255, 0.05); border-color: rgba(255, 255, 255, 0.14); box-shadow: none; }
.is-zamp .zam-next, .is-zamp .zam-sum-cta, .gp-plan.is-top .gp-plan-btn { color: #1e0b3d; background: linear-gradient(135deg, #faf7ff 0%, #e4dcff 55%, #c4b5fd 100%); border: 1px solid rgba(255, 255, 255, 0.5); box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset, 0 8px 24px -10px rgba(196, 181, 253, 0.9); }
.is-zamp .zam-next:hover, .is-zamp .zam-sum-cta:hover, .gp-plan.is-top .gp-plan-btn:hover { color: #1e0b3d; filter: brightness(1.05); border-color: rgba(255, 255, 255, 0.8); box-shadow: 0 1px 0 #ffffff inset, 0 0 0 4px rgba(196, 181, 253, 0.22), 0 12px 30px -10px rgba(196, 181, 253, 1); }
.gp-plan-btn { background: rgba(255, 255, 255, 0.05); border-color: rgba(255, 255, 255, 0.14); box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1) inset; }
.gp-plan-btn:hover { background: rgba(255, 255, 255, 0.1); border-color: rgba(255, 255, 255, 0.24); }
@media (prefers-reduced-motion: reduce) {
    .mc-cta:hover, .zam-next:hover, .zam-sum-cta:hover, .vps-card-btn:hover, .btn-blue:hover, .btn-plus:hover { transform: none; }
}
/* ===== POMOC (pomoc.css) ===== */
/* ---------- wspólne: baza wiedzy i poradniki ---------- */
.ph-page { position: relative; padding-top: calc(var(--promo-h) + var(--top-h)); overflow-x: clip; }
.ph-in { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.ph-crumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 6px 8px; font-size: 13px; color: #7f8db0; }
.ph-crumbs a { color: #9fb0cc; transition: color 0.25s ease; }
.ph-crumbs a:hover { color: #fff; }
.ph-crumbs span { color: #3b4a66; }
.ph-crumbs b { font-weight: 600; color: #c3cee2; }
.ph-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 6px 12px; font-size: 12.5px; color: #7f8db0; }
.ph-meta i { font-style: normal; color: #3b4a66; }
.ph-meta > span { display: inline-flex; align-items: center; gap: 6px; }
.ph-meta img { display: block; height: 14px; width: auto; }
.ph-meta b { font-weight: 600; color: #c3cee2; }

.ph-search { position: relative; }
.ph-search-field { display: flex; align-items: center; gap: 12px; padding: 7px 10px 7px 18px; border-radius: 16px; background: rgba(10, 15, 27, 0.85); border: 1px solid rgba(148, 178, 255, 0.24); transition: border-color 0.25s ease, box-shadow 0.3s ease; }
.ph-search-field:focus-within { border-color: rgba(94, 200, 255, 0.6); box-shadow: 0 0 0 5px rgba(47, 123, 255, 0.12), 0 20px 50px -24px rgba(47, 123, 255, 0.8); }
.ph-search-field > svg { flex-shrink: 0; width: 18px; height: 18px; color: var(--sky); }
.ph-search-field input { flex: 1; min-width: 0; height: 40px; border: 0; outline: 0; background: none; font: inherit; font-size: 15.5px; color: #fff; }
.ph-search-field input::placeholder { color: #7f8db0; }
.ph-search-field input::-webkit-search-cancel-button { display: none; }
.ph-search-field kbd { padding: 4px 9px; border-radius: 8px; font: 700 11px 'JetBrains Mono', monospace; color: #8b98b2; border: 1px solid rgba(148, 178, 255, 0.22); }
.ph-results { position: absolute; left: 0; right: 0; top: calc(100% + 8px); z-index: 40; max-height: 440px; overflow-y: auto; padding: 6px; border-radius: 16px; text-align: left; background: rgba(8, 12, 24, 0.98); border: 1px solid rgba(148, 178, 255, 0.2); box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.85); opacity: 0; visibility: hidden; transform: translateY(-6px); transition: opacity 0.2s ease, transform 0.25s var(--ease), visibility 0s linear 0.25s; }
.ph-results.is-open { opacity: 1; visibility: visible; transform: none; transition: opacity 0.2s ease, transform 0.25s var(--ease), visibility 0s; }
.ph-result { display: flex; flex-direction: column; gap: 2px; padding: 10px 12px; border-radius: 11px; transition: background 0.2s ease; }
.ph-result:hover, .ph-result.is-active { background: rgba(94, 200, 255, 0.1); }
.ph-result i { font-style: normal; font-size: 11px; font-weight: 700; color: #8fd8ff; }
.ph-result b { font-size: 14.5px; color: #fff; }
.ph-result small { display: -webkit-box; overflow: hidden; font-size: 12.5px; line-height: 1.45; color: #8b98b2; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.ph-empty { padding: 14px; font-size: 13.5px; line-height: 1.5; color: #94a3bd; }

/* treść artykułu */
.ph-doc { min-width: 0; font-size: 15.5px; line-height: 1.75; color: #c3cee2; }
.ph-doc > * + *, .ph-doc section > * + * { margin-top: 18px; }
.ph-doc section + section { margin-top: 40px; }
.ph-doc h2 { margin-top: 40px; font-family: var(--font-head); font-weight: 600; font-size: 24px; line-height: 1.2; letter-spacing: -0.02em; color: #fff; scroll-margin-top: calc(var(--promo-h) + var(--top-h) + 20px); }
.ph-doc section > h2:first-child, .ph-doc > h2:first-child { margin-top: 0; }
.ph-doc h3 { margin-top: 28px; font-size: 17px; font-weight: 700; line-height: 1.35; color: #fff; scroll-margin-top: calc(var(--promo-h) + var(--top-h) + 20px); }
.ph-doc strong { font-weight: 700; color: #fff; }
.ph-doc em { color: #dfe7f5; }
.ph-doc a:not([class]) { color: var(--sky); text-decoration: underline; text-decoration-color: rgba(94, 200, 255, 0.35); text-underline-offset: 3px; transition: color 0.25s ease, text-decoration-color 0.25s ease; }
.ph-doc a:not([class]):hover { color: #8fd8ff; text-decoration-color: currentColor; }
.ph-doc code { padding: 2px 7px; border-radius: 6px; font-family: 'JetBrains Mono', monospace; font-size: 0.84em; color: #bfe6ff; background: rgba(148, 178, 255, 0.1); overflow-wrap: anywhere; }
.ph-doc pre { padding: 16px 18px; border-radius: 14px; overflow-x: auto; line-height: 1.6; background: rgba(4, 7, 14, 0.9); border: 1px solid rgba(148, 178, 255, 0.14); }
.ph-doc pre code { padding: 0; font-size: 13.5px; color: #dfe7f5; background: none; white-space: pre; overflow-wrap: normal; }
.ph-doc ul { display: flex; flex-direction: column; gap: 8px; padding: 0; list-style: none; }
.ph-doc ul > li { position: relative; padding-left: 22px; }
.ph-doc ul > li::before { content: ''; position: absolute; left: 6px; top: 0.72em; width: 6px; height: 6px; border-radius: 50%; background: var(--sky); }
.ph-doc ol { display: flex; flex-direction: column; gap: 12px; padding: 0; list-style: none; counter-reset: krok; }
.ph-doc ol > li { position: relative; min-height: 28px; padding-left: 42px; counter-increment: krok; }
.ph-doc ol > li::before { content: counter(krok); position: absolute; left: 0; top: 0; display: grid; place-items: center; width: 28px; height: 28px; border-radius: 50%; font-family: 'Sora', var(--font-head); font-size: 13px; font-weight: 800; line-height: 1; color: #06121f; background: var(--sky); }
.ph-note { display: flex; gap: 14px; padding: 16px 18px; border-radius: 14px; font-size: 14.5px; line-height: 1.65; color: #d5deee; background: rgba(47, 123, 255, 0.09); border: 1px solid rgba(94, 200, 255, 0.28); }
.ph-note::before { content: 'i'; display: grid; place-items: center; flex-shrink: 0; width: 26px; height: 26px; border-radius: 8px; font-family: 'Sora', var(--font-head); font-size: 13px; font-weight: 800; color: #06121f; background: var(--sky); }
.ph-table { overflow-x: auto; border-radius: 16px; border: 1px solid rgba(148, 178, 255, 0.14); }
.ph-table table { width: 100%; border-collapse: collapse; font-size: 14.5px; line-height: 1.5; }
.ph-table th { padding: 12px 18px; font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-align: left; text-transform: uppercase; white-space: nowrap; color: #7f8db0; background: rgba(10, 15, 27, 0.9); }
.ph-table td { padding: 12px 18px; vertical-align: top; color: #c3cee2; border-top: 1px solid rgba(148, 178, 255, 0.08); }
.ph-table tbody tr:nth-child(even) td { background: rgba(148, 178, 255, 0.03); }
.ph-figure { margin: 0; }
.ph-figure img { display: block; width: 100%; height: auto; border-radius: 16px; border: 1px solid rgba(148, 178, 255, 0.16); }
.ph-figure figcaption { margin-top: 10px; font-size: 13px; line-height: 1.55; color: #8b98b2; }
.ph-doc .faq-list { display: flex; flex-direction: column; gap: 10px; }

/* ---------- baza wiedzy: strona główna ---------- */
.wk-hero { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 16px; padding-top: 64px; text-align: center; }
.wk-hero::before { content: ''; position: absolute; left: 50%; top: -180px; z-index: -1; width: 1100px; height: 560px; border-radius: 50%; background: radial-gradient(closest-side, rgba(47, 123, 255, 0.2), transparent 70%); transform: translateX(-50%); pointer-events: none; }
.wk-hero .gs-crumb { align-self: center; }
.wk-hero h1 { font-family: var(--font-head); font-weight: 600; font-size: clamp(2.2rem, 4vw, 3rem); line-height: 1.04; letter-spacing: -0.03em; color: #fff; }
.wk-hero h1 span { color: var(--sky); }
.wk-hero > p { max-width: 620px; font-size: 16.5px; line-height: 1.6; color: #b7c3d8; }
.wk-hero .ph-search { width: min(720px, 100%); margin-top: 10px; }
.wk-hero .ph-search-field { border-color: rgba(94, 200, 255, 0.4); box-shadow: 0 0 0 5px rgba(47, 123, 255, 0.1), 0 20px 50px -24px rgba(47, 123, 255, 0.8); }
.wk-popular { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 8px; font-size: 13px; color: #8b98b2; }
.wk-popular a { padding: 5px 11px; border-radius: 999px; color: #c3cee2; background: rgba(148, 178, 255, 0.07); border: 1px solid rgba(148, 178, 255, 0.16); transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease; }
.wk-popular a:hover { color: #fff; border-color: rgba(94, 200, 255, 0.5); background: rgba(94, 200, 255, 0.08); }

.wk-cats { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; margin-top: 64px; }
.wk-cat { position: relative; display: flex; flex-direction: column; gap: 14px; padding: 24px; border-radius: 22px; overflow: hidden; background: linear-gradient(160deg, rgba(18, 24, 44, 0.6), rgba(9, 10, 22, 0.92)); border: 1px solid rgba(148, 178, 255, 0.14); transition: border-color 0.35s ease; scroll-margin-top: calc(var(--promo-h) + var(--top-h) + 20px); }
.wk-cat:hover { border-color: rgba(94, 200, 255, 0.34); }
.wk-cat--mc { background: linear-gradient(160deg, rgba(23, 42, 86, 0.85), rgba(9, 12, 24, 0.96)); border-color: rgba(94, 200, 255, 0.4); }
.wk-cat-render { position: absolute; right: -20px; bottom: -40px; width: auto; height: 230px; opacity: 0.3; pointer-events: none; }
.wk-cat-head { position: relative; display: flex; align-items: center; gap: 14px; }
.wk-cat-ico { display: grid; place-items: center; flex-shrink: 0; width: 46px; height: 46px; border-radius: 14px; color: var(--sky); background: rgba(94, 200, 255, 0.12); border: 1px solid rgba(94, 200, 255, 0.26); }
.wk-cat-ico svg { width: 22px; height: 22px; }
.wk-cat-ico img { width: 46px; height: 46px; border-radius: 14px; }
.wk-cat--mc .wk-cat-ico { background: none; border: 0; }
.wk-cat-head h2 { font-family: var(--font-head); font-weight: 600; font-size: 19px; color: #fff; }
.wk-cat-head small { display: block; margin-top: 2px; font-size: 12.5px; color: #7f8db0; }
.wk-cat > p { position: relative; max-width: 460px; font-size: 14px; line-height: 1.55; color: #94a3bd; }
.wk-cat--mc > p { color: #b7c3d8; }
.wk-cat-links { position: relative; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 7px 16px; margin: 0; padding: 0; list-style: none; }
.wk-cat-links a { display: inline-flex; gap: 7px; font-size: 13.5px; line-height: 1.4; color: #c3cee2; transition: color 0.25s ease; }
.wk-cat-links a::before { content: '›'; color: var(--sky); transition: transform 0.25s var(--ease); }
.wk-cat-links a:hover { color: #fff; }
.wk-cat-links a:hover::before { transform: translateX(2px); }
.wk-cat-box { position: relative; padding-top: 12px; border-top: 1px solid rgba(148, 178, 255, 0.1); }
.wk-cat-more { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.4s var(--ease); }
.wk-cat-more > ul { min-height: 0; overflow: hidden; visibility: hidden; transition: visibility 0s linear 0.4s; }
.wk-cat-more > ul::before { content: ''; display: block; height: 7px; grid-column: 1 / -1; }
.wk-cat.is-open .wk-cat-more { grid-template-rows: 1fr; }
.wk-cat.is-open .wk-cat-more > ul { visibility: visible; transition-delay: 0s; }
.wk-cat-toggle { position: relative; align-self: flex-start; display: inline-flex; align-items: center; gap: 6px; padding: 0; border: 0; font: inherit; font-size: 13px; font-weight: 700; color: var(--sky); background: none; cursor: pointer; }
.wk-cat-toggle svg { width: 12px; height: 12px; transition: transform 0.3s var(--ease); }
.wk-cat.is-open .wk-cat-toggle svg { transform: rotate(180deg); }
.wk-cat-toggle:hover { color: #8fd8ff; }

.wk-bottom { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr); gap: 16px; margin-top: 48px; padding-bottom: 32px; }
.wk-col { display: flex; flex-direction: column; gap: 12px; }
.wk-col-t { font-family: var(--font-head); font-weight: 600; font-size: 20px; color: #fff; }
.wk-list { display: flex; flex-direction: column; overflow: hidden; border-radius: 18px; background: rgba(10, 15, 27, 0.6); border: 1px solid rgba(148, 178, 255, 0.12); }
.wk-list a { display: flex; align-items: center; gap: 14px; padding: 14px 18px; border-bottom: 1px solid rgba(148, 178, 255, 0.08); transition: background 0.25s ease; }
.wk-list a:last-child { border-bottom: 0; }
.wk-list a:hover { background: rgba(148, 178, 255, 0.05); }
.wk-list-n { font-family: 'JetBrains Mono', monospace; font-size: 12px; color: #5b647d; }
.wk-list b { flex: 1; font-size: 14.5px; font-weight: 600; color: #fff; }
.wk-list small { padding: 3px 9px; border-radius: 999px; font-size: 11px; white-space: nowrap; color: #8fd8ff; background: rgba(94, 200, 255, 0.1); }
.wk-dc { display: flex; flex-direction: column; gap: 10px; padding: 22px; border-radius: 18px; background: linear-gradient(120deg, #5865f2, #3c45c9); box-shadow: 0 24px 50px -28px rgba(88, 101, 242, 0.9); transition: transform 0.3s var(--ease), box-shadow 0.3s ease; }
.wk-dc:hover { transform: translateY(-2px); box-shadow: 0 30px 60px -28px rgba(88, 101, 242, 1); }
.wk-dc b { font-size: 17px; color: #fff; }
.wk-dc > span { font-size: 14px; line-height: 1.5; color: rgba(255, 255, 255, 0.85); }
.wk-dc em { align-self: flex-start; display: inline-flex; align-items: center; gap: 6px; margin-top: 2px; padding: 11px 18px; border-radius: 12px; font-style: normal; font-size: 13.5px; font-weight: 700; color: #3c45c9; background: #fff; }
.wk-dc em svg { transition: transform 0.3s var(--ease); }
.wk-dc:hover em svg { transform: translateX(3px); }
.wk-guide { display: flex; align-items: center; gap: 12px; padding: 16px 18px; border-radius: 18px; background: rgba(10, 15, 27, 0.6); border: 1px solid rgba(148, 178, 255, 0.12); transition: border-color 0.3s ease; }
.wk-guide:hover { border-color: rgba(94, 200, 255, 0.4); }
.wk-guide-ico { display: grid; place-items: center; flex-shrink: 0; width: 36px; height: 36px; border-radius: 11px; color: var(--sky); background: rgba(94, 200, 255, 0.12); }
.wk-guide-ico svg { width: 18px; height: 18px; }
.wk-guide-t { display: flex; flex-direction: column; gap: 1px; }
.wk-guide-t b { font-size: 14px; color: #fff; }
.wk-guide-t small { font-size: 12.5px; color: #8b98b2; }
.wk-guide > svg { margin-left: auto; color: var(--sky); transition: transform 0.3s var(--ease); }
.wk-guide:hover > svg { transform: translateX(3px); }

/* ---------- baza wiedzy: artykuł ---------- */
.wk-layout { display: grid; grid-template-columns: 260px minmax(0, 1fr) 240px; align-items: start; gap: 44px; padding: 36px 0 48px; }
.wk-nav { position: sticky; top: calc(var(--promo-h) + var(--top-h) + 20px); display: flex; flex-direction: column; gap: 16px; max-height: calc(100vh - var(--promo-h) - var(--top-h) - 40px); overflow-y: auto; padding-right: 4px; scrollbar-width: thin; scrollbar-color: rgba(148, 178, 255, 0.2) transparent; }
.wk-nav .ph-search-field { gap: 9px; padding: 3px 8px 3px 13px; border-radius: 13px; }
.wk-nav .ph-search-field > svg { width: 15px; height: 15px; }
.wk-nav .ph-search-field input { height: 38px; font-size: 13.5px; }
.wk-nav .ph-search-field kbd { display: none; }
.wk-nav .ph-results { max-height: 360px; }
.wk-groups { display: flex; flex-direction: column; gap: 4px; }
.wk-group-btn { display: flex; align-items: center; justify-content: space-between; gap: 10px; width: 100%; padding: 9px 12px; border: 0; border-radius: 11px; font: inherit; font-size: 14px; text-align: left; color: #c3cee2; background: none; cursor: pointer; transition: color 0.25s ease, background 0.3s ease; }
.wk-group-btn:hover { color: #fff; background: rgba(148, 178, 255, 0.05); }
.wk-group-btn small { font-size: 12px; color: #5b647d; transition: color 0.25s ease; }
.wk-group.is-open > .wk-group-btn { font-weight: 700; color: #fff; background: rgba(148, 178, 255, 0.07); }
.wk-group.is-open > .wk-group-btn small { color: #8fd8ff; }
.wk-group-list { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.35s var(--ease); }
.wk-group-list > ul { min-height: 0; overflow: hidden; margin: 0 0 0 12px; padding: 0 0 0 12px; list-style: none; border-left: 1px solid rgba(148, 178, 255, 0.16); visibility: hidden; transition: visibility 0s linear 0.35s; }
.wk-group-list > ul::before, .wk-group-list > ul::after { content: ''; display: block; height: 3px; }
.wk-group.is-open .wk-group-list { grid-template-rows: 1fr; }
.wk-group.is-open .wk-group-list > ul { visibility: visible; transition-delay: 0s; }
.wk-group-list a { display: block; padding: 6px 10px; border-radius: 9px; border: 1px solid transparent; font-size: 13.5px; line-height: 1.4; color: #94a3bd; transition: color 0.25s ease, background 0.3s ease; }
.wk-group-list a:hover { color: #fff; }
.wk-group-list a.is-active { font-weight: 700; color: #fff; background: radial-gradient(130% 170% at 0% 50%, rgba(47, 123, 255, 0.4), rgba(10, 18, 36, 0.9) 70%); border-color: rgba(94, 200, 255, 0.4); }

.wk-art { min-width: 0; }
.wk-art-head { display: flex; flex-direction: column; gap: 14px; margin-bottom: 26px; padding-bottom: 18px; border-bottom: 1px solid rgba(148, 178, 255, 0.1); }
.wk-art-head h1 { font-family: var(--font-head); font-weight: 600; font-size: clamp(1.9rem, 3vw, 2.5rem); line-height: 1.08; letter-spacing: -0.03em; color: #fff; }
.wk-lead { font-size: 17px; line-height: 1.6; color: #b7c3d8; }
.wk-help { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 40px; padding: 18px 20px; border-radius: 16px; background: rgba(10, 15, 27, 0.7); border: 1px solid rgba(148, 178, 255, 0.14); }
.wk-help > span { display: flex; flex-direction: column; gap: 2px; }
.wk-help b { font-size: 15px; color: #fff; }
.wk-help small { font-size: 13.5px; color: #94a3bd; }
.wk-help .btn-glass { flex-shrink: 0; padding: 10px 16px; font-size: 13.5px; }
.wk-pager { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin-top: 12px; }
.wk-pager a { display: flex; flex-direction: column; gap: 3px; padding: 16px 18px; border-radius: 14px; border: 1px solid rgba(148, 178, 255, 0.14); transition: border-color 0.3s ease, background 0.3s ease; }
.wk-pager a:hover { border-color: rgba(94, 200, 255, 0.45); background: rgba(148, 178, 255, 0.04); }
.wk-pager small { font-size: 12px; color: #7f8db0; }
.wk-pager b { font-size: 14.5px; color: #fff; }
.wk-pager .is-next { grid-column: 2; align-items: flex-end; text-align: right; }

.ph-sticky { position: sticky; top: calc(var(--promo-h) + var(--top-h) + 20px); display: flex; flex-direction: column; gap: 18px; }
.wk-toc { display: flex; flex-direction: column; gap: 2px; padding-left: 14px; border-left: 1px solid rgba(148, 178, 255, 0.14); }
.ph-toc-t { display: block; margin-bottom: 6px; font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: #7f8db0; }
.wk-toc a { position: relative; padding: 5px 0; font-size: 13.5px; line-height: 1.4; color: #8b98b2; transition: color 0.25s ease; }
.wk-toc a::before { content: ''; position: absolute; left: -15px; top: 4px; bottom: 4px; width: 2px; background: var(--sky); transform: scaleY(0); transition: transform 0.3s var(--ease); }
.wk-toc a:hover { color: #fff; }
.wk-toc a.is-active { color: #fff; }
.wk-toc a.is-active::before { transform: scaleY(1); }
.wk-promo { display: flex; flex-direction: column; gap: 8px; padding: 16px; border-radius: 16px; background: linear-gradient(160deg, rgba(23, 42, 86, 0.8), rgba(9, 12, 24, 0.95)); border: 1px solid rgba(94, 200, 255, 0.35); transition: border-color 0.3s ease, transform 0.3s var(--ease); }
.wk-promo:hover { border-color: rgba(94, 200, 255, 0.6); transform: translateY(-2px); }
.wk-promo small { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--sky); }
.wk-promo b { font-size: 14px; line-height: 1.35; color: #fff; }
.wk-promo > span { font-size: 12.5px; line-height: 1.5; color: #b7c3d8; }
.wk-promo em { display: inline-flex; align-items: center; gap: 5px; font-style: normal; font-size: 13px; font-weight: 700; color: var(--sky); }
.wk-promo em svg { width: 12px; height: 12px; transition: transform 0.3s var(--ease); }
.wk-promo:hover em svg { transform: translateX(3px); }
.wk-promo--dc { background: linear-gradient(160deg, rgba(88, 101, 242, 0.35), rgba(12, 12, 36, 0.95)); border-color: rgba(129, 140, 248, 0.45); }
.wk-promo--dc small, .wk-promo--dc em { color: #c7d2fe; }

/* ---------- poradniki: lista ---------- */
.pa-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; padding-top: 56px; }
.pa-head-text { display: flex; flex-direction: column; gap: 12px; max-width: 700px; }
.pa-head h1 { font-family: var(--font-head); font-weight: 600; font-size: clamp(2.1rem, 3.6vw, 2.75rem); line-height: 1.04; letter-spacing: -0.03em; color: #fff; }
.pa-head h1 span { color: var(--sky); }
.pa-head p { font-size: 16.5px; line-height: 1.6; color: #b7c3d8; }
.pa-head .ph-search { flex-shrink: 0; width: 340px; }
.pa-head .ph-search-field { padding: 4px 10px 4px 16px; border-radius: 14px; }
.pa-head .ph-search-field input { font-size: 14.5px; }
.pa-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 26px; }
.pa-chip { display: inline-flex; align-items: center; gap: 7px; padding: 9px 16px; border-radius: 999px; border: 1px solid rgba(148, 178, 255, 0.16); font: inherit; font-size: 13.5px; font-weight: 600; color: #c3cee2; background: rgba(148, 178, 255, 0.07); cursor: pointer; transition: color 0.25s ease, background 0.3s ease, border-color 0.3s ease; }
.pa-chip i { font-style: normal; font-size: 11.5px; color: #7f8db0; transition: color 0.25s ease; }
.pa-chip:hover { color: #fff; border-color: rgba(94, 200, 255, 0.4); }
.pa-chip.is-on { font-weight: 700; color: #06213f; background: var(--blue-bg); border-color: rgba(255, 255, 255, 0.5); }
.pa-chip.is-on i { color: #1e4b7a; }
.pa-chip:focus-visible { outline: 2px solid var(--sky); outline-offset: 2px; }

.pa-list { transition: opacity 0.16s ease, transform 0.16s ease; }
.pa-list.is-swap { opacity: 0; transform: translateY(6px); }
.pa-feat { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr); margin-top: 28px; overflow: hidden; border-radius: 24px; background: linear-gradient(120deg, rgba(23, 42, 86, 0.9), rgba(9, 12, 24, 0.97)); border: 1px solid rgba(94, 200, 255, 0.4); box-shadow: 0 30px 70px -40px rgba(47, 123, 255, 0.9); transition: border-color 0.35s ease, transform 0.3s var(--ease); }
.pa-feat[hidden] { display: none !important; }
.pa-feat:hover { border-color: rgba(94, 200, 255, 0.7); transform: translateY(-2px); }
.pa-feat-img { min-height: 320px; overflow: hidden; }
.pa-feat-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.pa-feat:hover .pa-feat-img img { transform: scale(1.04); }
.pa-feat-body { display: flex; flex-direction: column; justify-content: center; gap: 14px; padding: 34px 38px; }
.pa-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.pa-tag { padding: 4px 10px; border-radius: 999px; font-size: 11px; font-weight: 700; color: #8fd8ff; background: rgba(94, 200, 255, 0.12); }
.pa-tag--on { color: #06121f; background: var(--sky); }
.pa-feat-t { font-family: var(--font-head); font-weight: 600; font-size: 28px; line-height: 1.12; color: #fff; }
.pa-feat-body > p { font-size: 15px; line-height: 1.6; color: #b7c3d8; }
.pa-feat .btn-blue { align-self: flex-start; margin-top: 4px; }
.pa-feat .btn-blue svg { transition: transform 0.3s var(--ease); }
.pa-feat:hover .btn-blue svg { transform: translateX(3px); }

.pa-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; margin-top: 28px; }
.pa-card { display: flex; flex-direction: column; overflow: hidden; border-radius: 20px; background: linear-gradient(160deg, rgba(18, 24, 44, 0.6), rgba(9, 10, 22, 0.92)); border: 1px solid rgba(148, 178, 255, 0.14); transition: border-color 0.35s ease, transform 0.3s var(--ease); }
.pa-card[hidden] { display: none !important; }
.pa-card:hover { border-color: rgba(94, 200, 255, 0.4); transform: translateY(-3px); }
.pa-card.is-pop { animation: paPop 0.38s var(--ease) both; animation-delay: calc(var(--i, 0) * 22ms); }
@keyframes paPop { from { opacity: 0; transform: translateY(10px) scale(0.98); } to { opacity: 1; transform: none; } }
.pa-card-img { position: relative; display: block; aspect-ratio: 16 / 8.5; overflow: hidden; background: radial-gradient(80% 90% at 50% 100%, rgba(47, 123, 255, 0.35), transparent 70%), linear-gradient(160deg, #111a33, #080c18); }
.pa-card-img img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform 0.6s var(--ease); }
.pa-card-img--render img { padding: 20px; object-fit: contain; object-position: center; filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.5)); }
.pa-card:hover .pa-card-img img { transform: scale(1.05); }
.pa-card-body { display: flex; flex-direction: column; gap: 9px; padding: 18px 20px 20px; }
.pa-card-body small { font-size: 11.5px; font-weight: 700; color: #8fd8ff; }
.pa-card-body b { font-size: 17px; line-height: 1.3; color: #fff; }
.pa-card-body > span { font-size: 13.5px; line-height: 1.55; color: #94a3bd; }
.pa-empty { margin-top: 28px; padding: 30px; border-radius: 20px; text-align: center; font-size: 14.5px; color: #94a3bd; border: 1px dashed rgba(148, 178, 255, 0.22); }
.pa-empty[hidden] { display: none !important; }
.pa-cta { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin: 34px 0 24px; padding: 26px 30px; border-radius: 22px; background: linear-gradient(120deg, rgba(23, 42, 86, 0.95), rgba(9, 12, 24, 0.97) 70%); border: 1px solid rgba(94, 200, 255, 0.4); }
.pa-cta > span { display: flex; flex-direction: column; gap: 6px; }
.pa-cta b { font-family: var(--font-head); font-weight: 600; font-size: 22px; color: #fff; }
.pa-cta small { font-size: 14.5px; line-height: 1.5; color: #b7c3d8; }
.pa-cta .btn-blue { flex-shrink: 0; padding: 14px 24px; font-size: 15px; }

/* ---------- poradniki: artykuł ---------- */
.pa-progress { position: fixed; left: 0; top: calc(var(--promo-h) + var(--top-h)); z-index: 999; width: 100%; height: 3px; background: linear-gradient(90deg, #2f7bff, #8fd8ff); transform: scaleX(0); transform-origin: 0 50%; pointer-events: none; }
.pa-hero { position: relative; isolation: isolate; overflow: hidden; padding: 56px 0 44px; border-bottom: 1px solid rgba(148, 178, 255, 0.08); }
.pa-hero-bg { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.pa-hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.22; }
.pa-hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, var(--bg) 30%, rgba(6, 9, 18, 0.6) 100%), linear-gradient(180deg, rgba(6, 9, 18, 0) 60%, var(--bg) 100%); }
.pa-hero-text { display: flex; flex-direction: column; gap: 16px; max-width: 820px; }
.pa-hero h1 { font-family: var(--font-head); font-weight: 600; font-size: clamp(2rem, 3.8vw, 2.9rem); line-height: 1.06; letter-spacing: -0.03em; color: #fff; }
.pa-hero h1 span { color: var(--sky); }
.pa-lead { font-size: 17.5px; line-height: 1.6; color: #b7c3d8; }
.pa-layout { display: grid; grid-template-columns: minmax(0, 1fr) 300px; align-items: start; gap: 56px; padding: 40px 0 24px; }
.pa-doc { max-width: 760px; font-size: 16px; line-height: 1.8; }
.pa-short { padding: 24px 26px; border-radius: 20px; background: linear-gradient(160deg, rgba(23, 42, 86, 0.75), rgba(9, 12, 24, 0.95)); border: 1px solid rgba(94, 200, 255, 0.4); }
.pa-short > h2:first-child { font-family: var(--font); font-size: 11.5px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--sky); }
.pa-short > p { font-size: 16.5px; color: #eaf1fb; }
.pa-short strong { color: #8fd8ff; }
.pa-endcta { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 26px 28px; border-radius: 22px; background: linear-gradient(120deg, rgba(23, 42, 86, 0.95), rgba(9, 12, 24, 0.97) 70%); border: 1px solid rgba(94, 200, 255, 0.4); }
.pa-endcta > div { display: flex; flex-direction: column; gap: 6px; }
.pa-endcta h2 { margin: 0; font-size: 22px; }
.pa-endcta p { margin: 0; font-size: 14.5px; line-height: 1.55; color: #b7c3d8; }
.pa-endcta .btn-blue { flex-shrink: 0; padding: 13px 22px; font-size: 14.5px; }
.pa-toc { display: flex; flex-direction: column; gap: 2px; padding: 18px; border-radius: 18px; background: rgba(10, 15, 27, 0.7); border: 1px solid rgba(148, 178, 255, 0.14); }
.pa-toc .ph-toc-t { margin-bottom: 8px; }
.pa-toc a { padding: 6px 10px; border-radius: 9px; font-size: 13.5px; line-height: 1.4; color: #8b98b2; transition: color 0.25s ease, background 0.3s ease; }
.pa-toc a:hover { color: #fff; }
.pa-toc a.is-active { font-weight: 700; color: #fff; background: rgba(47, 123, 255, 0.18); }
.pa-prod { position: relative; display: flex; flex-direction: column; gap: 10px; padding: 20px; overflow: hidden; border-radius: 20px; background: linear-gradient(165deg, rgba(32, 54, 104, 0.9), rgba(8, 12, 22, 0.97)); border: 1px solid rgba(94, 200, 255, 0.45); box-shadow: 0 24px 50px -30px rgba(47, 123, 255, 0.9); transition: border-color 0.3s ease, transform 0.3s var(--ease); }
.pa-prod:hover { border-color: rgba(94, 200, 255, 0.75); transform: translateY(-2px); }
.pa-prod > img { position: absolute; right: -24px; top: -10px; width: auto; height: 150px; opacity: 0.5; pointer-events: none; }
.pa-prod > * { position: relative; }
.pa-prod small { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--sky); }
.pa-prod b { max-width: 180px; font-family: var(--font-head); font-weight: 600; font-size: 18px; line-height: 1.2; color: #fff; }
.pa-prod > span:not([class]) { font-size: 13px; line-height: 1.5; color: #b7c3d8; }
.pa-prod-price { font-size: 13px; color: #8b98b2; }
.pa-prod-price strong { font-family: 'Sora', var(--font-head); font-size: 20px; color: #86efac; }
.pa-prod .btn-blue { justify-content: center; margin-top: 2px; padding: 12px; font-size: 14px; }
.pa-related { display: flex; flex-direction: column; gap: 4px; padding: 18px; border-radius: 18px; border: 1px solid rgba(148, 178, 255, 0.12); }
.pa-related .ph-toc-t { margin-bottom: 6px; }
.pa-related a { display: flex; flex-direction: column; gap: 1px; padding: 7px 0; font-size: 14px; line-height: 1.4; color: #d5deee; transition: color 0.25s ease; }
.pa-related a small { font-size: 11.5px; color: #7f8db0; }
.pa-related a:hover { color: #fff; }

/* ---------- responsywność ---------- */
@media (max-width: 1180px) {
    .wk-layout { grid-template-columns: 240px minmax(0, 1fr); gap: 36px; }
    .wk-aside { display: none; }
    .pa-layout { grid-template-columns: minmax(0, 1fr) 260px; gap: 40px; }
    .pa-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 980px) {
    .wk-layout { grid-template-columns: minmax(0, 1fr); }
    .wk-nav { position: static; order: 2; max-height: none; overflow: visible; padding-top: 24px; border-top: 1px solid rgba(148, 178, 255, 0.1); }
    .wk-cats, .wk-bottom { grid-template-columns: minmax(0, 1fr); }
    .pa-head { flex-direction: column; align-items: stretch; gap: 22px; }
    .pa-head .ph-search { width: 100%; }
    .pa-feat { grid-template-columns: minmax(0, 1fr); }
    .pa-feat-img { min-height: 0; aspect-ratio: 16 / 8; }
    .pa-layout { grid-template-columns: minmax(0, 1fr); }
    .pa-aside { position: static; }
    .pa-toc { display: none; }
    .pa-aside { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: start; }
}
@media (max-width: 720px) {
    .ph-in { padding-left: 18px; padding-right: 18px; }
    .ph-search-field kbd { display: none; }
    .wk-hero { padding-top: 40px; }
    .wk-cats { margin-top: 44px; }
    .wk-cat { padding: 20px; }
    .wk-cat-links { grid-template-columns: minmax(0, 1fr); }
    .wk-list small { display: none; }
    .wk-help { flex-direction: column; align-items: flex-start; }
    .wk-help .btn-glass { width: 100%; justify-content: center; }
    .wk-pager { grid-template-columns: minmax(0, 1fr); }
    .wk-pager .is-next { grid-column: auto; }
    .ph-doc { font-size: 15.5px; }
    .ph-doc h2 { font-size: 21px; }
    .pa-head { padding-top: 36px; }
    .pa-grid { grid-template-columns: minmax(0, 1fr); }
    .pa-feat-body { padding: 24px; }
    .pa-feat-t { font-size: 22px; }
    .pa-cta, .pa-endcta { flex-direction: column; align-items: flex-start; padding: 22px; }
    .pa-cta .btn-blue, .pa-endcta .btn-blue { width: 100%; justify-content: center; }
    .pa-hero { padding: 36px 0 30px; }
    .pa-short { padding: 20px; }
    .pa-aside { grid-template-columns: minmax(0, 1fr); }
}
@media (prefers-reduced-motion: reduce) {
    .wk-dc:hover, .wk-promo:hover, .pa-feat:hover, .pa-card:hover, .pa-prod:hover { transform: none; }
    .pa-card.is-pop { animation: none; }
    .pa-feat:hover .pa-feat-img img, .pa-card:hover .pa-card-img img { transform: none; }
}
/* ===== /POMOC ===== */
/* ===== USLUGI (uslugi.css) ===== */
/* usługi: hero bez grafiki gry */
.sv-mark { position: absolute; z-index: 0; right: max(64px, calc(50% - 600px)); top: 50%; display: grid; place-items: center; width: 300px; height: 300px; border-radius: 80px; transform: translateY(-38%) rotate(-8deg); }
.sv-mark--dc { background: linear-gradient(160deg, rgba(88, 101, 242, 0.5), rgba(49, 46, 129, 0.35)); border: 1px solid rgba(165, 180, 252, 0.4); box-shadow: 0 40px 120px -30px rgba(88, 101, 242, 0.9), inset 0 1px 0 rgba(255, 255, 255, 0.15); }
.sv-mark--dc img { width: 150px; height: auto; filter: drop-shadow(0 12px 30px rgba(0, 0, 0, 0.4)); }
.sv-mark--ts { color: #bfe6ff; background: linear-gradient(160deg, rgba(47, 123, 255, 0.45), rgba(8, 47, 73, 0.4)); border: 1px solid rgba(94, 200, 255, 0.4); box-shadow: 0 40px 120px -30px rgba(47, 123, 255, 0.9), inset 0 1px 0 rgba(255, 255, 255, 0.15); }
.sv-mark--ts svg { width: 150px; height: 150px; }
.sv-hero .gs-hero-bg::after { background: linear-gradient(90deg, rgba(6, 9, 18, 0.9) 0%, rgba(6, 9, 18, 0.55) 45%, rgba(6, 9, 18, 0) 75%), linear-gradient(180deg, rgba(6, 9, 18, 0) 50%, var(--bg) 100%); }
.sv-crumb-ico { display: grid; place-items: center; width: 22px; height: 22px; border-radius: 6px; color: #fff; background: linear-gradient(135deg, #2f7bff, #0ea5e9); }
.sv-crumb-ico svg { width: 13px; height: 13px; }
.sv-cta--dc { background: radial-gradient(60% 120% at 100% 50%, rgba(88, 101, 242, 0.45), transparent 70%), linear-gradient(120deg, rgba(23, 30, 86, 0.95), rgba(9, 12, 24, 0.97) 70%); border-color: rgba(129, 140, 248, 0.45); }

.gs-grid.gs-grid--n5 { grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 12px; }
.gs-grid--n5 .gs-card { padding: 18px; }

/* kafel polecający inną usługę w siatce pakietów */
.sv-x { position: relative; display: block; overflow: hidden; grid-column: span var(--s4, 1); border-radius: 20px; background: radial-gradient(80% 90% at 100% 0%, rgba(88, 101, 242, 0.38), transparent 62%), linear-gradient(165deg, rgba(22, 26, 64, 0.95), rgba(9, 10, 24, 0.97)); border: 1px solid rgba(129, 140, 248, 0.42); transition: border-color 0.35s ease, transform 0.3s var(--ease); }
.sv-x:hover { border-color: rgba(165, 180, 252, 0.75); transform: translateY(-2px); }
.sv-x-in { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 28px; height: 100%; padding: 26px 30px; }
.sv-x-mark { display: grid; place-items: center; width: 110px; height: 110px; border-radius: 30px; background: linear-gradient(160deg, #5865f2, #3c45c7); box-shadow: 0 24px 60px -24px rgba(88, 101, 242, 0.95); transform: rotate(-6deg); }
.sv-x-mark img { width: 58px; height: auto; }
.sv-x-text { display: flex; flex-direction: column; gap: 8px; }
.sv-x-tag { align-self: flex-start; padding: 3px 9px; border-radius: 999px; font-size: 10.5px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: #e0e7ff; background: rgba(88, 101, 242, 0.35); border: 1px solid rgba(165, 180, 252, 0.4); }
.sv-x-text b { font-family: var(--font-head); font-weight: 600; font-size: 20px; line-height: 1.15; color: #fff; }
.sv-x-p { font-size: 13.5px; line-height: 1.55; color: #b7c3d8; }
.sv-x-list { display: flex; flex-wrap: wrap; gap: 6px 14px; margin-top: 4px; }
.sv-x-list span { display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; font-weight: 600; color: #dfe7f5; }
.sv-x-list svg { width: 13px; height: 13px; color: #a5b4fc; }
.sv-x-buy { display: flex; flex-direction: column; align-items: stretch; gap: 10px; min-width: 190px; }
.sv-x-price { font-size: 13px; color: #94a3bd; text-align: center; }
.sv-x-price b { font-family: Sora, sans-serif; font-size: 20px; color: #fff; }
.sv-x .btn-glass { justify-content: center; padding: 12px 16px; font-size: 13.5px; }
.sv-x-in--col { display: flex; flex-direction: column; align-items: stretch; gap: 14px; padding: 20px; }
.sv-x-covers { display: grid; grid-template-columns: 1fr 1fr; align-content: start; gap: 6px; }
.sv-x-covers img { width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: cover; border-radius: 9px; border: 1px solid rgba(165, 180, 252, 0.25); }
.sv-x--gry .sv-x-text b { font-size: 18px; }
.sv-x-buy--col { min-width: 0; margin-top: auto; }

/* jeden pakiet (TeamSpeak) */
.sv-one { display: grid; grid-template-columns: 380px 1fr; gap: 14px; }
.sv-one-side { display: flex; flex-direction: column; gap: 14px; padding: 28px 32px; border-radius: 20px; background: rgba(13, 19, 34, 0.6); border: 1px solid rgba(148, 178, 255, 0.12); }
.sv-one-t { font-family: var(--font-head); font-weight: 600; font-size: 22px; color: #fff; }
.sv-one-list { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 24px; margin: 6px 0 0; padding: 0; list-style: none; }
.sv-one-list li { display: flex; gap: 12px; }
.sv-one-list li > svg { flex-shrink: 0; width: 26px; height: 26px; padding: 6px; border-radius: 9px; color: var(--sky); background: rgba(94, 200, 255, 0.12); }
.sv-one-list span { display: flex; flex-direction: column; gap: 3px; font-size: 13.5px; line-height: 1.5; color: #94a3bd; }
.sv-one-list b { font-size: 15px; color: #fff; }
.sv-one-note { display: inline-flex; align-items: center; gap: 8px; margin-top: auto; padding-top: 16px; border-top: 1px solid rgba(148, 178, 255, 0.1); font-size: 13.5px; color: #94a3bd; }
.sv-one-note svg { width: 16px; height: 16px; color: var(--sky); }
.sv-x { container-type: inline-size; }
.sv-x-buy .btn-glass svg, .sv-x .btn-glass svg { transition: transform 0.3s var(--ease); }
.sv-x:hover .btn-glass svg { transform: translateX(3px); }
@container (min-width: 560px) {
    .sv-x-in--col { display: grid; grid-template-columns: 280px minmax(0, 1fr) auto; align-items: center; gap: 26px; padding: 22px 26px; }
    .sv-x-buy--col { min-width: 190px; margin-top: 0; }
}
@media (max-width: 1180px) {
    .gs-grid.gs-grid--n5 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .sv-x { grid-column: span var(--s3, 1); }
    .sv-mark { width: 220px; height: 220px; border-radius: 60px; right: 40px; }
    .sv-mark--dc img { width: 110px; }
    .sv-mark--ts svg { width: 110px; height: 110px; }
    .sv-one { grid-template-columns: 340px minmax(0, 1fr); }
    .sv-one-list { grid-template-columns: minmax(0, 1fr); }
}
@media (max-width: 980px) {
    .gs-grid.gs-grid--n5 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .sv-x { grid-column: span var(--s2, 1); }
    .sv-mark { display: none; }
    .sv-one { grid-template-columns: minmax(0, 1fr); }
    .sv-one-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 720px) {
    .gs-grid.gs-grid--n5 { grid-template-columns: minmax(0, 1fr); gap: 14px; }
    .sv-x { grid-column: auto; }
    .sv-x-in { grid-template-columns: minmax(0, 1fr); gap: 18px; padding: 22px; }
    .sv-x-mark { width: 84px; height: 84px; border-radius: 24px; }
    .sv-x-mark img { width: 44px; }
    .sv-x-buy { min-width: 0; }
    .sv-one-side { padding: 22px; }
    .sv-one-list { grid-template-columns: minmax(0, 1fr); }
}
@media (prefers-reduced-motion: reduce) {
    .sv-x:hover, .sv-x:hover .btn-glass svg { transform: none; }
}
/* ===== /USLUGI ===== */
/* ===== OFERTA (oferta.css) ===== */
/* ===== Oferta ===== */
.of-sec { padding: 34px 0; }
.of-sec--plus { padding-top: 10px; }
.of-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 20px; }
.of-head-p { margin-top: 6px; font-size: 14px; color: var(--text-2); }

.of-plus { position: relative; display: flex; margin-bottom: 14px; align-items: center; gap: 22px; overflow: hidden; padding: 14px 16px 14px 22px; border-radius: 18px; background: radial-gradient(50% 160% at 0% 50%, rgba(124, 58, 237, 0.4), transparent 70%), linear-gradient(120deg, rgba(34, 18, 78, 0.9), rgba(12, 10, 30, 0.95)); border: 1px solid rgba(167, 139, 250, 0.45); transition: border-color 0.35s ease, transform 0.3s var(--ease); }
.of-plus:hover { border-color: rgba(196, 181, 253, 0.8); transform: translateY(-1px); }
.of-plus-logo { flex-shrink: 0; height: 24px; width: auto; }
.of-plus-copy { display: flex; flex-direction: column; gap: 3px; flex: 1; min-width: 0; }
.of-plus-h { display: flex; align-items: center; gap: 9px; font-size: 15px; font-weight: 700; color: #fff; }
.of-plus-p { font-size: 13px; color: #cfc8ef; }
.of-plus-stack { display: flex; align-items: center; }
.of-plus-stack img { flex-shrink: 0; width: 64px; height: 36px; max-width: none; object-fit: cover; margin-left: -14px; border-radius: 8px; border: 2px solid #1a1238; }
.of-plus-stack img:first-child { margin-left: 0; }
.of-plus-stack i { display: grid; place-items: center; height: 36px; margin-left: -10px; padding: 0 9px; border-radius: 8px; font-style: normal; font-size: 12px; font-weight: 700; color: #ede9fe; background: #3b2a78; border: 2px solid #1a1238; }
.of-plus-price { flex-shrink: 0; font-size: 12.5px; color: #b8b0dc; white-space: nowrap; }
.of-plus-price b { font-family: Sora, sans-serif; font-size: 18px; color: #fff; }
.of-plus .btn-plus { flex-shrink: 0; padding: 11px 16px; font-size: 13.5px; white-space: nowrap; }

.of-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 14px; }
.of-big { position: relative; display: flex; align-items: flex-end; min-height: 280px; overflow: hidden; border-radius: 22px; border: 1px solid rgba(148, 178, 255, 0.16); transition: border-color 0.35s ease, transform 0.3s var(--ease); }
.of-big:hover { border-color: rgba(94, 200, 255, 0.45); transform: translateY(-2px); }
.of-big-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.of-big:hover .of-big-img { transform: scale(1.04); }
.of-big::before { content: ''; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(6, 9, 18, 0) 30%, rgba(6, 9, 18, 0.92) 100%); }
.of-big .dtile-badge { z-index: 2; }
.of-big-body { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 16px; width: 100%; padding: 20px; }
.of-big-t { display: flex; align-items: center; gap: 12px; }
.of-big-t img { width: 40px; height: 40px; border-radius: 10px; object-fit: contain; }
.of-big-t span { display: flex; flex-direction: column; gap: 3px; }
.of-big-t b { font-family: var(--font-head); font-weight: 600; font-size: 21px; color: #fff; }
.of-big-t small { max-width: 330px; font-size: 13px; line-height: 1.45; color: #b7c3d8; }
.of-big-t small i { font-style: normal; font-weight: 700; color: #fff; }
.of-big-go { display: grid; place-items: center; width: 42px; height: 42px; padding: 0; color: #eaf4ff; }
.of-big-go svg { display: block; width: 14px; height: 14px; stroke: currentColor; }

.of-chips { display: flex; flex-wrap: wrap; gap: 6px; padding: 5px; border-radius: 14px; background: rgba(10, 15, 30, 0.7); border: 1px solid rgba(148, 178, 255, 0.14); }
.of-chip { display: inline-flex; align-items: center; gap: 7px; padding: 8px 13px; border: 0; border-radius: 10px; font: inherit; font-size: 13px; font-weight: 600; color: #9fb0cc; background: none; cursor: pointer; transition: color 0.25s ease, background 0.25s ease; }
.of-chip i { font-style: normal; font-size: 11px; color: #64748b; }
.of-chip.is-on { color: #06213f; background: var(--blue-bg); }
.of-chip.is-on i { color: #1e4b7a; }
.of-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.of-g { position: relative; display: flex; flex-direction: column; overflow: hidden; border-radius: 16px; background: rgba(13, 19, 34, 0.7); border: 1px solid rgba(148, 178, 255, 0.12); transition: border-color 0.3s ease, transform 0.3s var(--ease); }
.of-g:hover { border-color: rgba(94, 200, 255, 0.4); transform: translateY(-2px); }
.of-g-img { display: block; aspect-ratio: 460 / 190; overflow: hidden; }
.of-g-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.of-g:hover .of-g-img img { transform: scale(1.05); }
.of-g-body { display: flex; align-items: center; gap: 11px; padding: 11px 12px 12px; }
.of-g-ico { flex-shrink: 0; width: 34px; height: 34px; padding: 3px; border-radius: 10px; background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(148, 178, 255, 0.16); object-fit: contain; }
.of-g-t { display: flex; flex-direction: column; gap: 1px; min-width: 0; flex: 1; }
.of-g-t b { overflow: hidden; font-size: 14.5px; color: #fff; white-space: nowrap; text-overflow: ellipsis; }
.of-g-t small { font-size: 12px; color: #8b98b2; }
.of-g-t small i { font-style: normal; font-weight: 700; color: #dfe7f5; }
.of-g-go { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 9px; color: #8fd8ff; background: rgba(94, 200, 255, 0.1); transition: color 0.25s ease, background 0.25s ease; }
.of-g:hover .of-g-go { color: #06213f; background: var(--blue-bg); }
.of-g--ask { align-items: flex-start; justify-content: center; gap: 6px; padding: 20px; border-style: dashed; background: rgba(13, 19, 34, 0.35); }
.of-ask-ico svg { width: 26px; height: 26px; color: var(--sky); }
.of-g--ask b { font-size: 15.5px; color: #fff; }
.of-g--ask small { font-size: 13px; line-height: 1.5; color: #94a3bd; }
.of-ask-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 4px; font-size: 13px; font-weight: 700; color: #8fd8ff; }

.of-svcs { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.of-svc { display: flex; flex-direction: column; gap: 10px; padding: 22px; border-radius: 20px; background: linear-gradient(160deg, rgba(18, 24, 44, 0.6), rgba(9, 10, 22, 0.92)); border: 1px solid rgba(148, 178, 255, 0.14); transition: border-color 0.35s ease, transform 0.3s var(--ease); }
.of-svc:hover { border-color: rgba(94, 200, 255, 0.4); transform: translateY(-2px); }
.of-svc-ico { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 14px; color: var(--sky); background: rgba(94, 200, 255, 0.12); border: 1px solid rgba(94, 200, 255, 0.22); }
.of-svc-ico svg { width: 22px; height: 22px; }
.of-svc--dc .of-svc-ico { background: linear-gradient(160deg, #5865f2, #3c45c7); border-color: rgba(165, 180, 252, 0.5); }
.of-svc--ts .of-svc-ico { color: #fff; background: linear-gradient(160deg, #2f7bff, #1d4ed8); border-color: rgba(147, 197, 253, 0.5); }
.of-svc > b { margin-top: 4px; font-family: var(--font-head); font-weight: 600; font-size: 18px; color: #fff; }
.of-svc-p { font-size: 13.5px; line-height: 1.55; color: #94a3bd; }
.of-svc-foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: auto; padding-top: 12px; border-top: 1px solid rgba(148, 178, 255, 0.1); }
.of-svc-price { font-size: 12.5px; color: #8b98b2; }
.of-svc-price b { font-family: Sora, sans-serif; font-size: 18px; color: #fff; }
.of-svc .of-big-go { width: 36px; height: 36px; }

.of-perks { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; padding: 18px; border-radius: 20px; background: rgba(10, 15, 30, 0.55); border: 1px solid rgba(148, 178, 255, 0.1); }
.of-perk { display: flex; align-items: center; gap: 12px; }
.of-perk > span:last-child { display: flex; flex-direction: column; gap: 2px; }
.of-perk b { font-size: 14.5px; color: #fff; }
.of-perk small { font-size: 12.5px; color: #8b98b2; }
.is-oferta .faq { padding-top: 60px; }
.btn-glass.of-go { flex-shrink: 0; padding: 10px 14px; font-size: 13px; white-space: nowrap; }
.of-svc-foot { flex-wrap: wrap; }
.is-oferta section[id] { scroll-margin-top: calc(var(--promo-h) + var(--top-h) + 16px); }
.of-g[hidden] { display: none !important; }
.of-grid { transition: opacity 0.16s ease, transform 0.16s ease; }
.of-grid.is-swap { opacity: 0; transform: translateY(6px); }
.of-g.is-pop { animation: ofPop 0.38s var(--ease) both; animation-delay: calc(var(--i, 0) * 18ms); }
@keyframes ofPop { from { opacity: 0; transform: translateY(10px) scale(0.98); } to { opacity: 1; transform: none; } }
.of-chip:not(.is-on):hover { color: #fff; background: rgba(148, 178, 255, 0.08); }

@media (max-width: 1180px) {
    .of-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .of-top { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .of-big--mc { grid-column: 1 / -1; }
    .of-svcs { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .of-plus-stack { display: none; }
}
@media (max-width: 980px) {
    .of-head { flex-direction: column; align-items: flex-start; }
    .of-perks { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .of-plus { flex-wrap: wrap; }
    .of-plus-copy { flex-basis: calc(100% - 140px); }
}
@media (max-width: 720px) {
    .of-chips { flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; }
    .of-chips::-webkit-scrollbar { display: none; }
    .of-chip { flex-shrink: 0; }
    .of-chips { max-width: 100%; }
    .of-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .of-top { grid-template-columns: minmax(0, 1fr); }
    .of-big { min-height: 220px; }
    .of-big-body { flex-wrap: wrap; }
    .of-svcs { grid-template-columns: minmax(0, 1fr); }
    .of-plus { flex-direction: column; align-items: flex-start; gap: 12px; padding: 18px; }
    .of-plus-copy { flex-basis: auto; }
    .of-plus .btn-plus { width: 100%; justify-content: center; }
}
@media (max-width: 460px) {
    .of-grid, .of-perks { grid-template-columns: minmax(0, 1fr); }
    .of-big-t small { max-width: none; }
}
.of-big:not(.of-big--mc) .of-big-t small { white-space: nowrap; }
@media (max-width: 720px) {
    .of-big { min-height: 250px; }
    .of-big::before { background: linear-gradient(180deg, rgba(6, 9, 18, 0.05) 0%, rgba(6, 9, 18, 0.72) 45%, rgba(6, 9, 18, 0.96) 100%); }
    .of-big-t b { font-size: 19px; }
}
@media (max-width: 460px) {
    .of-grid { gap: 10px; }
    .of-g { flex-direction: row; align-items: stretch; }
    .of-g-img { flex: 0 0 38%; aspect-ratio: auto; min-height: 76px; }
    .of-g-body { flex: 1; min-width: 0; padding: 10px 12px; }
    .of-g-ico { width: 30px; height: 30px; }
    .of-g--ask { flex-direction: column; }
}
@media (max-width: 460px) { .of-g-ico { display: none; } }
.of-big .btn-glass.of-go, .of-svc .btn-glass.of-go { gap: 5px; padding: 7px 11px; border-radius: 10px; font-size: 12.5px; }
.of-big .btn-glass.of-go svg, .of-svc .btn-glass.of-go svg { width: 11px; height: 11px; }
.of-svc-foot { flex-direction: column; align-items: stretch; gap: 10px; }
.of-svc .btn-glass.of-go { justify-content: center; padding: 8px 11px; }
.of-sec--first { padding-top: calc(var(--promo-h) + var(--top-h) + 48px); }
.of-sec--first .games-title { font-size: clamp(1.9rem, 3vw, 2.6rem); }
.of-big .btn-glass.of-price-btn { flex-shrink: 0; gap: 7px; padding: 11px 16px; font-size: 14px; font-weight: 700; white-space: nowrap; }
.of-price-btn small { font-size: 12px; font-weight: 500; opacity: 0.7; }
.of-price-btn svg { width: 13px; height: 13px; transition: transform 0.3s var(--ease); }
.of-big:hover .of-price-btn svg { transform: translateX(3px); }
@media (max-width: 720px) { .of-sec--first { padding-top: calc(var(--promo-h) + var(--top-h) + 28px); } }
.of-big-body { flex-wrap: wrap; row-gap: 10px; gap: 10px 12px; }
.of-big-t { min-width: 0; }
.of-big:not(.of-big--mc) .of-big-t b { white-space: nowrap; }
.of-big .btn-glass.of-price-btn { gap: 5px; padding: 7px 11px; border-radius: 10px; font-size: 12.5px; }
.of-price-btn small { font-size: 11px; }
.of-price-btn svg { width: 11px; height: 11px; }
.of-tools { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 16px; }
.of-search { display: flex; align-items: center; gap: 10px; flex: 1; max-width: 420px; height: 48px; padding: 0 10px 0 16px; border-radius: 14px; background: rgba(10, 15, 30, 0.85); border: 1px solid rgba(148, 178, 255, 0.2); transition: border-color 0.25s ease, box-shadow 0.3s ease; }
.of-search:focus-within { border-color: rgba(94, 200, 255, 0.6); box-shadow: 0 0 0 4px rgba(94, 200, 255, 0.12); }
.of-search > svg { flex-shrink: 0; width: 17px; height: 17px; color: var(--sky); }
.of-search input { flex: 1; min-width: 0; height: 100%; border: 0; outline: 0; background: none; font: inherit; font-size: 14.5px; color: #fff; }
.of-search input::placeholder { color: #7d89a3; }
.of-search input::-webkit-search-cancel-button { display: none; }
.of-search kbd { padding: 3px 8px; border-radius: 7px; font: 700 11px 'JetBrains Mono', monospace; color: #9fb0cc; background: rgba(148, 178, 255, 0.1); border: 1px solid rgba(148, 178, 255, 0.2); }
@media (max-width: 980px) { .of-tools { flex-direction: column; align-items: stretch; } .of-search { max-width: none; } }
@media (max-width: 720px) { .of-search kbd { display: none; } }
@media (max-width: 980px) { .of-search { flex: none; height: 48px; } }
/* ===== /OFERTA ===== */
