/* Rampage — тёмный золотой лендинг (герой / таймер / карточки / рейтинг) */
:root {
    --gold: #d4af37;
    --gold-2: #f3e1a6;
    --gold-3: #8d6b2b;
    --ink: #0c0806;
    --paper: #f4ead3;
    --muted: #b8a98a;
    --line: rgba(212, 175, 55, 0.32);
    --card: rgba(14, 10, 8, 0.72);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body.rp {
    position: relative;
    min-width: 320px;
    color: var(--paper);
    font-family: Manrope, Segoe UI, sans-serif;
    background-color: #05060c;
    background-image:
        linear-gradient(180deg, rgba(5, 6, 12, 0.28) 0%, rgba(5, 6, 12, 0.72) 100%),
        url("../images/bg-clean.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center 42%;
    background-attachment: fixed;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
img { max-width: 100%; }

.rp-wrap {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.rp-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: linear-gradient(180deg, rgba(10, 7, 5, 0.94), rgba(10, 7, 5, 0.78));
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(12px);
}
.rp-header__in {
    display: flex;
    align-items: center;
    gap: 24px;
    min-height: 74px;
}
.rp-logo {
    display: flex;
    align-items: center;
    min-width: 72px;
}
.rp-logo__img { height: 48px; width: auto; max-width: 220px; display: block; object-fit: contain; }
.rp-logo__txt {
    font-family: Philosopher, serif;
    font-size: 22px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-2);
}
.rp-nav { flex: 1; }
.rp-nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px 6px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.rp-nav li { position: relative; }
.rp-nav li + li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 5px;
    height: 5px;
    background: linear-gradient(145deg, #f6e7a8, #d4af37 55%, #8d6b2b);
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.55);
    transform: translate(-50%, -50%) rotate(45deg);
    opacity: 0.7;
}
.rp-nav__a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 74px;
    padding: 0 16px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #d8c9a6;
    transition: color 0.2s, text-shadow 0.2s;
}
.rp-nav__ico {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, rgba(255, 230, 160, 0.16), rgba(20, 14, 8, 0.35));
    box-shadow: inset 0 0 0 1px rgba(212, 175, 55, 0.28);
    transition: box-shadow 0.2s, background 0.2s, transform 0.2s;
}
.rp-nav__ico svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.55;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.rp-nav__a:hover,
.rp-nav__a.is-on {
    color: #f6e7a8;
    text-shadow: 0 0 12px rgba(212, 175, 55, 0.35);
}
.rp-nav__a:hover .rp-nav__ico,
.rp-nav__a.is-on .rp-nav__ico {
    background: radial-gradient(circle at 35% 30%, rgba(255, 230, 160, 0.32), rgba(80, 52, 16, 0.45));
    box-shadow: inset 0 0 0 1px rgba(246, 231, 168, 0.55), 0 0 14px rgba(212, 175, 55, 0.28);
    transform: translateY(-1px);
}
.rp-auth { display: flex; align-items: center; }
.rp-cabinet {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    min-width: 222px;
    min-height: 54px;
    padding: 0 22px;
    border: 1px solid #d8b15f57;
    border-radius: 16px;
    background: linear-gradient(135deg, #d8b15f33, #483a222e);
    box-shadow: inset 0 1px #ffffff14, 0 12px 30px #0407142e;
    color: #e9e5dc;
    font-family: "Cormorant Garamond", Philosopher, Times New Roman, serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
    backdrop-filter: blur(14px);
    transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
.rp-cabinet b { font: inherit; font-weight: 600; }
.rp-cabinet__icon {
    display: inline-flex;
    width: 18px;
    height: 18px;
}
.rp-cabinet svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: #e4bc69;
    stroke-width: 1.6px;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.2s;
}
.rp-cabinet:hover {
    background: linear-gradient(135deg, #d8b15f47, #5946233d);
    border-color: #e4bc699e;
    transform: translateY(-2px);
    color: #fffffff0;
}
.rp-cabinet:hover svg { transform: translateX(3px); }
.rp-live {
    position: absolute;
    top: 92px;
    right: 28px;
    z-index: 45;
    width: 320px;
    padding: 14px;
    border-radius: 16px;
    background: rgba(10, 10, 14, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}
.rp-live__head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
}
.rp-live__head i {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ff2a2a;
    box-shadow: 0 0 0 rgba(255, 42, 42, 0.7);
    animation: rp-live-dot 1.5s infinite;
}
.rp-live__head b {
    color: #ff3b3b;
    text-shadow: 0 0 8px rgba(255, 0, 0, 0.5);
}
.rp-live__card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.15s, background 0.15s, border-color 0.15s;
}
.rp-live__card:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 196, 94, 0.35);
}
.rp-live__thumb {
    flex: 0 0 74px;
    width: 74px;
    height: 44px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(228, 188, 105, 0.35);
    background:
        radial-gradient(circle at 50% 45%, rgba(255, 42, 42, 0.22), transparent 58%),
        linear-gradient(180deg, #1a1410 0%, #0c0a0c 100%);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}
.rp-live__thumb:before {
    content: "";
    position: absolute;
    left: 7px;
    top: 7px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ff2a2a;
    box-shadow: 0 0 8px rgba(255, 42, 42, 0.75);
    animation: rp-live-dot 1.5s infinite;
}
.rp-live__thumb svg {
    width: 16px;
    height: 16px;
    fill: #f3e1a6;
    filter: drop-shadow(0 0 8px rgba(243, 225, 166, 0.45));
    margin-left: 2px;
}
.rp-live__meta { min-width: 0; }
.rp-live__meta strong {
    display: block;
    margin-bottom: 4px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 12px;
    font-weight: 800;
}
.rp-live__meta small {
    display: block;
    color: rgba(255, 255, 255, 0.72);
    font-size: 11px;
    line-height: 1.35;
}
.rp-live__cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 12px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 12px;
}
.rp-live__cta a {
    flex: 0 0 auto;
    padding: 7px 12px;
    border-radius: 12px;
    background: rgba(255, 196, 94, 0.16);
    border: 1px solid rgba(255, 196, 94, 0.35);
    color: #ff3b3b;
    font-weight: 800;
    text-shadow: 0 0 8px rgba(255, 0, 0, 0.45);
}
.rp-live__cta a:hover {
    background: rgba(255, 196, 94, 0.22);
    transform: translateY(-1px);
}
@keyframes rp-live-dot {
    0% { box-shadow: 0 0 0 0 rgba(255, 42, 42, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(255, 42, 42, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 42, 42, 0); }
}
.rp-btn,
.rp-file-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    min-width: 132px;
    padding: 0 18px 4px;
    border: 0;
    border-radius: 0;
    background: url("../images/btn.png") center / 100% 100% no-repeat;
    color: #f3d99b;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-shadow: 0 1px 2px #000;
}
.rp-btn:hover,
.rp-file-btn:hover { filter: brightness(1.12); color: #fff; }
.rp-btn--ghost {
    background: url("../images/btn-color.png") center / 100% 100% no-repeat;
}
.rp-btn--reg {
    min-width: 168px;
    min-height: 46px;
    background: url("../images/btn-register.png") center / 100% 100% no-repeat;
    color: #3a2208;
}
.rp-btn--enter {
    min-width: 148px;
    min-height: 46px;
    background: url("../images/btn-enter.png") center / 100% 100% no-repeat;
}
.rp-burger {
    display: none;
    width: 42px;
    height: 42px;
    position: relative;
}
.rp-burger span,
.rp-burger span:before,
.rp-burger span:after {
    position: absolute;
    left: 10px;
    right: 10px;
    height: 2px;
    background: var(--gold-2);
    content: "";
}
.rp-burger span { top: 20px; }
.rp-burger span:before { top: -7px; }
.rp-burger span:after { top: 7px; }

.rp-hero {
    position: relative;
    min-height: calc(100vh - 74px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #05060c url("../images/bg-rampage.png") center 42% / cover no-repeat;
}
.rp-hero__veil {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5, 6, 12, 0.22) 0%, rgba(5, 6, 12, 0.08) 42%, rgba(5, 6, 12, 0.62) 100%);
    pointer-events: none;
}
.rp-hero__center {
    position: relative;
    z-index: 2;
    width: min(760px, calc(100% - 36px));
    text-align: center;
    padding: 80px 0 100px;
}
.rp-hero__announce { margin: 0 0 22px; }
.rp-hero__announce em {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: #f3e1a6;
    font-style: normal;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    text-shadow: 0 0 16px rgba(212, 175, 55, 0.45);
}
.rp-hero__announce em:before,
.rp-hero__announce em:after {
    content: "";
    width: 28px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
}
.rp-hero h1 {
    margin: 0 0 16px;
    font-family: Philosopher, serif;
    font-size: clamp(30px, 4.8vw, 58px);
    line-height: 1.05;
    font-weight: 700;
    background: linear-gradient(180deg, #fff8d6 0%, #f3e1a6 34%, #d4af37 68%, #8d6b2b 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 10px 28px rgba(0, 0, 0, 0.55)) drop-shadow(0 0 18px rgba(212, 175, 55, 0.28));
}
.rp-hero__when {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    margin: 0;
    padding: 12px 26px;
    border: 1px solid rgba(243, 225, 166, 0.42);
    border-radius: 999px;
    background:
        linear-gradient(180deg, rgba(243, 225, 166, 0.14), rgba(12, 10, 8, 0.55));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 0 24px rgba(212, 175, 55, 0.22);
    color: #fff4c8;
    font-family: Philosopher, serif;
    font-size: clamp(20px, 2.6vw, 28px);
    letter-spacing: 0.04em;
    animation: rp-hero-when 2.8s ease-in-out infinite;
}
@keyframes rp-hero-when {
    0%, 100% { box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 0 18px rgba(212, 175, 55, 0.18); }
    50% { box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 0 32px rgba(255, 196, 94, 0.42); }
}
.rp-hero__count { margin: 0 0 30px; }
.rp-hero__hint {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 16px;
    color: #f3e1a6;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 800;
    text-shadow: 0 0 16px rgba(212, 175, 55, 0.4);
}
.rp-hero__hint:before,
.rp-hero__hint:after {
    content: "";
    width: 36px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
}
.rp-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}
.rp-timer i {
    color: #f3e1a6;
    font-family: Philosopher, serif;
    font-size: 28px;
    font-style: normal;
    line-height: 1;
    opacity: 0.7;
    animation: rp-timer-colon 1s steps(2) infinite;
}
.rp-timer div {
    min-width: 90px;
    padding: 14px 10px 12px;
    border: 1px solid rgba(243, 225, 166, 0.32);
    border-radius: 16px;
    background:
        linear-gradient(180deg, rgba(243, 225, 166, 0.12), rgba(8, 6, 4, 0.62));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 10px 24px rgba(0, 0, 0, 0.28);
}
.rp-timer strong {
    display: block;
    font-family: Philosopher, serif;
    font-size: 36px;
    line-height: 1;
    background: linear-gradient(180deg, #fff8d6, #d4af37);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.rp-timer small {
    display: block;
    margin-top: 7px;
    color: #c9b48a;
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.rp-timer .is-sec {
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 0 22px rgba(212, 175, 55, 0.22);
    animation: rp-hero-when 2.8s ease-in-out infinite;
}
@keyframes rp-timer-colon {
    50% { opacity: 0.18; }
}
.rp-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: min(448px, 90vw);
    aspect-ratio: 448 / 94;
    margin-top: 58px;
    padding: 6px 40px 0;
    border: 0;
    background: url("../images/btn-start.png") center / contain no-repeat;
    color: #f6e7a8;
    font-family: Philosopher, serif;
    font-size: clamp(18px, 2.3vw, 23px);
    font-weight: 700;
    letter-spacing: 0.16em;
    line-height: 1;
    text-transform: uppercase;
    text-shadow:
        0 0 14px rgba(212, 175, 55, 0.45),
        0 1px 2px rgba(0, 0, 0, 0.8);
}
.rp-cta:hover {
    color: #fff8d6;
    filter: brightness(1.1);
    text-shadow: 0 0 18px rgba(255, 220, 140, 0.55), 0 1px 2px #000;
}

.rp-servers {
    position: absolute;
    left: max(20px, calc(50% - 680px));
    top: 160px;
    z-index: 3;
    width: 280px;
    display: grid;
    gap: 12px;
}
.rp-scard {
    padding: 28px 24px 18px;
    border: 0;
    border-radius: 0;
    background: url("../images/ramka1.png") center / 100% 100% no-repeat;
    box-shadow: none;
}
.rp-scard__line { display: none; }
.rp-scard__row {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    font-size: 13px;
}
.rp-scard__row span,
.rp-scard__row em { color: var(--gold-2); font-style: normal; }
.rp-scard__bar {
    height: 10px;
    margin: 10px 0;
    padding: 3px;
    background: #242e3d;
    border-radius: 99px;
    overflow: hidden;
}
.rp-scard__bar span {
    display: block;
    height: 100%;
    background: url("../images/progress.png") center / 100% 100% no-repeat;
}
.rp-scard p {
    margin: 0;
    text-align: center;
    color: var(--muted);
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.rp-sec { padding: 86px 0 40px; }
.rp-sec--media {
    padding-bottom: 20px;
    background:
        url("../images/pers.png") right 8% bottom no-repeat,
        url("../images/bg-stat.png") center / cover no-repeat;
    background-size: 280px auto, cover;
}
.rp-h {
    margin: 0 0 36px;
    text-align: center;
    font-family: Philosopher, serif;
    font-size: clamp(28px, 4vw, 42px);
    color: var(--gold-2);
}
.rp-h:after {
    content: none !important;
    display: none !important;
}
#rating {
    background-color: #16181e;
    background-image:
        linear-gradient(180deg, rgba(8, 10, 16, 0.38), rgba(8, 10, 16, 0.48)),
        url("../images/bg-repeat.png");
    background-repeat: repeat;
}
#streams {
    padding-top: 18px;
    background-color: #16181e;
    background-image:
        linear-gradient(180deg, rgba(8, 10, 16, 0.38), rgba(8, 10, 16, 0.48)),
        url("../images/promo-repeat.png");
    background-repeat: repeat;
}
#streams .rp-h { margin-bottom: 12px; }
#forum {
    background-color: #16181e;
    background-image:
        linear-gradient(180deg, rgba(8, 10, 16, 0.38), rgba(8, 10, 16, 0.48)),
        url("../images/bg-repeat.png");
    background-repeat: repeat;
}
.rp-dots {
    position: fixed;
    right: 22px;
    top: 50%;
    z-index: 30;
    display: grid;
    gap: 12px;
    transform: translateY(-50%);
}
.rp-dots a {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid var(--gold);
    background: transparent;
}
.rp-dots a:hover,
.rp-dots a.is-on { background: var(--gold); }
@media (max-width: 900px) {
    .rp-dots { display: none; }
}
.rp-lead {
    max-width: 720px;
    margin: -18px auto 36px;
    text-align: center;
    color: var(--muted);
    line-height: 1.6;
}

.rp-news {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.rp-post {
    position: relative;
    min-height: 420px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--line);
    background: #14100c;
    isolation: isolate;
}
.rp-post__bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(20, 14, 8, 0.15), rgba(8, 6, 4, 0.92)),
        radial-gradient(circle at 30% 20%, #5a3a18, #1a120c 60%);
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}
.rp-post:hover .rp-post__bg { transform: scale(1.06); }
.rp-post__date {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    padding: 6px 10px;
    border-radius: 8px;
    background: rgba(8, 6, 4, 0.72);
    border: 1px solid var(--line);
    color: var(--gold-2);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.rp-post__box {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 22px 20px 20px;
}
.rp-post h3 {
    margin: 0 0 8px;
    font-family: Philosopher, serif;
    font-size: 24px;
}
.rp-post p {
    margin: 0 0 14px;
    color: #d7cbb3;
    line-height: 1.5;
    font-size: 14px;
}
.rp-post a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    min-height: 42px;
    padding: 0 16px 4px;
    background: url("../images/btn-post.png") center / 100% 100% no-repeat;
    color: #f3d99b;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-size: 12px;
}

.rp-rate { display: grid; gap: 16px; }
.rp-rate__srvs,
.rp-rate__tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}
@media (min-width: 901px) {
    .rp-rate__tabs { display: none; }
}
.rp-chip {
    min-height: 38px;
    min-width: 110px;
    padding: 0 16px;
    border: 1px solid rgba(212, 175, 55, 0.32);
    border-radius: 10px;
    background: rgba(8, 10, 18, 0.55);
    color: #d8c9a6;
    font-weight: 700;
    letter-spacing: 0.04em;
}
.rp-chip.is-on,
.rp-chip:hover {
    color: #1a1408;
    background: linear-gradient(180deg, #f3e1a6, #d4af37);
    border-color: #d4af37;
}
.rp-rate__grid { display: none; }
.rp-rate__grid.is-on {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.rp-top {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.28);
    border-radius: 16px;
    background: rgba(8, 10, 18, 0.62);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}
.rp-top:before,
.rp-top:after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.rp-top:before {
    z-index: 0;
    background-size: cover;
    background-position: center 18%;
    opacity: 0.42;
}
.rp-top:after {
    z-index: 1;
    background: linear-gradient(180deg, rgba(6, 8, 16, 0.35) 0%, rgba(6, 8, 16, 0.78) 42%, rgba(6, 8, 16, 0.92) 100%);
}
.rp-top--pvp:before { background-image: url("../images/news1.webp"); }
.rp-top--pk:before { background-image: url("../images/news2.webp"); }
.rp-top--clan:before { background-image: url("../images/news3.webp"); }
.rp-top__hd,
.rp-top__bd,
.rp-top__empty { position: relative; z-index: 2; }
.rp-top__hd,
.rp-top__rw {
    display: grid;
    grid-template-columns: 48px 1fr 72px;
    gap: 8px;
    align-items: center;
    padding: 10px 14px;
}
.rp-top__hd {
    color: #c9b48a;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(228, 188, 105, 0.22);
    background: rgba(8, 10, 18, 0.28);
}
.rp-top__bd { overflow: visible; }
.rp-top__rw {
    border-top: 1px solid rgba(212, 175, 55, 0.08);
    color: #f2efe8;
    background: rgba(6, 8, 16, 0.28);
}
.rp-top__rw b { color: #e4bc69; }
.rp-top__rw span { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.rp-top__rw small { color: #9aa4b2; font-size: 11px; }
.rp-top__rw em { font-style: normal; color: #f6e7a8; text-align: right; }
.rp-top__rw.is-top-1 { background: rgba(212, 175, 55, 0.16); }
.rp-top__rw.is-top-2 { background: rgba(212, 175, 55, 0.08); }
.rp-top__rw.is-top-3 { background: rgba(212, 175, 55, 0.05); }
.rp-top__empty { padding: 28px; text-align: center; color: #b8a98a; }
.rp-crest { width: 16px; height: 12px; object-fit: contain; }

.rp-streams { display: grid; gap: 18px; }
.rp-streams__slider {
    position: relative;
    padding: 0 52px;
}
.rp-streams__view { min-width: 0; }
.rp-streams__track {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}
.rp-streams__nav {
    position: absolute;
    top: 50%;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.45);
    background: radial-gradient(circle at 35% 30%, rgba(255, 230, 160, 0.22), rgba(12, 10, 8, 0.88));
    color: #f3e1a6;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
    transform: translateY(-50%);
}
.rp-streams__nav.is-prev { left: 0; }
.rp-streams__nav.is-next { right: 0; }
.rp-streams__nav svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.1;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.rp-streams__nav:hover {
    color: #1a1208;
    border-color: #f3e1a6;
    background: linear-gradient(180deg, #f3e1a6, #d4af37);
}
.rp-streams__nav[hidden] { display: none; }
.rp-streams__card {
    min-width: 0;
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: hidden;
    background: #120e0a;
}
.rp-streams__player {
    aspect-ratio: 16 / 9;
    background: #000;
}
.rp-streams__frame { width: 100%; height: 100%; border: 0; display: block; }
.rp-streams__card p {
    margin: 0;
    padding: 10px 12px;
    color: var(--muted);
    font-size: 13px;
}
.rp-streams__empty,
.rp-empty {
    color: var(--muted);
    text-align: center;
    padding: 28px 12px;
}
.rp-streams__add { justify-self: center; }

.rp-forum {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.rp-forum__item {
    display: block;
    padding: 22px 20px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--card);
}
.rp-forum__item b {
    display: block;
    margin-bottom: 8px;
    font-family: Philosopher, serif;
    font-size: 20px;
    color: var(--gold-2);
}
.rp-forum__item span { color: #d7cbb3; line-height: 1.5; }
.rp-forum__more { display: flex; width: fit-content; margin: 22px auto 0; }

.rp-page {
    min-height: calc(100vh - 180px);
    padding: 48px 0 80px;
    background:
        radial-gradient(900px 400px at 50% 0, rgba(140, 90, 30, 0.16), transparent 60%);
}
.rp-step,
.rp-about__grid article {
    margin-bottom: 22px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--card);
}
.rp-step h2,
.rp-about h2 {
    margin: 0 0 8px;
    font-family: Philosopher, serif;
    color: var(--gold-2);
}
.rp-step h2 em { color: var(--muted); font-style: normal; font-size: 0.7em; }
.rp-step p,
.rp-about p { color: #d7cbb3; line-height: 1.6; }
.rp-files-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 16px;
}
.rp-files-grid h3 { margin: 0 0 6px; color: var(--gold); }
.rp-files-btns { display: flex; flex-wrap: wrap; gap: 8px; }
.rp-about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.rp-deal {
    position: fixed;
    left: 18px;
    bottom: 18px;
    z-index: 60;
}
.rp-deal__card {
    position: relative;
    width: 292px;
    max-width: calc(100vw - 28px);
    padding: 20px 18px 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 186, 112, 0.28);
    border-radius: 8px;
    background:
        radial-gradient(circle at 20% 0, rgba(255, 176, 70, 0.22), transparent 46%),
        url("../images/promo-repeat.png") center / cover no-repeat,
        #120c08;
    box-shadow:
        0 0 0 1px rgba(255, 186, 80, 0.08),
        0 18px 50px rgba(0, 0, 0, 0.45),
        0 0 40px rgba(212, 140, 40, 0.18);
    animation: rp-deal-in 0.55s ease both, rp-deal-glow 3.2s ease-in-out infinite;
}
.rp-deal.is-min .rp-deal__card { display: none; }
.rp-deal__spark {
    position: absolute;
    inset: -20% auto auto -30%;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(255, 210, 110, 0.28), transparent 68%);
    pointer-events: none;
    animation: rp-deal-spark 4s linear infinite;
}
.rp-deal__hide {
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid rgba(255, 186, 112, 0.38);
    background:
        radial-gradient(circle at 35% 30%, rgba(255, 230, 160, 0.22), rgba(18, 12, 8, 0.72));
    color: #ffe9d3;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04), 0 0 10px rgba(212, 140, 40, 0.12);
    opacity: 0.86;
    transition: transform 0.2s, opacity 0.2s, border-color 0.2s, box-shadow 0.2s, color 0.2s;
}
.rp-deal__hide svg {
    width: 12px;
    height: 12px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.1;
    stroke-linecap: round;
}
.rp-deal__hide:hover {
    opacity: 1;
    color: #1a1208;
    border-color: #f3e1a6;
    background: linear-gradient(180deg, #f3e1a6, #d4af37);
    box-shadow: 0 0 16px rgba(255, 186, 80, 0.45);
    transform: rotate(90deg);
}
.rp-deal__tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 12px;
    padding: 5px 10px 5px 8px;
    border-left: 3px solid #e4bc69;
    border-radius: 0 8px 8px 0;
    background: linear-gradient(90deg, rgba(10, 8, 6, 0.88), rgba(24, 16, 8, 0.5));
    color: #f4d18a;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-style: normal;
}
.rp-deal__tag:before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #7cff9e;
    box-shadow: 0 0 10px #7cff9e;
    animation: rp-deal-dot 1.4s ease-in-out infinite;
}
.rp-deal__plus {
    margin: 0 0 6px;
    font-family: Philosopher, serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 0.9;
    background: linear-gradient(180deg, #ffe7a8 0%, #ffa114 55%, #c46a10 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 0 12px rgba(255, 161, 20, 0.45));
    animation: rp-deal-plus 2.4s ease-in-out infinite;
}
.rp-deal__lead {
    margin: 0 0 10px;
    color: #ffba70;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.rp-deal__lead i {
    display: block;
    margin-top: 3px;
    font-style: normal;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: none;
    color: #ffe7a8;
}
.rp-deal__tg {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 10px;
    padding: 9px 10px;
    border: 1px solid rgba(90, 190, 255, 0.38);
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(42, 171, 238, 0.18), rgba(212, 175, 55, 0.12));
    box-shadow: 0 0 18px rgba(42, 171, 238, 0.12);
    animation: rp-deal-tg-glow 1.8s ease-in-out infinite;
}
.rp-deal__tg:before {
    content: "";
    position: absolute;
    top: 0;
    left: -40%;
    width: 36%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
    transform: skewX(-18deg);
    animation: rp-deal-tg-shine 2.8s ease-in-out infinite;
    pointer-events: none;
}
.rp-deal__tg-ico {
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #2aabee;
    box-shadow: 0 0 12px rgba(42, 171, 238, 0.45);
    animation: rp-deal-tg-ico 1.8s ease-in-out infinite;
}
.rp-deal__tg-ico svg { width: 15px; height: 15px; fill: #fff; }
.rp-deal__tg b {
    display: block;
    color: #fff4d4;
    font-size: 12px;
    line-height: 1.25;
}
.rp-deal__tg small {
    display: block;
    margin-top: 2px;
    color: #cfe9ff;
    font-size: 10px;
    line-height: 1.3;
}
.rp-deal__tg > * { position: relative; z-index: 1; }
.rp-deal__tg:hover {
    filter: brightness(1.1);
    animation-duration: 1.1s;
}
.rp-deal__tabs {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 4px;
    margin: 0 0 8px;
}
.rp-deal__tabs button {
    min-height: 28px;
    padding: 0 4px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 7px;
    background: rgba(8, 6, 4, 0.35);
    color: #b8a98a;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}
.rp-deal__tabs button.is-on {
    color: #1a1208;
    background: linear-gradient(180deg, #f3e1a6, #d4af37);
    border-color: #d4af37;
}
.rp-deal__tabs button[data-tab="tg"].is-on {
    color: #fff;
    background: linear-gradient(180deg, #4fc3f7, #2aabee);
    border-color: #2aabee;
}
.rp-deal__panel { display: none; margin: 0 0 10px; }
.rp-deal__panel.is-on { display: block; }
.rp-deal__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 2px;
    border-bottom: 1px solid rgba(255, 186, 112, 0.1);
    color: #d7cbb3;
    font-size: 11px;
}
.rp-deal__row:last-child { border-bottom: 0; }
.rp-deal__row b { color: #7cff9e; font-size: 12px; }
.rp-deal__panel[data-panel="tg"] .rp-deal__row b { color: #4fc3f7; }
.rp-deal__cta {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 54px;
    padding: 0 12px 4px;
    background: url("../images/promo-cta.png") center / 100% 100% no-repeat;
    color: #ffe9d3;
    font-family: Philosopher, serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-shadow: 0 1px 3px #000;
}
.rp-deal__cta:hover { filter: brightness(1.18); color: #fff; }
.rp-deal__mini {
    display: none;
    align-items: center;
    gap: 8px;
    min-height: 48px;
    padding: 0 14px;
    border: 1px solid rgba(255, 186, 112, 0.28);
    border-radius: 8px;
    background: url("../images/promo-repeat.png") center / cover no-repeat;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4), 0 0 22px rgba(212, 140, 40, 0.2);
    color: #ffe9d3;
    animation: rp-deal-in 0.35s ease both;
}
.rp-deal.is-min .rp-deal__mini {
    display: inline-flex;
    animation: rp-deal-in 0.35s ease both, rp-deal-mini-glow 1.2s ease-in-out infinite;
}
.rp-deal__mini i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #7cff9e;
    box-shadow: 0 0 10px #7cff9e;
    animation: rp-deal-blink 1s ease-in-out infinite;
}
.rp-deal__mini strong { color: #ffa114; font-size: 16px; }
.rp-deal__mini span { color: #ffba70; font-size: 12px; text-transform: uppercase; letter-spacing: 0.04em; }
@keyframes rp-deal-in {
    from { opacity: 0; transform: translateY(16px) scale(0.96); }
    to { opacity: 1; transform: none; }
}
@keyframes rp-deal-glow {
    0%, 100% { box-shadow: 0 0 0 1px rgba(255, 186, 80, 0.08), 0 18px 50px rgba(0, 0, 0, 0.45), 0 0 28px rgba(212, 140, 40, 0.14); }
    50% { box-shadow: 0 0 0 1px rgba(255, 210, 110, 0.22), 0 18px 50px rgba(0, 0, 0, 0.45), 0 0 46px rgba(255, 170, 50, 0.32); }
}
@keyframes rp-deal-plus {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 10px rgba(255, 161, 20, 0.35)); }
    50% { transform: scale(1.04); filter: drop-shadow(0 0 18px rgba(255, 180, 40, 0.6)); }
}
@keyframes rp-deal-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.35; }
}
@keyframes rp-deal-blink {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
        box-shadow: 0 0 8px #7cff9e, 0 0 16px rgba(124, 255, 158, 0.45);
    }
    50% {
        opacity: 0.2;
        transform: scale(0.72);
        box-shadow: 0 0 0 #7cff9e;
    }
}
@keyframes rp-deal-mini-glow {
    0%, 100% { box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4), 0 0 14px rgba(124, 255, 158, 0.12); }
    50% { box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4), 0 0 22px rgba(124, 255, 158, 0.45); }
}
@keyframes rp-deal-tg-glow {
    0%, 100% {
        border-color: rgba(90, 190, 255, 0.32);
        box-shadow: 0 0 12px rgba(42, 171, 238, 0.12), 0 0 0 rgba(255, 210, 120, 0);
    }
    50% {
        border-color: rgba(180, 230, 255, 0.7);
        box-shadow: 0 0 22px rgba(42, 171, 238, 0.42), 0 0 18px rgba(255, 210, 120, 0.18);
    }
}
@keyframes rp-deal-tg-shine {
    0% { left: -45%; opacity: 0; }
    20% { opacity: 1; }
    55% { left: 120%; opacity: 0; }
    100% { left: 120%; opacity: 0; }
}
@keyframes rp-deal-tg-ico {
    0%, 100% { box-shadow: 0 0 8px rgba(42, 171, 238, 0.35); transform: scale(1); }
    50% { box-shadow: 0 0 16px rgba(42, 171, 238, 0.75); transform: scale(1.06); }
}
@keyframes rp-deal-spark {
    from { transform: translate(0, 0); }
    to { transform: translate(80px, 40px); }
}
@media (max-width: 720px) {
    .rp-deal { left: 10px; bottom: 10px; }
    .rp-deal__card { width: 250px; padding: 20px 16px 16px; }
    .rp-deal__plus { font-size: 34px; }
}

.rp-footer {
    border-top: 1px solid var(--line);
    padding: 28px 0;
    color: var(--muted);
    background: #080605;
}
.rp-footer__in {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}
.rp-footer__links { display: flex; gap: 16px; }
.rp-footer__links a:hover { color: var(--gold-2); }

@media (max-width: 1100px) {
    .rp-servers { position: static; width: min(420px, calc(100% - 32px)); margin: 24px auto 0; }
    .rp-hero {
        flex-direction: column;
        background-image: url("../images/bg-rampage.png");
        background-position: center 42%;
    }
    body.rp { background-attachment: scroll; }
    .rp-hero__center { padding-top: 24px; }
    .rp-sec--media { background-size: 180px auto, cover; }
    .rp-live { display: none; }
}
@media (max-width: 900px) {
    a[href="https://l2pick.com/"] {
        z-index: 5 !important;
        margin-left: 12px !important;
        max-width: 42vw;
    }
    a[href="https://l2pick.com/"] img { width: 100%; height: auto; }
    .rp.is-menu a[href="https://l2pick.com/"] { display: none !important; }
    .rp-nav,
    .rp-auth { display: none; }
    .rp.is-menu .rp-header {
        background: #100c09;
    }
    .rp.is-menu .rp-header__in {
        flex-wrap: wrap;
        align-items: center;
    }
    .rp.is-menu .rp-logo { order: 1; }
    .rp.is-menu .rp-burger { order: 2; }
    .rp.is-menu .rp-nav,
    .rp.is-menu .rp-auth {
        display: flex;
        flex-direction: column;
        position: static;
        width: 100%;
        flex: 1 0 100%;
        padding: 6px 0 10px;
        background: none;
    }
    .rp.is-menu .rp-nav { order: 3; }
    .rp.is-menu .rp-auth { order: 4; padding-bottom: 16px; }
    .rp.is-menu .rp-nav ul { flex-direction: column; align-items: flex-start; }
    .rp.is-menu .rp-nav li + li:before { display: none; }
    .rp.is-menu .rp-nav__a { min-height: 46px; padding: 0 4px; }
    .rp-burger { display: block; margin-left: auto; }
    .rp-news,
    .rp-forum,
    .rp-files-grid,
    .rp-about__grid,
    .rp-rate__grid.is-on { grid-template-columns: 1fr; }
    .rp-rate__grid.is-on .rp-top.is-off { display: none; }
    .rp-post { min-height: 340px; }
    .rp-header__in { position: relative; }
    .rp-streams__track { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .rp-streams__slider { padding: 0 44px; }
}
@media (max-width: 640px) {
    .rp-streams__track { grid-template-columns: 1fr; }
}
