/**
 * Slimi Partner Events — layout shell + CS2 showcase UI
 * Scroll modelis kaip remux_convert: meniu viršuje, footer apačioje, turinys scrollina.
 */

@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@500;600;700&family=IBM+Plex+Sans:wght@400;500;600&display=swap');

/* ========== PAGE SHELL (critical for scroll + footer) ========== */
body.pe-events-body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    min-height: 100dvh;
    height: 100vh !important;
    height: 100dvh !important;
    overflow: hidden;
}

body.pe-events-body .pe-events-wrapper.wrapper {
    flex: 1 1 auto;
    min-height: 0;
    width: 100% !important;
    max-width: none !important;
    height: auto !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-y: contain;
    touch-action: pan-y;
    margin: 0;
    padding: 0 0 1.5rem;
}

body.pe-events-body .pe-events-container.container {
    display: block !important;
    width: min(1120px, calc(100% - 2rem)) !important;
    max-width: 1120px;
    margin: 0 auto;
    min-height: min-content;
    height: auto !important;
    overflow: visible !important;
    padding-bottom: 2rem;
    align-items: stretch !important;
}

body.pe-events-body #siteFooter {
    flex-shrink: 0;
    position: relative !important;
    margin-top: 0;
    z-index: 20;
}

body.pe-events-body--guest {
    background:
        radial-gradient(ellipse 90% 55% at 10% -10%, rgba(255, 159, 26, 0.16), transparent 50%),
        radial-gradient(ellipse 70% 45% at 100% 0%, rgba(232, 93, 4, 0.1), transparent 45%),
        linear-gradient(160deg, #07090c 0%, #10151c 45%, #0a0c10 100%);
}

@media (max-width: 900px) {
    body.pe-events-body {
        height: auto !important;
        min-height: 100dvh;
        overflow-x: hidden;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    body.pe-events-body .pe-events-wrapper.wrapper {
        flex: 0 1 auto;
        min-height: unset;
        overflow: visible !important;
        padding-bottom: 5rem;
    }

    body.pe-events-body .pe-events-container.container {
        width: calc(100% - 1.25rem) !important;
    }

    body.pe-events-body #siteFooter {
        position: relative !important;
    }
}

/* ========== GUEST TOP BAR ========== */
.pe-guest-bar {
    position: sticky;
    top: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    padding: 0.7rem 1rem;
    background: rgba(8, 10, 14, 0.92);
    border-bottom: 1px solid rgba(255, 159, 26, 0.28);
    backdrop-filter: blur(12px);
}

.pe-guest-bar__brand {
    font-family: Rajdhani, sans-serif;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #ff9f1a;
    text-decoration: none;
    font-size: 1.1rem;
}

.pe-guest-bar__label {
    flex: 1 1 auto;
    color: #8b949e;
    font-size: 0.85rem;
}

.pe-guest-bar__cta {
    margin-left: auto;
}

/* ========== DESIGN TOKENS ========== */
.pe-page {
    --pe-accent: #ff9f1a;
    --pe-accent2: #e85d04;
    --pe-text: #eef2f6;
    --pe-muted: #9aa3ad;
    --pe-ok: #3dd68c;
    --pe-line: rgba(255, 176, 72, 0.28);
    --pe-surface: rgba(14, 17, 22, 0.88);
    color: var(--pe-text);
    font-family: "IBM Plex Sans", system-ui, sans-serif;
    padding: 1.5rem 0 4rem;
    position: relative;
}

.pe-page--guest {
    padding-top: 1rem;
}

.pe-guest-hint {
    margin: 0.85rem 0 0;
    color: var(--pe-muted);
    font-size: 0.92rem;
}

/* ========== HERO ========== */
.pe-hero {
    position: relative;
    margin-bottom: 1.75rem;
    border: 1px solid var(--pe-line);
    background: linear-gradient(145deg, rgba(255, 159, 26, 0.09), rgba(12, 14, 18, 0.95) 42%);
    overflow: hidden;
    animation: pe-rise 0.65s ease both;
}

.pe-hero__mesh {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, transparent 40%, rgba(255, 159, 26, 0.07) 50%, transparent 60%),
        repeating-linear-gradient(
            -18deg,
            transparent,
            transparent 11px,
            rgba(255, 255, 255, 0.015) 11px,
            rgba(255, 255, 255, 0.015) 12px
        );
    pointer-events: none;
}

.pe-hero__content {
    position: relative;
    z-index: 1;
    padding: 1.6rem 1.5rem 1.7rem;
}

.pe-kicker {
    font-family: Rajdhani, sans-serif;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--pe-accent);
    font-weight: 700;
    font-size: 0.82rem;
    margin: 0 0 0.4rem;
}

.pe-title {
    font-family: Rajdhani, sans-serif;
    font-weight: 700;
    font-size: clamp(2.1rem, 5.5vw, 3.35rem);
    line-height: 0.98;
    margin: 0 0 0.55rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    text-shadow: 0 0 40px rgba(255, 159, 26, 0.18);
}

.pe-lead {
    color: var(--pe-muted);
    max-width: 40rem;
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.45;
}

.pe-back {
    display: inline-block;
    color: var(--pe-muted);
    text-decoration: none;
    margin-bottom: 0.85rem;
    font-size: 0.9rem;
}
.pe-back:hover { color: var(--pe-accent); }

.pe-hero__stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 0.75rem;
    margin: 1.35rem 0 1rem;
}

.pe-stat {
    background: rgba(0, 0, 0, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 0.7rem 0.85rem;
}

.pe-stat span {
    display: block;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--pe-muted);
    margin-bottom: 0.2rem;
}

.pe-stat strong {
    font-family: Rajdhani, sans-serif;
    font-size: 1.55rem;
    font-weight: 700;
    line-height: 1;
}

.pe-stat strong small {
    font-size: 0.85rem;
    color: var(--pe-muted);
    font-weight: 600;
}

.pe-stat__date {
    font-size: 1.05rem !important;
    letter-spacing: 0.02em;
}

.pe-hero__phase {
    margin: 0.5rem 0 0;
    font-size: 0.98rem;
    line-height: 1.45;
    max-width: 40rem;
}
.pe-hero__phase--finished {
    color: #b8c0c8;
}
.pe-hero__phase--upcoming {
    color: #7ec8ff;
}
.pe-hero__badges {
    margin-top: 0.85rem;
}
.pe-phase-badge {
    display: inline-block;
    font-family: Rajdhani, sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.28rem 0.6rem;
    border: 1px solid transparent;
}
.pe-phase-badge--live {
    color: var(--pe-accent);
    background: rgba(255, 159, 26, 0.12);
    border-color: rgba(255, 159, 26, 0.35);
}
.pe-phase-badge--finished {
    color: #c8d0d8;
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.12);
}
.pe-phase-badge--upcoming {
    color: #7ec8ff;
    background: rgba(88, 166, 255, 0.12);
    border-color: rgba(88, 166, 255, 0.35);
}

.pe-link-ext {
    color: var(--pe-accent);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
}
.pe-link-ext:hover { text-decoration: underline; }

.pe-desc {
    color: var(--pe-muted);
    border-left: 3px solid var(--pe-accent2);
    background: rgba(0, 0, 0, 0.22);
    padding: 0.85rem 1rem;
    margin: 0 0 1.5rem;
    line-height: 1.5;
}

/* ========== INDEX CARDS ========== */
.pe-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1rem;
    animation: pe-rise 0.75s 0.08s ease both;
}

.pe-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: 1.25rem 1.25rem 1.35rem;
    background: linear-gradient(165deg, #1a2029 0%, #10141a 100%);
    border: 1px solid var(--pe-line);
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}
.pe-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 159, 26, 0.65);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 159, 26, 0.12);
}
.pe-card__shine {
    position: absolute;
    inset: auto -40% -40% auto;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(255, 159, 26, 0.22), transparent 70%);
    pointer-events: none;
}
.pe-card__partner {
    font-family: Rajdhani, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--pe-accent);
    font-size: 0.78rem;
    font-weight: 700;
}
.pe-card__title {
    font-size: 1.35rem;
    font-family: Rajdhani, sans-serif;
    font-weight: 700;
    line-height: 1.1;
}
.pe-card__sub,
.pe-card__meta {
    color: var(--pe-muted);
    font-size: 0.9rem;
}
.pe-card__cta {
    margin-top: 0.85rem;
    color: var(--pe-accent);
    font-weight: 700;
    font-family: Rajdhani, sans-serif;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-size: 0.92rem;
}

.pe-card__badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    z-index: 2;
    font-family: Rajdhani, sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.2rem 0.45rem;
    background: #3a424c;
    color: #c8d0d8;
}
.pe-card__badge--live {
    background: rgba(255, 159, 26, 0.2);
    color: var(--pe-accent);
    border: 1px solid rgba(255, 159, 26, 0.45);
}
.pe-card__badge--upcoming {
    background: rgba(88, 166, 255, 0.15);
    color: #7ec8ff;
    border: 1px solid rgba(88, 166, 255, 0.35);
}
.pe-card--upcoming {
    border-color: rgba(88, 166, 255, 0.25);
}
.pe-card--archived {
    opacity: 0.78;
    border-color: rgba(255, 255, 255, 0.1);
}
.pe-card--archived:hover {
    opacity: 1;
}
.pe-card__prize {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    margin: 0.15rem 0 0.35rem;
}
.pe-card__prize img {
    width: 72px;
    height: 54px;
    object-fit: contain;
    filter: drop-shadow(0 0 12px rgba(255, 159, 26, 0.35));
}
.pe-card__prize span {
    font-family: Rajdhani, sans-serif;
    font-weight: 700;
    color: var(--pe-accent);
    font-size: 0.95rem;
}

/* ========== PRIZE PODIUM ========== */
.pe-prizes {
    position: relative;
    margin: 0 0 1.5rem;
    padding: 1.35rem 1.2rem 1.5rem;
    border: 1px solid rgba(255, 159, 26, 0.4);
    background:
        radial-gradient(ellipse 60% 50% at 50% 0%, rgba(255, 159, 26, 0.18), transparent 65%),
        linear-gradient(165deg, rgba(22, 18, 12, 0.95), rgba(10, 12, 16, 0.98));
    animation: pe-rise 0.7s 0.04s ease both;
    overflow: hidden;
}
.pe-prizes__ribbon {
    display: inline-block;
    margin-bottom: 0.85rem;
    padding: 0.35rem 0.75rem;
    font-family: Rajdhani, sans-serif;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 0.78rem;
    color: #140c04;
    background: linear-gradient(90deg, var(--pe-accent2), var(--pe-accent));
    box-shadow: 0 0 24px rgba(255, 159, 26, 0.35);
}
.pe-prizes__head h2 {
    font-family: Rajdhani, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 0 0.35rem;
    font-size: 1.55rem;
}
.pe-prizes__head p {
    margin: 0;
    color: var(--pe-muted);
    font-size: 0.95rem;
    max-width: 42rem;
}
.pe-prizes__hint {
    margin-top: 0.45rem !important;
    color: var(--pe-accent) !important;
    font-weight: 600;
}

.pe-podium {
    display: grid;
    grid-template-columns: 1fr 1.35fr 1fr;
    gap: 0.85rem;
    align-items: end;
    margin-top: 1.25rem;
}
.pe-podium__slot {
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.35);
    padding: 1rem 0.85rem 1.15rem;
    text-align: center;
    position: relative;
}
.pe-podium__slot h3 {
    font-family: Rajdhani, sans-serif;
    margin: 0.35rem 0 0.55rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 1.1rem;
}
.pe-podium__place {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    font-family: Rajdhani, sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--pe-muted);
}
.pe-podium__slot--1 {
    border-color: rgba(255, 159, 26, 0.55);
    background:
        radial-gradient(circle at 50% 20%, rgba(255, 159, 26, 0.22), transparent 55%),
        rgba(12, 10, 8, 0.85);
    padding-top: 1.25rem;
    padding-bottom: 1.4rem;
    transform: translateY(-0.35rem);
    box-shadow: 0 0 40px rgba(255, 159, 26, 0.15);
}
.pe-podium__slot--1 .pe-podium__place {
    width: 2.4rem;
    height: 2.4rem;
    color: #140c04;
    background: var(--pe-accent);
    border-color: transparent;
    box-shadow: 0 0 20px rgba(255, 159, 26, 0.5);
}
.pe-podium__slot--2 .pe-podium__place { color: #c0c8d0; }
.pe-podium__slot--3 .pe-podium__place { color: #c48a5a; }
.pe-podium__vip {
    margin: 0.35rem 0 0;
    font-family: Rajdhani, sans-serif;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--pe-text);
}
.pe-podium__vip--glow {
    margin-top: 0.75rem;
    color: var(--pe-accent);
    text-shadow: 0 0 18px rgba(255, 159, 26, 0.35);
}
.pe-podium__val {
    margin: 0.2rem 0 0;
    color: var(--pe-muted);
    font-size: 0.92rem;
}

/* VIP privilege cards */
.pe-vip {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    margin-top: 0.55rem;
    padding: 1.1rem 0.85rem 1.15rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.08), transparent 45%),
        rgba(8, 10, 14, 0.72);
    isolation: isolate;
}
.pe-vip__glow {
    position: absolute;
    inset: -40% -20% auto;
    height: 70%;
    background: radial-gradient(ellipse at center, rgba(255, 200, 120, 0.28), transparent 70%);
    pointer-events: none;
    z-index: 0;
    animation: pe-vip-breathe 3.2s ease-in-out infinite;
}
.pe-vip__mark,
.pe-vip__label,
.pe-vip__days,
.pe-vip__chip,
.pe-vip__tag,
.pe-vip__compact-text {
    position: relative;
    z-index: 1;
}
.pe-vip__mark {
    width: 52px;
    height: 52px;
    color: #e8eef5;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.18));
}
.pe-vip__label {
    font-family: Rajdhani, sans-serif;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.72);
}
.pe-vip__days {
    font-family: Rajdhani, sans-serif;
    font-size: clamp(2.1rem, 4vw, 2.7rem);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: 0.02em;
}
.pe-vip__days small {
    font-size: 0.45em;
    margin-left: 0.1rem;
    color: rgba(255, 255, 255, 0.7);
}
.pe-vip__chip {
    display: inline-flex;
    align-items: center;
    margin-top: 0.15rem;
    padding: 0.28rem 0.7rem;
    font-family: Rajdhani, sans-serif;
    font-weight: 700;
    letter-spacing: 0.06em;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(0, 0, 0, 0.35);
    font-size: 0.95rem;
}
.pe-vip__tag {
    margin-top: 0.35rem;
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
}

.pe-vip--gold {
    border-color: rgba(255, 176, 72, 0.55);
    background:
        linear-gradient(155deg, rgba(255, 176, 72, 0.22), transparent 42%),
        linear-gradient(180deg, #1a140c 0%, #0c0d10 100%);
    box-shadow: inset 0 1px 0 rgba(255, 210, 140, 0.25), 0 10px 28px rgba(232, 93, 4, 0.18);
    color: #ffc857;
}
.pe-vip--gold .pe-vip__mark { color: #ffb347; }
.pe-vip--gold .pe-vip__chip {
    border-color: rgba(255, 176, 72, 0.45);
    color: #ffe0a3;
}

.pe-vip--silver {
    border-color: rgba(190, 205, 220, 0.45);
    background:
        linear-gradient(155deg, rgba(210, 220, 235, 0.18), transparent 42%),
        linear-gradient(180deg, #161a20 0%, #0c0e12 100%);
    box-shadow: inset 0 1px 0 rgba(230, 238, 248, 0.2), 0 10px 24px rgba(0, 0, 0, 0.3);
    color: #d7e2ef;
}
.pe-vip--silver .pe-vip__mark { color: #c9d6e4; }
.pe-vip--silver .pe-vip__chip {
    border-color: rgba(190, 205, 220, 0.4);
    color: #eef4fb;
}

.pe-vip--bronze {
    border-color: rgba(196, 138, 90, 0.5);
    background:
        linear-gradient(155deg, rgba(196, 138, 90, 0.2), transparent 42%),
        linear-gradient(180deg, #1a1410 0%, #0c0d10 100%);
    box-shadow: inset 0 1px 0 rgba(220, 170, 120, 0.22), 0 10px 24px rgba(0, 0, 0, 0.3);
    color: #e0b48a;
}
.pe-vip--bronze .pe-vip__mark { color: #d4a574; }
.pe-vip--bronze .pe-vip__chip {
    border-color: rgba(196, 138, 90, 0.45);
    color: #f0d0b0;
}

.pe-vip--compact {
    flex-direction: row;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 0.85rem;
    padding: 0.75rem 1rem;
    text-align: left;
}
.pe-vip--compact .pe-vip__mark {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}
.pe-vip__compact-text {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.35rem 0.65rem;
}
.pe-vip--compact .pe-vip__days {
    font-size: 1.55rem;
}
.pe-vip--compact .pe-vip__chip {
    margin-top: 0;
}

.pe-skin__error {
    max-width: 16rem;
    margin: 0.5rem auto;
    padding: 0.65rem 0.75rem;
    font-size: 0.8rem;
    line-height: 1.35;
    color: #f0b4a0;
    border: 1px dashed rgba(232, 93, 4, 0.45);
    background: rgba(0, 0, 0, 0.35);
}

@keyframes pe-vip-breathe {
    0%, 100% { opacity: 0.55; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.06); }
}

.pe-skin {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.55rem;
    margin: 0.5rem 0 0.25rem;
}
.pe-skin__img {
    width: min(220px, 100%);
    height: auto;
    max-height: 220px;
    object-fit: contain;
    filter: drop-shadow(0 0 22px rgba(255, 159, 26, 0.45));
    animation: pe-skin-glow 3s ease-in-out infinite;
}
.pe-skin__meta {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    font-size: 0.88rem;
}
.pe-skin__meta strong {
    font-family: Rajdhani, sans-serif;
    font-size: 1.05rem;
}
.pe-skin__meta span { color: var(--pe-muted); }
.pe-skin__price {
    color: var(--pe-accent) !important;
    font-weight: 700;
    font-family: Rajdhani, sans-serif;
    font-size: 1.1rem !important;
}
.pe-skin__meta a {
    color: var(--pe-accent);
    font-size: 0.85rem;
}

/* ========== CTA LINKS ========== */
.pe-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin: 0 0 1.5rem;
    animation: pe-rise 0.7s 0.08s ease both;
}
.pe-cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 1.15rem;
    font-family: Rajdhani, sans-serif;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid transparent;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.pe-cta__btn:hover {
    transform: translateY(-2px);
}
.pe-cta__btn--reg {
    background: linear-gradient(90deg, var(--pe-accent2), var(--pe-accent));
    color: #140c04;
    box-shadow: 0 8px 20px rgba(232, 93, 4, 0.28);
}
.pe-cta__btn--discord {
    background: #1a2030;
    border-color: #5865f2;
    color: #c5caff;
}
.pe-cta__btn--faceit {
    background: #1a2028;
    border-color: rgba(255, 159, 26, 0.45);
    color: var(--pe-accent);
}
.pe-cta__locked {
    display: inline-flex;
    align-items: center;
    padding: 0.7rem 1rem;
    border: 1px dashed rgba(255, 255, 255, 0.2);
    color: var(--pe-muted);
    font-size: 0.88rem;
    background: rgba(0, 0, 0, 0.25);
}

@keyframes pe-skin-glow {
    0%, 100% { filter: drop-shadow(0 0 16px rgba(255, 159, 26, 0.35)); }
    50% { filter: drop-shadow(0 0 28px rgba(255, 159, 26, 0.65)); }
}

/* ========== CLAIM ========== */
.pe-claim {
    background:
        linear-gradient(120deg, rgba(255, 159, 26, 0.1), transparent 40%),
        var(--pe-surface);
    border: 1px solid var(--pe-line);
    padding: 1.35rem 1.4rem;
    margin-bottom: 2rem;
    animation: pe-rise 0.7s 0.06s ease both;
}
.pe-claim__head h2 {
    font-family: Rajdhani, sans-serif;
    margin: 0 0 0.35rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 1.4rem;
}
.pe-claim__guest {
    margin: 0 0 0.85rem;
    color: var(--pe-muted);
    font-size: 0.92rem;
}
.pe-check {
    list-style: none;
    margin: 0 0 1rem;
    padding: 0;
    display: grid;
    gap: 0.5rem;
}
.pe-check li {
    position: relative;
    padding: 0.45rem 0.55rem 0.45rem 1.85rem;
    color: var(--pe-muted);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
}
.pe-check li::before {
    content: "";
    position: absolute;
    left: 0.5rem;
    top: 50%;
    width: 0.85rem;
    height: 0.85rem;
    margin-top: -0.42rem;
    border: 2px solid #3a424c;
}
.pe-check li.is-ok {
    color: var(--pe-text);
    border-color: rgba(61, 214, 140, 0.25);
}
.pe-check li.is-ok::before {
    border-color: var(--pe-ok);
    background: var(--pe-ok);
    box-shadow: inset 0 0 0 2px #0b0d10;
}
.pe-claim__msg {
    min-height: 1.25rem;
    color: var(--pe-accent);
    margin: 0 0 0.75rem;
    font-size: 0.95rem;
}
.pe-claim__actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.pe-btn {
    appearance: none;
    border: 1px solid #3a424c;
    background: #1a2028;
    color: var(--pe-text);
    font-family: Rajdhani, sans-serif;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    padding: 0.7rem 1.4rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}
.pe-btn:hover:not(:disabled) {
    border-color: var(--pe-accent);
    transform: translateY(-1px);
}
.pe-btn:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}
.pe-btn--primary {
    background: linear-gradient(90deg, var(--pe-accent2), var(--pe-accent));
    border-color: transparent;
    color: #140c04;
    box-shadow: 0 8px 22px rgba(232, 93, 4, 0.28);
}
.pe-btn--done {
    border-color: var(--pe-ok);
    color: var(--pe-ok);
}

/* ========== BLOCKS / TABLES / ROSTER ========== */
.pe-block {
    margin-bottom: 2.4rem;
    animation: pe-rise 0.75s 0.1s ease both;
}
.pe-block__head h2 {
    font-family: Rajdhani, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 0 0.25rem;
    font-size: 1.5rem;
}
.pe-block__head p {
    margin: 0 0 1rem;
    color: var(--pe-muted);
    font-size: 0.95rem;
}
.pe-block__sync,
.pe-block__note {
    margin: -0.5rem 0 0.75rem !important;
    font-size: 0.82rem !important;
    color: #8a939e !important;
}
.pe-block__note {
    color: var(--pe-accent) !important;
    opacity: 0.85;
}

.pe-claim--closed {
    opacity: 0.85;
    border: 1px dashed rgba(255, 255, 255, 0.12);
    padding: 1rem 1.1rem;
    margin-bottom: 2rem;
}
.pe-claim__closed-msg {
    margin: 0;
    color: var(--pe-muted);
}

.pe-table-wrap {
    overflow-x: auto;
    border: 1px solid var(--pe-line);
    background: rgba(8, 10, 14, 0.9);
}
.pe-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}
.pe-table th,
.pe-table td {
    padding: 0.8rem 0.95rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.pe-table th {
    font-family: Rajdhani, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.78rem;
    color: var(--pe-muted);
    background: rgba(255, 159, 26, 0.07);
}
.pe-row--hot td:first-child {
    color: var(--pe-accent);
    font-family: Rajdhani, sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
}
.pe-row--place-1 td:first-child {
    color: #ffd56a;
    font-family: Rajdhani, sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
}
.pe-row--place-1 {
    background: linear-gradient(90deg, rgba(255, 213, 106, 0.08), transparent 55%);
}
.pe-row--place-2 td:first-child {
    color: #d4dde8;
    font-family: Rajdhani, sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
}
.pe-row--place-2 {
    background: linear-gradient(90deg, rgba(192, 200, 212, 0.06), transparent 55%);
}
.pe-row--place-3 td:first-child {
    color: #d4a574;
    font-family: Rajdhani, sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
}
.pe-row--place-3 {
    background: linear-gradient(90deg, rgba(212, 165, 116, 0.06), transparent 55%);
}
.pe-nick {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    min-width: 0;
}
.pe-nick__link,
.pe-nick__link--static {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 0;
    color: inherit;
    text-decoration: none;
}
a.pe-nick__link:hover strong {
    color: var(--pe-accent);
}
.pe-nick__avatar,
.pe-nick__avatar--fallback {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    background: #2a313c;
}
.pe-faceit {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    object-fit: contain;
    display: inline-block;
    vertical-align: middle;
}
.pe-row--empty td {
    color: var(--pe-muted);
    text-align: center;
    padding: 1.6rem;
}

.pe-roster-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    gap: 0.7rem;
}

.pe-player {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.6rem 0.75rem;
    background: #12161c;
    border: 1px solid rgba(255, 255, 255, 0.05);
    min-height: 68px;
    position: relative;
    color: inherit;
    text-decoration: none;
}
a.pe-player {
    cursor: pointer;
}
a.pe-player:hover {
    border-color: rgba(255, 159, 26, 0.85);
}
.pe-player > .pe-player__avatar,
.pe-player > .pe-player__avatar-fallback {
    width: 42px;
    height: 42px;
    border-radius: 2px;
    object-fit: cover;
    flex-shrink: 0;
    background: #2a313c;
}
.pe-player__meta {
    min-width: 0;
    flex: 1;
}
.pe-player strong {
    display: block;
    font-size: 0.92rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.pe-player__level {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    margin-top: 0.15rem;
    color: var(--pe-muted);
    font-size: 0.78rem;
}
.pe-player__badge {
    font-family: Rajdhani, sans-serif;
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #140c04;
    background: var(--pe-accent);
    padding: 0.15rem 0.35rem;
    font-weight: 700;
}

.pe-player.is-blur {
    opacity: 0.32;
    filter: blur(1.4px) grayscale(0.55);
}
.pe-player.is-blur:hover {
    opacity: 0.48;
}
.pe-player.is-claimed {
    opacity: 1;
    filter: none;
    border-color: rgba(255, 159, 26, 0.6);
    box-shadow: 0 0 0 1px rgba(255, 159, 26, 0.18), 0 10px 24px rgba(0, 0, 0, 0.28);
    background: linear-gradient(120deg, rgba(255, 159, 26, 0.16), #141820 58%);
    animation: pe-pulse 2.6s ease-in-out infinite;
}
a.pe-player.is-claimed:hover {
    border-color: rgba(255, 159, 26, 0.95);
    box-shadow: 0 0 0 1px rgba(255, 159, 26, 0.4), 0 12px 28px rgba(255, 159, 26, 0.2);
}

.pe-empty {
    color: var(--pe-muted);
    padding: 1rem 0;
}

@keyframes pe-rise {
    from { opacity: 0; transform: translateY(14px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes pe-pulse {
    0%, 100% { box-shadow: 0 0 0 1px rgba(255, 159, 26, 0.18), 0 10px 24px rgba(0, 0, 0, 0.28); }
    50% { box-shadow: 0 0 0 1px rgba(255, 159, 26, 0.4), 0 12px 28px rgba(255, 159, 26, 0.14); }
}

@media (max-width: 640px) {
    .pe-page { padding: 1rem 0 3.5rem; }
    .pe-hero__content { padding: 1.2rem 1rem 1.3rem; }
    .pe-player.is-blur { filter: blur(1px) grayscale(0.4); opacity: 0.38; }
    .pe-guest-bar__label { display: none; }
    .pe-nick__avatar,
    .pe-nick__avatar--fallback {
        width: 24px;
        height: 24px;
    }
    .pe-podium {
        grid-template-columns: 1fr;
        align-items: stretch;
    }
    .pe-podium__slot--1 {
        transform: none;
        order: -1;
    }
    .pe-member-chips { flex-direction: column; align-items: flex-start; }
    .pe-team-roster { grid-template-columns: 1fr; }
}

/* ========== TEAM MODE ========== */
.pe-card__format {
    position: absolute;
    top: 0.65rem;
    left: 0.65rem;
    font-family: Rajdhani, sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #140c04;
    background: rgba(255, 159, 26, 0.92);
    padding: 0.2rem 0.45rem;
    border-radius: 4px;
    z-index: 2;
}
.pe-phase-badge--format {
    background: rgba(255, 159, 26, 0.18);
    border-color: rgba(255, 159, 26, 0.45);
    color: var(--pe-accent);
}
.pe-vip__chip--team {
    background: rgba(255, 159, 26, 0.15);
    border-color: rgba(255, 159, 26, 0.35);
    color: var(--pe-accent);
    font-size: 0.68rem;
}
.pe-team-cell {
    display: flex;
    align-items: center;
    gap: 0.55rem;
}
.pe-team-cell__avatar {
    border-radius: 6px;
    object-fit: cover;
    flex-shrink: 0;
}
.pe-team-cell__meta {
    display: block;
    font-size: 0.75rem;
    color: var(--pe-muted);
    margin-top: 0.1rem;
}
.pe-member-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}
.pe-member-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.2rem 0.45rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.78rem;
    color: inherit;
    text-decoration: none;
}
.pe-member-chip img:first-child {
    border-radius: 50%;
    object-fit: cover;
}
.pe-member-chip:hover {
    border-color: rgba(255, 159, 26, 0.45);
}
.pe-table--team td:nth-child(4) {
    min-width: 180px;
}
.pe-team-roster {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 0.85rem;
}
.pe-team-card {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    background: linear-gradient(145deg, rgba(20, 24, 32, 0.95), rgba(12, 14, 18, 0.98));
    padding: 0.75rem;
}
.pe-team-card__head {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 0.65rem;
    padding-bottom: 0.55rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.pe-team-card__avatar {
    border-radius: 8px;
    object-fit: cover;
}
.pe-team-card__badge {
    display: block;
    font-size: 0.72rem;
    color: var(--pe-muted);
    margin-top: 0.15rem;
}
.pe-team-card__members {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}
.pe-team-member {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.45rem;
    border-radius: 8px;
    font-size: 0.82rem;
    text-decoration: none;
    color: inherit;
    border: 1px solid transparent;
}
.pe-team-member img:first-child {
    border-radius: 50%;
    object-fit: cover;
}
.pe-team-member.is-blur {
    opacity: 0.35;
    filter: blur(0.8px) grayscale(0.5);
}
.pe-team-member.is-claimed {
    opacity: 1;
    filter: none;
    border-color: rgba(255, 159, 26, 0.45);
    background: rgba(255, 159, 26, 0.08);
}
.pe-team-member__slimi {
    margin-left: auto;
    font-style: normal;
    font-family: Rajdhani, sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #140c04;
    background: var(--pe-accent);
    padding: 0.1rem 0.3rem;
    border-radius: 3px;
}
