:root {
    --green: #11aa01;
    --green-bright: #2dff14;
    --purple: #9b59ff;
    --pink: #ff6bcb;
    --orange: #ff9f43;
    --cyan: #00d4ff;
    --bg: #0c0f14;
    --card: rgba(255, 255, 255, 0.06);
    --text: #f8faf8;
    --muted: rgba(255, 255, 255, 0.65);
    --font: "Nunito", "Plus Jakarta Sans", system-ui, sans-serif;
    --radius: 20px;
    --max: 1140px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }

body {
    margin: 0;
    font-family: var(--font);
    color: var(--text);
    background: var(--bg);
    line-height: 1.55;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--green-bright); text-decoration: none; }
a:hover { color: #b8ff9e; }

.yl-wrap {
    width: min(100% - 1.5rem, var(--max));
    margin-inline: auto;
}

.yl-accent { color: var(--green-bright); }

/* Header */
.yl-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    transition: top 0.3s, background 0.3s, box-shadow 0.3s;
}

.yl-header .yl-wrap {
    position: relative;
}

.yl-header__bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--green-bright), var(--cyan), var(--purple), transparent);
    opacity: 0.65;
}

.yl-header.is-scrolled {
    top: 0;
    background: rgba(10, 14, 22, 0.94);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
}

.yl-header.is-scrolled .yl-header__bar { opacity: 1; }

/* Бегущая строка — карточки с иконками между hero и «О проекте» */
.yl-ticker-band {
    position: relative;
    width: 100vw;
    max-width: 100%;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 1.5rem 0 1.65rem;
    overflow: hidden;
    background: var(--bg);
}

.yl-ticker-band__mesh {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 80% at 15% 50%, rgba(17, 170, 1, 0.12), transparent 60%),
        radial-gradient(ellipse 40% 70% at 85% 50%, rgba(0, 212, 255, 0.08), transparent 55%),
        linear-gradient(180deg, rgba(8, 11, 18, 0.6) 0%, transparent 40%, transparent 60%, rgba(8, 11, 18, 0.5) 100%);
    pointer-events: none;
}

.yl-ticker-band__layout {
    position: relative;
    z-index: 1;
    width: 100%;
}

.yl-ticker {
    position: relative;
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.yl-ticker__fade {
    display: none;
}

.yl-ticker__track {
    display: flex;
    width: max-content;
    animation: yl-ticker-scroll 45s linear infinite;
}

.yl-ticker__group {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.25rem 0.85rem;
    flex-shrink: 0;
}

.yl-ticker__chip {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.55rem 1rem 0.55rem 0.55rem;
    border-radius: 16px;
    min-height: 3.25rem;
    white-space: nowrap;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.yl-ticker__chip:hover {
    transform: translateY(-2px) scale(1.02);
}

.yl-ticker__chip-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 12px;
    flex-shrink: 0;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.yl-ticker__chip-icon img {
    width: 26px;
    height: 26px;
    object-fit: contain;
    image-rendering: pixelated;
}

.yl-ticker__chip-icon--logo {
    background: rgba(17, 170, 1, 0.2);
    border-color: rgba(45, 255, 20, 0.25);
}

.yl-ticker__chip-icon--logo img {
    width: 24px;
    height: 24px;
    border-radius: 4px;
}

.yl-ticker__chip-icon--duo {
    gap: 2px;
    width: auto;
    padding: 0 0.35rem;
}

.yl-ticker__chip-icon--duo svg {
    width: 18px;
    height: 18px;
    opacity: 0.9;
}

.yl-ticker__chip-icon--svg {
    color: var(--cyan);
}

.yl-ticker__chip-icon--svg svg {
    width: 22px;
    height: 22px;
    display: block;
}

.yl-ticker__chip-text {
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    color: #f0f4f0;
}

.yl-ticker__chip-badge {
    margin-left: 0.15rem;
    padding: 0.12rem 0.4rem;
    border-radius: 6px;
    font-size: 0.58rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    color: #1a0a12;
    background: linear-gradient(135deg, #ff6bcb, #ffb347);
}

.yl-ticker__chip--brand {
    border-color: rgba(45, 255, 20, 0.35);
    box-shadow: 0 0 20px rgba(17, 170, 1, 0.15), inset 0 1px 0 rgba(45, 255, 20, 0.1);
}

.yl-ticker__chip--brand .yl-ticker__chip-text { color: var(--green-bright); }

.yl-ticker__chip--green {
    border-color: rgba(45, 255, 20, 0.22);
}

.yl-ticker__chip--green .yl-ticker__chip-icon {
    background: rgba(17, 170, 1, 0.18);
}

.yl-ticker__chip--gold {
    border-color: rgba(255, 179, 71, 0.3);
}

.yl-ticker__chip--gold .yl-ticker__chip-icon {
    background: rgba(255, 159, 67, 0.15);
}

.yl-ticker__chip--gold .yl-ticker__chip-text { color: #ffe8c8; }

.yl-ticker__chip--cyan {
    border-color: rgba(0, 212, 255, 0.28);
}

.yl-ticker__chip--cyan .yl-ticker__chip-icon {
    background: rgba(0, 212, 255, 0.12);
}

.yl-ticker__chip--cyan .yl-ticker__chip-text {
    color: #d4f7ff;
    font-family: "Plus Jakarta Sans", system-ui, sans-serif;
    text-transform: none;
}

.yl-ticker__chip--sky {
    border-color: rgba(0, 212, 255, 0.22);
}

.yl-ticker__chip--sky .yl-ticker__chip-icon {
    background: rgba(0, 180, 220, 0.15);
}

.yl-ticker__chip--sky .yl-ticker__chip-text { color: var(--cyan); }

.yl-ticker__chip--hot {
    border-color: rgba(255, 107, 203, 0.35);
    animation: yl-chip-glow 2.5s ease-in-out infinite;
}

.yl-ticker__chip--hot .yl-ticker__chip-icon {
    background: rgba(255, 107, 203, 0.15);
}

.yl-ticker__chip--hot .yl-ticker__chip-text { color: #ffc8e8; }

.yl-ticker__chip--purple {
    border-color: rgba(155, 89, 255, 0.3);
}

.yl-ticker__chip--purple .yl-ticker__chip-icon {
    background: rgba(155, 89, 255, 0.15);
    color: #e0d4ff;
}

.yl-ticker__chip--purple .yl-ticker__chip-text { color: #e8dcff; }

.yl-ticker__chip--pink {
    border-color: rgba(255, 107, 203, 0.25);
}

.yl-ticker__chip--pink .yl-ticker__chip-icon {
    background: rgba(255, 80, 120, 0.12);
}

.yl-ticker__chip--pink .yl-ticker__chip-text { color: #ffd0e8; }

@keyframes yl-ticker-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@keyframes yl-chip-glow {
    0%, 100% { box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25), 0 0 12px rgba(255, 107, 203, 0.15); }
    50% { box-shadow: 0 4px 28px rgba(0, 0, 0, 0.3), 0 0 22px rgba(255, 107, 203, 0.35); }
}

@media (prefers-reduced-motion: reduce) {
    .yl-ticker__track { animation: none; }
    .yl-ticker__chip--hot { animation: none; }
    .yl-ticker__chip:hover { transform: none; }
}

.yl-header__row {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.65rem 0;
}

.yl-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text);
    font-weight: 900;
    font-size: 1.2rem;
}

.yl-brand img { border-radius: 10px; }

.yl-nav {
    display: flex;
    gap: 1.25rem;
    margin-left: auto;
}

.yl-nav a {
    color: var(--muted);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.35rem 0.65rem;
    border-radius: 8px;
    transition: color 0.2s, background 0.2s;
}

.yl-nav a:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.06);
}

.yl-play-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.55rem 1.15rem;
    font-weight: 800;
    font-size: 0.88rem;
    color: #041004;
    background: linear-gradient(135deg, var(--green-bright), var(--green));
    border-radius: 999px;
    box-shadow: 0 4px 20px rgba(45, 255, 20, 0.35);
    transition: transform 0.2s, box-shadow 0.2s;
    flex-shrink: 0;
}

.yl-play-btn svg {
    width: 16px;
    height: 16px;
}

.yl-play-btn:hover {
    transform: scale(1.05);
    color: #041004;
}

.yl-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: var(--card);
    border: none;
    border-radius: 10px;
    cursor: pointer;
}

.yl-menu-btn span {
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
}

/* Toast */
.yl-toast {
    position: fixed;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    z-index: 200;
    padding: 0.85rem 1.5rem;
    background: #1a2420;
    border: 2px solid var(--green);
    border-radius: 999px;
    font-weight: 800;
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s;
}

.yl-toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

/* Hero */
.yl-hero {
    position: relative;
    min-height: min(100vh, 920px);
    display: flex;
    align-items: center;
    padding: 5.5rem 0 3.5rem;
    overflow: hidden;
}

.yl-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.yl-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
    animation: hero-zoom 28s ease-in-out infinite alternate;
}

@keyframes hero-zoom {
    from { transform: scale(1); }
    to { transform: scale(1.06); }
}

.yl-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(8, 11, 18, 0.93) 0%, rgba(8, 11, 18, 0.78) 42%, rgba(8, 11, 18, 0.52) 72%, rgba(8, 11, 18, 0.38) 100%),
        linear-gradient(180deg, rgba(8, 11, 18, 0.35) 0%, rgba(8, 11, 18, 0.88) 78%, var(--bg) 100%);
}

.yl-hero__grid {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 2rem 2.75rem;
    align-items: center;
}

/* Floating MC items */
.yl-mc-floats {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.yl-mc-float {
    position: absolute;
    image-rendering: pixelated;
    filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.55));
    opacity: 0.9;
    animation: mc-item-float 6s ease-in-out infinite;
}

.yl-mc-float--1 { top: 14%; left: 5%; width: 56px; animation-name: mc-float-a; }
.yl-mc-float--2 { top: 20%; right: 6%; width: 48px; animation-delay: -1s; animation-name: mc-float-b; }
.yl-mc-float--3 { bottom: 28%; left: 3%; width: 56px; animation-delay: -2s; }
.yl-mc-float--4 { top: 38%; right: 4%; width: 44px; animation-delay: -3s; animation-name: mc-float-b; }
.yl-mc-float--5 { bottom: 18%; right: 14%; width: 40px; animation-delay: -4s; }
.yl-mc-float--6 { top: 52%; left: 10%; width: 48px; animation-delay: -2.5s; animation-name: mc-float-a; }

@keyframes mc-item-float {
    0%, 100% { transform: translateY(0) rotate(-5deg); }
    50% { transform: translateY(-18px) rotate(6deg); }
}

@keyframes mc-float-a {
    0%, 100% { transform: translate(0, 0) rotate(-6deg); }
    50% { transform: translate(10px, -16px) rotate(8deg); }
}

@keyframes mc-float-b {
    0%, 100% { transform: translate(0, 0) rotate(4deg); }
    50% { transform: translate(-12px, -20px) rotate(-7deg); }
}

@keyframes blink {
    50% { opacity: 0.45; transform: scale(0.85); }
}

/* Hero — левая колонка */
.yl-hero__content {
    max-width: 34rem;
}

.yl-hero__version {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 0 1rem;
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--muted);
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(45, 255, 20, 0.35);
    border-radius: 999px;
    backdrop-filter: blur(8px);
}

.yl-hero__version strong { color: var(--green-bright); }

.yl-hero__version-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green-bright);
    box-shadow: 0 0 10px var(--green-bright);
    animation: blink 1.2s ease-in-out infinite;
}

.yl-hero__title {
    margin: 0 0 0.75rem;
    font-size: clamp(2.2rem, 7vw, 3.5rem);
    font-weight: 900;
    line-height: 1.05;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.8);
}

.yl-hero__lead {
    margin: 0 0 1.5rem;
    max-width: 32rem;
    font-size: 1.05rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.88);
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}

.yl-hero__lead strong { color: #fff; }
.yl-hero__accent { color: var(--orange); }

.yl-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-bottom: 1.35rem;
}

.yl-hero__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.7rem 1.25rem;
    font-weight: 800;
    font-size: 0.92rem;
    border-radius: 14px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.yl-hero__btn svg {
    width: 18px;
    height: 18px;
}

.yl-hero__socials {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.yl-hero__social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    color: var(--muted);
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    transition: transform 0.25s ease, color 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.yl-hero__social svg { width: 20px; height: 20px; }

.yl-hero__social:hover {
    color: var(--green-bright);
    border-color: rgba(45, 255, 20, 0.45);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(45, 255, 20, 0.15);
}

/* Hero — правая колонка */
.yl-hero__dashboard {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

/* Карточка статуса сервера */
.yl-status-card {
    position: relative;
    padding: 1.2rem 1.2rem 1.1rem;
    border-radius: calc(var(--radius) + 2px);
    background:
        linear-gradient(155deg, rgba(45, 255, 20, 0.08) 0%, rgba(0, 0, 0, 0.55) 42%, rgba(0, 212, 255, 0.06) 100%);
    border: 1px solid rgba(45, 255, 20, 0.22);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    overflow: hidden;
    transition: border-color 0.4s, box-shadow 0.4s;
}

.yl-status-card.is-online {
    border-color: rgba(45, 255, 20, 0.45);
    box-shadow:
        0 24px 56px rgba(0, 0, 0, 0.5),
        0 0 48px rgba(45, 255, 20, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.yl-status-card__shine {
    position: absolute;
    inset: -40% -20% auto;
    height: 120px;
    background: radial-gradient(ellipse at 50% 0%, rgba(45, 255, 20, 0.2), transparent 70%);
    pointer-events: none;
}

.yl-status-card__head {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.yl-status-card__brand {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.yl-status-card__logo {
    display: flex;
    padding: 0.35rem;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(45, 255, 20, 0.25);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.yl-status-card__logo img {
    width: 36px;
    height: 36px;
    border-radius: 8px;
}

.yl-status-card__name {
    display: block;
    font-size: 1rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.yl-status-card__sub {
    display: block;
    margin-top: 0.1rem;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted);
}

.yl-status-pill {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.75rem 0.35rem 0.55rem;
    font-size: 0.72rem;
    font-weight: 800;
    border-radius: 999px;
    background: rgba(255, 90, 90, 0.2);
    color: #ff9e9e;
    border: 1px solid rgba(255, 120, 120, 0.25);
    transition: background 0.4s, color 0.4s, border-color 0.4s;
}

.yl-status-pill.is-online {
    background: rgba(45, 255, 20, 0.18);
    color: var(--green-bright);
    border-color: rgba(45, 255, 20, 0.35);
}

.yl-status-pill__ring {
    position: absolute;
    left: 0.55rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 2px solid currentColor;
    opacity: 0;
}

.yl-status-pill.is-online .yl-status-pill__ring {
    opacity: 0.5;
    animation: status-ring 1.8s ease-out infinite;
}

@keyframes status-ring {
    0% { transform: scale(0.8); opacity: 0.6; }
    100% { transform: scale(2.2); opacity: 0; }
}

.yl-status-pill__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 8px currentColor;
    animation: blink 1.4s ease-in-out infinite;
}

.yl-status-card__ip {
    position: relative;
    margin-bottom: 0.85rem;
    padding: 1rem 1.1rem;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.55), rgba(17, 170, 1, 0.12));
    border: 1px solid rgba(45, 255, 20, 0.3);
    cursor: pointer;
    overflow: hidden;
    user-select: none;
    transition: transform 0.2s, border-color 0.25s, box-shadow 0.25s;
}

.yl-status-card__ip:hover,
.yl-status-card__ip:focus-visible {
    border-color: var(--green-bright);
    outline: none;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(45, 255, 20, 0.2);
}

.yl-status-card__ip:active { transform: scale(0.99); }

.yl-status-card__ip.is-copied {
    border-color: var(--green-bright);
    box-shadow: inset 0 0 24px rgba(45, 255, 20, 0.15);
}

.yl-status-card__ip-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 0.35rem;
}

.yl-status-card__ip-label {
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--muted);
}

.yl-status-card__ip-copy {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.72rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.55);
    transition: color 0.2s;
}

.yl-status-card__ip-copy svg { width: 14px; height: 14px; }

.yl-status-card__ip:hover .yl-status-card__ip-copy { color: var(--green-bright); }

.yl-status-card__ip-value {
    display: block;
    font-size: clamp(1.35rem, 4vw, 1.65rem);
    font-weight: 900;
    letter-spacing: 0.02em;
    color: var(--green-bright);
    text-shadow: 0 0 24px rgba(45, 255, 20, 0.35);
}

.yl-ip-block__ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(45, 255, 20, 0.35);
    transform: scale(0);
    opacity: 0.6;
    pointer-events: none;
}

.yl-ip-block__ripple.is-active {
    animation: yl-ripple 0.55s ease-out forwards;
}

@keyframes yl-ripple {
    to { transform: scale(4); opacity: 0; }
}

.yl-status-card__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.55rem;
}

.yl-stat-chip {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.65rem 0.5rem;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.yl-stat-chip__icon {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 9px;
}

.yl-stat-chip__icon svg { width: 16px; height: 16px; }

.yl-stat-chip__icon--players {
    color: var(--cyan);
    background: rgba(0, 212, 255, 0.12);
}

.yl-stat-chip__icon--ping {
    color: var(--purple);
    background: rgba(155, 89, 255, 0.15);
}

.yl-stat-chip__icon--ver {
    color: var(--green-bright);
    background: rgba(45, 255, 20, 0.12);
}

.yl-stat-chip__body { min-width: 0; }

.yl-stat-chip__value {
    display: block;
    font-size: 1rem;
    font-weight: 900;
    line-height: 1.1;
    font-variant-numeric: tabular-nums;
}

.yl-stat-chip__value--ver {
    font-size: 0.88rem;
    color: var(--green-bright);
}

.yl-stat-chip__label {
    display: block;
    font-size: 0.58rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--muted);
}

.yl-stat-chip__bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(255, 255, 255, 0.06);
}

.yl-stat-chip__fill {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, var(--cyan), var(--green-bright));
    border-radius: 0 2px 0 0;
    transition: width 1s ease;
}

.yl-widget {
    padding: 1.1rem 1.15rem;
    background: rgba(0, 0, 0, 0.48);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: calc(var(--radius) - 2px);
    backdrop-filter: blur(16px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
    transition: border-color 0.25s, box-shadow 0.25s;
}

.yl-widget:hover {
    border-color: rgba(45, 255, 20, 0.28);
}

.yl-widget__title {
    margin: 0 0 0.75rem;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
}

.yl-hero-platform {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    margin: 0.9rem 0 0;
    padding-top: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.8rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.78);
    text-align: center;
}

.yl-hero-platform__icons {
    display: inline-flex;
    gap: 0.35rem;
}

.yl-hero-platform__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 8px;
    color: var(--green-bright);
    background: rgba(45, 255, 20, 0.1);
    border: 1px solid rgba(45, 255, 20, 0.2);
}

.yl-hero-platform__icon svg {
    width: 16px;
    height: 16px;
}

.yl-hero__btn--primary {
    color: #041004;
    background: linear-gradient(135deg, var(--green-bright), var(--green));
    box-shadow: 0 4px 20px rgba(45, 255, 20, 0.35);
}

.yl-hero__btn--primary:hover {
    transform: translateY(-2px);
    color: #041004;
}

.yl-hero__btn--ghost {
    color: var(--text);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.yl-hero__btn--ghost:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--text);
}

/* Hero — карточки режимов (в виджете справа) */
.yl-hero-modes__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.55rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.yl-hero-mode {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.45rem;
    padding: 0.75rem 0.35rem 0.7rem;
    text-align: center;
    text-decoration: none;
    color: var(--text);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: transform 0.25s ease, border-color 0.25s, box-shadow 0.25s, background 0.25s;
}

.yl-hero-mode:hover {
    transform: translateY(-3px);
    color: var(--text);
}

.yl-hero-mode__emoji {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    font-size: 1.4rem;
    line-height: 1;
    border-radius: 14px;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.yl-hero-mode:hover .yl-hero-mode__emoji {
    transform: scale(1.08);
}

.yl-hero-mode--survival .yl-hero-mode__emoji {
    background: linear-gradient(145deg, rgba(45, 255, 20, 0.22), rgba(17, 170, 1, 0.08));
    border: 1px solid rgba(45, 255, 20, 0.35);
    box-shadow: 0 0 24px rgba(45, 255, 20, 0.15);
}

.yl-hero-mode--survival:hover {
    border-color: rgba(45, 255, 20, 0.5);
    box-shadow: 0 8px 28px rgba(45, 255, 20, 0.2);
}

.yl-hero-mode--survival .yl-hero-mode__name { color: var(--green-bright); }

.yl-hero-mode--sky .yl-hero-mode__emoji {
    background: linear-gradient(145deg, rgba(0, 212, 255, 0.22), rgba(0, 120, 200, 0.08));
    border: 1px solid rgba(0, 212, 255, 0.35);
    box-shadow: 0 0 24px rgba(0, 212, 255, 0.15);
}

.yl-hero-mode--sky:hover {
    border-color: rgba(0, 212, 255, 0.5);
    box-shadow: 0 8px 28px rgba(0, 212, 255, 0.2);
}

.yl-hero-mode--sky .yl-hero-mode__name { color: var(--cyan); }

.yl-hero-mode--anarchy .yl-hero-mode__emoji {
    background: linear-gradient(145deg, rgba(255, 159, 67, 0.28), rgba(255, 80, 50, 0.12));
    border: 1px solid rgba(255, 159, 67, 0.45);
    box-shadow: 0 0 24px rgba(255, 107, 53, 0.2);
}

.yl-hero-mode--anarchy {
    background: linear-gradient(160deg, rgba(255, 80, 50, 0.12), rgba(80, 0, 120, 0.08));
}

.yl-hero-mode--anarchy:hover {
    border-color: rgba(255, 159, 67, 0.55);
    box-shadow: 0 8px 28px rgba(255, 107, 53, 0.25);
}

.yl-hero-mode--anarchy .yl-hero-mode__name { color: #ffb347; }

.yl-hero-mode__badge {
    position: absolute;
    top: 0.45rem;
    right: 0.45rem;
    padding: 0.15rem 0.4rem;
    font-size: 0.58rem;
    font-weight: 900;
    font-style: normal;
    letter-spacing: 0.04em;
    color: #fff;
    background: linear-gradient(135deg, #ff6b35, #ff3366);
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(255, 51, 102, 0.45);
}

.yl-hero-mode__body {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 0;
}

.yl-hero-mode__name {
    font-size: 0.78rem;
    font-weight: 900;
    line-height: 1.2;
}

.yl-hero-mode__desc {
    font-size: 0.6rem;
    font-weight: 600;
    color: var(--muted);
    line-height: 1.25;
}

/* Sections */
.yl-head {
    text-align: center;
    margin-bottom: 2rem;
}

.yl-head h2 {
    margin: 0 0 0.35rem;
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    font-weight: 900;
}

.yl-head p { margin: 0; color: var(--muted); font-weight: 600; }
.yl-head--light h2 { color: var(--text); }

/* Modes */
.yl-modes {
    padding: 4rem 0;
    background: linear-gradient(180deg, var(--bg) 0%, #121820 100%);
}

.yl-mode-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.yl-mode {
    display: block;
    text-decoration: none;
    color: inherit;
    background: var(--card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s;
    cursor: pointer;
}

.yl-head p a {
    color: var(--green-bright);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.yl-head p a:hover {
    color: #fff;
}

.yl-mode:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

.yl-mode--anarchy {
    border-color: rgba(255, 107, 53, 0.4);
    box-shadow: 0 0 0 1px rgba(255, 51, 102, 0.2);
}

.yl-mode--pulse {
    animation: mode-pulse 0.3s ease;
}

@keyframes mode-pulse {
    50% { box-shadow: 0 0 0 4px rgba(45, 255, 20, 0.25); }
}

.yl-mode__icon-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 140px;
    padding: 2rem 1rem 1.25rem;
    border-radius: var(--radius) var(--radius) 0 0;
}

.yl-mode__icon-wrap--survival {
    background: linear-gradient(160deg, rgba(17, 170, 1, 0.35), rgba(0, 0, 0, 0.2));
}

.yl-mode__icon-wrap--sky {
    background: linear-gradient(160deg, rgba(0, 180, 255, 0.35), rgba(0, 0, 0, 0.2));
}

.yl-mode__icon-wrap--anarchy {
    background: linear-gradient(160deg, rgba(255, 80, 50, 0.4), rgba(80, 0, 120, 0.25));
}

.yl-mode__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 88px;
    height: 88px;
    border-radius: 22px;
    background: rgba(0, 0, 0, 0.35);
    border: 2px solid rgba(255, 255, 255, 0.15);
    color: var(--green-bright);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.yl-mode__icon img {
    width: 72px;
    height: 72px;
    object-fit: contain;
    display: block;
    /* чёрные PNG → цвет через filter (база под перекраску) */
    filter: brightness(0) saturate(100%);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.35s ease;
}

.yl-mode__icon-wrap--survival .yl-mode__icon img {
    filter: brightness(0) saturate(100%) invert(83%) sepia(24%) saturate(6382%) hue-rotate(65deg) brightness(104%) contrast(106%);
}

.yl-mode__icon-wrap--sky .yl-mode__icon img {
    filter: brightness(0) saturate(100%) invert(80%) sepia(18%) saturate(7498%) hue-rotate(162deg) brightness(101%) contrast(107%);
}

.yl-mode__icon-wrap--anarchy .yl-mode__icon img {
    filter: brightness(0) saturate(100%) invert(62%) sepia(90%) saturate(1200%) hue-rotate(346deg) brightness(105%) contrast(101%);
}

.yl-mode:hover .yl-mode__icon img {
    transform: scale(1.08);
}

.yl-mode[data-mode="survival"]:hover .yl-mode__icon img {
    filter: brightness(0) saturate(100%) invert(88%) sepia(30%) saturate(7000%) hue-rotate(65deg) brightness(112%) contrast(106%);
}

.yl-mode[data-mode="skyblock"]:hover .yl-mode__icon img {
    filter: brightness(0) saturate(100%) invert(86%) sepia(22%) saturate(8000%) hue-rotate(162deg) brightness(110%) contrast(107%);
}

.yl-mode--anarchy:hover .yl-mode__icon img {
    filter: brightness(0) saturate(100%) invert(70%) sepia(95%) saturate(1400%) hue-rotate(346deg) brightness(112%) contrast(101%);
}

.yl-mode__badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    padding: 0.3rem 0.7rem;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    background: rgba(17, 170, 1, 0.9);
    color: #fff;
    border-radius: 8px;
}

.yl-mode__badge--sky { background: rgba(0, 180, 255, 0.9); }
.yl-mode__badge--new {
    background: linear-gradient(135deg, #ff6b35, #ff3366);
    animation: hot-pulse 2s ease-in-out infinite;
}

.yl-mode__body { padding: 1.15rem; }

.yl-mode__body h3 {
    margin: 0 0 0.4rem;
    font-size: 1.25rem;
    font-weight: 900;
}

.yl-mode--anarchy h3 { color: var(--orange); }

.yl-mode__body p {
    margin: 0 0 0.75rem;
    font-size: 0.88rem;
    color: var(--muted);
}

.yl-mode__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.yl-mode__wiki {
    display: inline-block;
    margin-top: 0.85rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--green-bright);
    letter-spacing: 0.02em;
    transition: color 0.2s, transform 0.2s;
}

.yl-mode:hover .yl-mode__wiki {
    color: #fff;
    transform: translateX(3px);
}

.yl-mode--anarchy .yl-mode__wiki {
    color: var(--orange);
}

.yl-mode--anarchy:hover .yl-mode__wiki {
    color: #ffd4c4;
}

.yl-mode__tags li {
    padding: 0.2rem 0.55rem;
    font-size: 0.72rem;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 6px;
}

/* Auto gallery */
.yl-fun {
    padding: 3rem 0 4rem;
    overflow: hidden;
}

.yl-gallery-auto {
    mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
}

.yl-gallery-auto.is-paused .yl-gallery-auto__track {
    animation-play-state: paused;
}

.yl-gallery-auto__track {
    display: flex;
    gap: 1.25rem;
    width: max-content;
    animation: gallery-scroll 45s linear infinite;
}

@keyframes gallery-scroll {
    to { transform: translateX(-50%); }
}

.yl-fun-card {
    flex: 0 0 min(78vw, 340px);
    margin: 0;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
    transition: transform 0.35s, border-color 0.35s, box-shadow 0.35s;
}

.yl-fun-card:hover {
    transform: translateY(-6px) scale(1.02);
    border-color: rgba(45, 255, 20, 0.35);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

.yl-fun-card__img-wrap {
    overflow: hidden;
    aspect-ratio: 16 / 10;
}

.yl-fun-card__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.yl-fun-card:hover .yl-fun-card__img-wrap img {
    transform: scale(1.08);
}

.yl-fun-card figcaption {
    padding: 0.9rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.yl-fun-card strong { font-size: 1.02rem; }
.yl-fun-card span { font-size: 0.82rem; color: var(--muted); }

.yl-fun-hint {
    text-align: center;
    font-size: 0.8rem;
    color: var(--muted);
    margin: 1rem 0 0;
}

/* Why */
.yl-why {
    padding: 4rem 0;
    background: #121820;
}

.yl-why__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
}

.yl-why__text h2 {
    margin: 0 0 1.25rem;
    font-size: 1.75rem;
    font-weight: 900;
}

.yl-why__list {
    list-style: none;
    margin: 0 0 1.5rem;
    padding: 0;
}

.yl-why__list li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.yl-why__icon {
    font-size: 1.75rem;
    line-height: 1;
}

.yl-why__list strong {
    display: block;
    margin-bottom: 0.2rem;
}

.yl-why__list p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--muted);
}

.yl-why__links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.yl-btn {
    padding: 0.6rem 1.1rem;
    font-family: inherit;
    font-weight: 800;
    font-size: 0.88rem;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    transition: transform 0.2s;
}

.yl-btn:hover { transform: scale(1.05); }

.yl-btn--discord { background: #5865f2; color: #fff; }
.yl-btn--tg { background: #229ed9; color: #fff; }
.yl-btn--shop { background: var(--green); color: #041004; }

.yl-why__visual {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    border: 2px solid rgba(155, 89, 255, 0.35);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.yl-why__visual img { width: 100%; }

.yl-why__sticker {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    font-weight: 900;
    font-size: 0.9rem;
    background: var(--pink);
    color: #fff;
    border-radius: 12px;
    transform: rotate(-3deg);
    animation: sticker-bounce 3s ease-in-out infinite;
}

@keyframes sticker-bounce {
    50% { transform: rotate(3deg) translateY(-4px); }
}

/* Join */
.yl-join {
    padding: 4rem 0 5rem;
    background: linear-gradient(180deg, #121820 0%, var(--bg) 100%);
}

.yl-join-box {
    max-width: 36rem;
    margin-inline: auto;
    background: linear-gradient(145deg, rgba(155, 89, 255, 0.12), rgba(17, 170, 1, 0.08));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    overflow: hidden;
}

.yl-join-tabs {
    display: flex;
}

.yl-join-tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 800;
    color: var(--muted);
    background: transparent;
    border: none;
    cursor: pointer;
    transition: background 0.25s, color 0.25s;
}

.yl-join-tab.is-active {
    color: var(--text);
    background: rgba(255, 255, 255, 0.08);
}

.yl-join-panel { padding: 1.5rem; display: none; }
.yl-join-panel.is-active { display: block; animation: fade-up 0.4s ease; }

@keyframes fade-up {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.yl-join-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.yl-step-card {
    text-align: center;
    padding: 1rem 0.5rem;
    background: rgba(0, 0, 0, 0.35);
    border-radius: 14px;
}

.yl-step-card__num {
    display: inline-flex;
    width: 24px;
    height: 24px;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    font-size: 0.8rem;
    font-weight: 900;
    background: var(--purple);
    color: #fff;
    border-radius: 50%;
}

.yl-step-card img { margin: 0 auto 0.5rem; border-radius: 10px; }
.yl-step-card p { margin: 0; font-size: 0.78rem; color: var(--muted); }
.yl-step-card strong { color: var(--text); }

.yl-join-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--muted);
    margin: 0;
}

.yl-join-note span { color: var(--green-bright); font-weight: 800; }

.yl-copy-big {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    width: 100%;
    padding: 1.1rem;
    font-family: inherit;
    background: linear-gradient(135deg, var(--green-bright), var(--green));
    border: none;
    cursor: pointer;
    transition: filter 0.2s;
}

.yl-copy-big span { font-weight: 800; color: #041004; font-size: 0.9rem; }
.yl-copy-big code { font-size: 1.2rem; font-weight: 900; color: #041004; }

.yl-copy-big:hover { filter: brightness(1.1); }

.yl-wiki {
    text-align: center;
    margin-top: 1.25rem;
    font-weight: 700;
}

/* Footer */
.yl-footer {
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.88rem;
    color: var(--muted);
}

.yl-footer p { margin: 0.35rem 0; }
.yl-footer__fine { font-size: 0.75rem; opacity: 0.7; }

/* Reveal */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal--delay { transition-delay: 0.15s; }

/* Tag label */
.yl-tag {
    display: inline-block;
    margin-bottom: 0.5rem;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--cyan);
}

.yl-modes { position: relative; }

/* About */
.yl-about {
    padding: 4rem 0;
    background: linear-gradient(180deg, var(--bg) 0%, #10151c 100%);
}

.yl-about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 2rem;
}

.yl-about__visual {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    border: 2px solid rgba(45, 255, 20, 0.25);
}

.yl-about__visual > img { width: 100%; }

.yl-about__items {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    display: flex;
    gap: 0.5rem;
}

.yl-about__items img {
    image-rendering: pixelated;
    background: rgba(0, 0, 0, 0.5);
    padding: 6px;
    border-radius: 10px;
    animation: item-bob 3s ease-in-out infinite;
}

.yl-about__items img:nth-child(2) { animation-delay: -1s; }
.yl-about__items img:nth-child(3) { animation-delay: -2s; }

@keyframes item-bob {
    50% { transform: translateY(-6px); }
}

.yl-about__text h2 {
    margin: 0 0 0.75rem;
    font-size: 1.75rem;
    font-weight: 900;
}

.yl-about__text p {
    margin: 0 0 0.75rem;
    color: var(--muted);
}

.yl-about__facts {
    list-style: none;
    margin: 1rem 0 0;
    padding: 0;
}

.yl-about__facts li {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 0.6rem;
    font-weight: 700;
}

.yl-fact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.yl-fact-icon svg {
    width: 20px;
    height: 20px;
}

.yl-fact-icon--clock {
    background: rgba(0, 212, 255, 0.12);
    color: var(--cyan);
}

.yl-fact-icon--bolt {
    background: rgba(255, 204, 0, 0.15);
    color: #ffcc00;
}

.yl-fact-icon--book {
    background: rgba(45, 255, 20, 0.12);
    color: var(--green-bright);
}

.yl-fact-icon--shield {
    background: rgba(255, 159, 67, 0.15);
    color: var(--orange);
}

.yl-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.yl-stat-box {
    text-align: center;
    padding: 1.25rem 0.75rem;
    background: var(--card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    transition: transform 0.25s;
}

.yl-stat-box:hover { transform: translateY(-4px); }

.yl-stat-box img {
    margin: 0 auto 0.5rem;
    image-rendering: pixelated;
}

.yl-stat-box strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--green-bright);
}

.yl-stat-box span {
    font-size: 0.8rem;
    color: var(--muted);
}

/* Features grid */
.yl-features {
    padding: 4rem 0;
    background: #10151c;
}

.yl-feat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.yl-feat {
    padding: 1.25rem;
    background: var(--card);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--radius);
    transition: transform 0.3s, border-color 0.3s;
}

.yl-feat:hover {
    transform: translateY(-5px);
    border-color: rgba(45, 255, 20, 0.35);
}

.yl-feat img,
.yl-feat-icon {
    margin-bottom: 0.65rem;
    flex-shrink: 0;
}

.yl-feat img {
    display: block;
    width: 56px;
    height: 56px;
    object-fit: contain;
    image-rendering: pixelated;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
}

.yl-feat-icon {
    display: block;
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background-color: rgba(0, 0, 0, 0.35);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 28px 28px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.yl-feat-icon--pvp { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232dff14' stroke-width='2'%3E%3Cpath d='M14.5 17.5L3 6V3h3l11.5 11.5M13 6l7-3 3 7-7 3M10.5 17.5L21 6V3h-3L6.5 14.5M11 6l-7-3-3 7 7 3'/%3E%3C/svg%3E"); background-color: rgba(255, 60, 60, 0.15); }
.yl-feat-icon--parkour { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300d4ff' stroke-width='2'%3E%3Cpath d='M4 20h4l2-8 4 2 4-10 4 6h4'/%3E%3C/svg%3E"); }
.yl-feat-icon--shield { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffcc00' stroke-width='2'%3E%3Cpath d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z'/%3E%3C/svg%3E"); }
.yl-feat-icon--gift { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff6bcb' stroke-width='2'%3E%3Crect x='3' y='8' width='18' height='13' rx='2'/%3E%3Cpath d='M12 8v13M3 12h18M12 8c-2-3-6-3-6 0s4 0 6 0 6-3 6 0-4 0-6 0'/%3E%3C/svg%3E"); }
.yl-feat-icon--city { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300d4ff' stroke-width='2'%3E%3Cpath d='M3 21h18M5 21V7l8-4v18M19 21V11l-6-3v13'/%3E%3Cpath d='M9 9h1M9 13h1M9 17h1'/%3E%3C/svg%3E"); }
.yl-feat-icon--clan { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff9f43' stroke-width='2'%3E%3Cpath d='M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='9' cy='7' r='4'/%3E%3Cpath d='M23 21v-2a4 4 0 0 0-3-3.87M16 3.13a4 4 0 0 1 0 7.75'/%3E%3C/svg%3E"); }

.yl-feat h3 {
    margin: 0 0 0.35rem;
    font-size: 1rem;
    font-weight: 900;
}

.yl-feat p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.5;
}

.yl-feat code {
    font-size: 0.78rem;
    padding: 0.1rem 0.35rem;
    background: rgba(0, 0, 0, 0.35);
    border-radius: 4px;
    color: var(--cyan);
}

/* Reviews — бегущая лента */
.yl-reviews {
    padding: 4rem 0;
    background: linear-gradient(180deg, #10151c 0%, var(--bg) 100%);
    position: relative;
    overflow: hidden;
}

.yl-reviews-marquee {
    overflow: hidden;
    margin: 0 -0.75rem;
    padding: 0.5rem 0;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.yl-reviews-marquee.is-paused .yl-reviews-track {
    animation-play-state: paused;
}

.yl-reviews-track {
    display: flex;
    gap: 1rem;
    width: max-content;
    animation: reviews-marquee 45s linear infinite;
    will-change: transform;
}

@keyframes reviews-marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.yl-review {
    flex: 0 0 min(320px, 85vw);
    margin: 0;
    padding: 1.25rem 1.35rem;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.3);
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.yl-review:hover {
    border-color: rgba(255, 215, 0, 0.35);
    transform: scale(1.03) translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.yl-review__head {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.85rem;
}

.yl-review__avatar {
    flex-shrink: 0;
    border-radius: 10px;
    image-rendering: pixelated;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.45);
    border: 2px solid rgba(255, 215, 0, 0.25);
}

.yl-review__who {
    flex: 1;
    min-width: 0;
}

.yl-review__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 0.2rem;
}

.yl-review__top strong {
    font-size: 0.95rem;
    line-height: 1.2;
}

.yl-review__sub {
    display: block;
    font-size: 0.78rem;
    color: var(--muted);
    line-height: 1.3;
}

.yl-stars {
    display: flex;
    gap: 1px;
    flex-shrink: 0;
    align-items: center;
}

.yl-review__head .yl-stars .yl-star {
    font-size: 0.95rem;
    line-height: 1;
    color: #ffcc00;
}

.yl-review p {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.65;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
}

.yl-reviews-more {
    text-align: center;
    margin-top: 1.25rem;
    font-weight: 700;
}

/* FAQ */
.yl-faq {
    padding: 4rem 0;
    background: #0e1218;
}

.yl-faq-list {
    max-width: 40rem;
    margin-inline: auto;
}

.yl-faq-item {
    margin-bottom: 0.65rem;
    background: var(--card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.yl-faq-item summary {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.15rem;
    font-weight: 800;
    cursor: pointer;
    list-style: none;
    user-select: none;
    transition: color 0.25s ease;
}

.yl-faq-item summary::after {
    content: "";
    flex-shrink: 0;
    width: 0.55rem;
    height: 0.55rem;
    margin-left: auto;
    border-right: 2px solid var(--muted);
    border-bottom: 2px solid var(--muted);
    transform: rotate(45deg);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.25s ease;
}

.yl-faq-item summary::-webkit-details-marker { display: none; }

.yl-faq-item summary img,
.yl-faq-item summary .yl-faq-icon {
    flex-shrink: 0;
}

.yl-faq-item summary img {
    image-rendering: pixelated;
}

.yl-faq-item__body {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}

.yl-faq-item[open] .yl-faq-item__body {
    grid-template-rows: 1fr;
}

.yl-faq-item__inner {
    overflow: hidden;
}

.yl-faq-item p {
    margin: 0;
    padding: 0 1.15rem 1rem 3.5rem;
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.55;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.3s ease 0.06s, transform 0.32s cubic-bezier(0.4, 0, 0.2, 1) 0.06s;
}

.yl-faq-item[open] p {
    opacity: 1;
    transform: translateY(0);
}

.yl-faq-item[open] {
    border-color: rgba(45, 255, 20, 0.3);
    box-shadow: 0 8px 28px rgba(45, 255, 20, 0.08);
}

.yl-faq-item[open] summary::after {
    transform: rotate(-135deg);
    border-color: var(--green-bright);
}

/* Links grid */
.yl-links {
    padding: 3rem 0 4rem;
}

.yl-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.yl-link-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.35rem;
    padding: 1.25rem 1rem;
    background: var(--card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    color: var(--text);
    transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.yl-link-card:hover {
    transform: translateY(-5px);
    border-color: var(--green);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
    color: var(--text);
}

.yl-link-icon {
    display: block;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 26px 26px;
    margin-bottom: 0.25rem;
}

.yl-link-icon--shop { background: linear-gradient(135deg, rgba(255, 200, 0, 0.25), rgba(0,0,0,.3)); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffcc00' stroke-width='2'%3E%3Ccircle cx='9' cy='21' r='1'/%3E%3Ccircle cx='20' cy='21' r='1'/%3E%3Cpath d='M1 1h4l2.7 13.4a2 2 0 0 0 2 1.6h9.7a2 2 0 0 0 2-1.6L23 6H6'/%3E%3C/svg%3E"); }
.yl-link-icon--wiki { background: linear-gradient(135deg, rgba(17,170,1,.2), rgba(0,0,0,.3)); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232dff14' stroke-width='2'%3E%3Cpath d='M4 19.5A2.5 2.5 0 0 1 6.5 17H20'/%3E%3Cpath d='M6.5 2H20v20H6.5A2.5 2.5 0 0 1 4 19.5v-15A2.5 2.5 0 0 1 6.5 2z'/%3E%3C/svg%3E"); }
.yl-link-icon--map { background: linear-gradient(135deg, rgba(0,180,255,.2), rgba(0,0,0,.3)); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300d4ff' stroke-width='2'%3E%3Cpolygon points='1 6 1 22 8 18 16 22 23 18 23 2 16 6 8 2 1 6'/%3E%3Cline x1='8' y1='2' x2='8' y2='18'/%3E%3Cline x1='16' y1='6' x2='16' y2='22'/%3E%3C/svg%3E"); }
.yl-link-icon--discord { background: linear-gradient(135deg, rgba(88,101,242,.35), rgba(0,0,0,.3)); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%235865f2'%3E%3Cpath d='M20.3 4.4A17.2 17.2 0 0 0 15.5 3c-.2.3-.4.7-.6 1.1a15.9 15.9 0 0 0-4.8 0C9.9 3.7 9.7 3.3 9.5 3a17.2 17.2 0 0 0-4.8 1.4C2.5 8.5 1.8 12.5 2.1 16.4a17.3 17.3 0 0 0 5.3 2.7c.4-.6.8-1.2 1.1-1.8-.6-.2-1.2-.5-1.7-.8.1-.1.2-.2.3-.3 3.3 1.5 6.8 1.5 10.1 0 .1.1.2.2.3.3-.5.3-1.1.6-1.7.8.3.6.7 1.2 1.1 1.8a17.3 17.3 0 0 0 5.3-2.7c.5-4.5-.8-8.4-3.4-12zM9.5 13.8c-1 0-1.8-.9-1.8-2s.8-2 1.8-2 1.8.9 1.8 2-.8 2-1.8 2zm5 0c-1 0-1.8-.9-1.8-2s.8-2 1.8-2 1.8.9 1.8 2-.8 2-1.8 2z'/%3E%3C/svg%3E"); }
.yl-link-icon--telegram { background: linear-gradient(135deg, rgba(34,158,217,.3), rgba(0,0,0,.3)); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23229ed9'%3E%3Cpath d='M11.9 16.2 5.8 18l12.9-9.4-5.8 7.6-.1 4.5 2.5-2.4 4.9 3.6 5.7-16.5L2.9 13.5l9 2.7z'/%3E%3C/svg%3E"); }
.yl-link-icon--ban { background: linear-gradient(135deg, rgba(255,80,80,.25), rgba(0,0,0,.3)); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff6b6b' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M4.9 4.9l14.2 14.2'/%3E%3C/svg%3E"); }

.yl-link-card strong { font-size: 1rem; }
.yl-link-card span { font-size: 0.8rem; color: var(--muted); }

.yl-join-tab__svg {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
}

.yl-step-card img { image-rendering: pixelated; margin: 0 auto 0.5rem; }

.yl-step-svg {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin: 0 auto 0.5rem;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--green-bright);
}

.yl-step-svg svg {
    width: 26px;
    height: 26px;
}

.yl-faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    border-radius: 10px;
    background: rgba(45, 255, 20, 0.12);
    color: var(--green-bright);
}

.yl-faq-icon svg {
    width: 22px;
    height: 22px;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation: none !important;
        transition-duration: 0.01ms !important;
    }
    .reveal { opacity: 1; transform: none; }
    .yl-hero__bg img { animation: none; }
    .yl-reviews-track {
        flex-wrap: wrap;
        width: auto;
        justify-content: center;
        gap: 1rem;
    }

    .yl-reviews-marquee {
        -webkit-mask-image: none;
        mask-image: none;
        overflow: visible;
    }

    .yl-review { flex: 1 1 280px; max-width: 100%; }

    .yl-gallery-auto {
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior-x: contain;
        touch-action: pan-x;
        scroll-snap-type: x mandatory;
        mask-image: none;
        -webkit-mask-image: none;
        scrollbar-width: none;
    }

    .yl-gallery-auto__track {
        animation: none !important;
        transform: none !important;
    }

    .yl-fun-card[aria-hidden="true"] { display: none; }
}

@media (max-width: 960px) {
    .yl-hero__grid {
        grid-template-columns: 1fr;
        gap: 1.75rem;
        justify-items: center;
        text-align: center;
    }

    .yl-hero__content {
        max-width: 28rem;
        width: 100%;
    }

    .yl-hero__lead { margin-inline: auto; }

    .yl-hero__actions { justify-content: center; }

    .yl-hero__socials { justify-content: center; }

    .yl-hero__dashboard {
        max-width: 28rem;
        width: 100%;
        margin-inline: auto;
    }

    .yl-mode-grid { grid-template-columns: 1fr; }
    .yl-why__grid { grid-template-columns: 1fr; }
    .yl-why__visual { order: -1; }
    .yl-about__grid { grid-template-columns: 1fr; }
    .yl-about__visual { order: -1; }
    .yl-stats { grid-template-columns: repeat(2, 1fr); }
    .yl-feat-grid { grid-template-columns: repeat(2, 1fr); }
    .yl-links-grid { grid-template-columns: repeat(2, 1fr); }
    .yl-gallery-auto__track { animation-duration: 60s; }
}

@media (max-width: 720px) {
    .yl-nav, .yl-play-btn { display: none; }
    .yl-menu-btn { display: flex; margin-left: auto; }
    .yl-header.is-open .yl-nav {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        padding: 1rem;
        background: rgba(12, 15, 20, 0.98);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .yl-join-steps { grid-template-columns: 1fr; }
    .yl-hero {
        min-height: auto;
        padding-top: 5.5rem;
        padding-bottom: 2rem;
    }

    .yl-ticker-band {
        padding: 1rem 0 1.1rem;
    }

    .yl-ticker__chip {
        min-height: 2.85rem;
        padding: 0.45rem 0.75rem 0.45rem 0.45rem;
    }

    .yl-ticker__chip-text {
        font-size: 0.78rem;
    }

    .yl-ticker__chip-icon {
        width: 2.15rem;
        height: 2.15rem;
    }

    .yl-ticker__chip-icon img {
        width: 22px;
        height: 22px;
    }

    .yl-ticker__group {
        gap: 0.45rem;
    }

    .yl-ticker__track {
        animation-duration: 55s;
    }

    .yl-mc-floats { display: none; }

    .yl-fun { overflow: visible; }

    .yl-gallery-auto {
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior-x: contain;
        touch-action: pan-x;
        scroll-snap-type: x mandatory;
        scroll-padding-inline: 0.75rem;
        mask-image: none;
        -webkit-mask-image: none;
        margin-inline: -0.75rem;
        padding-inline: 0.75rem;
        padding-bottom: 0.25rem;
        scrollbar-width: none;
    }

    .yl-gallery-auto::-webkit-scrollbar { display: none; }

    .yl-gallery-auto__track {
        animation: none;
        transform: none !important;
    }

    .yl-fun-card {
        scroll-snap-align: center;
        flex: 0 0 min(85vw, 300px);
    }

    .yl-fun-card[aria-hidden="true"] { display: none; }

    .yl-fun-hint { visibility: hidden; position: relative; }
    .yl-fun-hint::after {
        content: 'Свайпай влево и вправо';
        visibility: visible;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        white-space: nowrap;
    }

    .yl-reviews-track { animation-duration: 60s; }
    .yl-feat-grid, .yl-links-grid { grid-template-columns: 1fr; }
    .yl-stats { grid-template-columns: 1fr; }

    .yl-hero-modes__grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .yl-hero-mode {
        flex-direction: row;
        align-items: center;
        gap: 0.75rem;
        padding: 0.75rem 0.9rem;
        text-align: left;
    }

    .yl-hero-mode__body {
        align-items: flex-start;
        flex: 1;
    }

    .yl-hero-mode__emoji {
        flex-shrink: 0;
        width: 46px;
        height: 46px;
        font-size: 1.45rem;
    }

    .yl-status-card__stats { gap: 0.45rem; }

    .yl-stat-chip {
        flex-direction: column;
        text-align: center;
        padding: 0.6rem 0.4rem;
    }

    .yl-stat-chip__icon { margin: 0 auto; }
}
