:root {
    --bg: #0b2237;
    --bg-2: #0a1c2c;
    --header: #2e2e2e;
    --text: #fff;
    --muted: rgba(0, 0, 0, .62);
    --accent: #00a3ff;
    --container: 1180px;
    --page-bg: #ffffff;
    --dark: #2f2f2f;
    --card: #ffffff;
    --border: rgba(0, 0, 0, .12);
    --shadow: 0 18px 40px rgba(0, 0, 0, .22);
    --page: #0b2237;
    --paper: #ffffff;
}

* {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: #ffffff;
    background: var(--page);
}

a {
    color: #0b63d1;
    text-decoration: underline;
}

img {
    max-width: 100%;
    display: block;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.container {
    width: min(var(--container), calc(100% - 32px));
    margin: 0 auto;
}

.site-header {
    background: var(--header);
    position: sticky;
    top: 0;
    z-index: 50;
    color: var(--text);
}

.header-top {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.header-top__row {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 12px;
    min-height: 44px;
}

.auth-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, .9);
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
    text-decoration: none;
}

.auth-link__icon {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .15);
    display: inline-block;
    position: relative;
}

.auth-link__icon::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 35%, rgba(255, 255, 255, .9) 0 3px, transparent 4px),
        radial-gradient(circle at 50% 85%, rgba(255, 255, 255, .9) 0 5px, transparent 6px);
    opacity: .6;
}

.brand {
    text-align: center;
    line-height: 1.1;
}

.brand__logo {
    width: 54px;
    height: 54px;
    margin: 0 auto 4px;
    object-fit: contain;
}

.brand__name {
    font-weight: 800;
    letter-spacing: .06em;
    font-size: 12px;
    opacity: .95;
}

.brand__tagline {
    font-size: 12px;
    color: rgba(255, 255, 255, .75);
    margin-top: 4px;
}

.header-actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
}

.burger {
    display: none;
    width: 44px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, .16);
    background: rgba(0, 0, 0, .15);
    border-radius: 10px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    gap: 5px;
    flex-direction: column;
}

.burger span {
    width: 18px;
    height: 2px;
    background: rgba(255, 255, 255, .9);
    display: block;
}

.nav {
    padding: 10px 0;
}

.nav__list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(14px, 2vw, 34px);
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav__link {
    font-weight: 800;
    letter-spacing: .02em;
    font-size: 14px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .92);
    padding: 10px 6px;
    border-radius: 10px;
    transition: .2s ease;
    text-decoration: none;
}

.nav__link:hover {
    background: rgba(255, 255, 255, .06);
}

.nav__link.is-active {
    color: var(--accent);
}

.nav__item {
    position: relative;
}

.dropdown {
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    min-width: 260px;
    background: rgba(35, 35, 35, .95);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .35);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: .18s ease;
}

.nav__item:hover .dropdown,
.nav__item:focus-within .dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.dropdown a {
    display: block;
    padding: 12px 14px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 13px;
    color: rgba(255, 255, 255, .92);
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.dropdown a:first-child {
    border-top: none;
}

.dropdown a:hover {
    background: rgba(255, 255, 255, .06);
}

.hero {
    position: relative;
    background: var(--bg);
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .18), rgba(0, 0, 0, .32)),
        url("assets/hero-bg.jpg") center/cover no-repeat;
    opacity: 1;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 85% 45%, rgba(255, 255, 255, .10) 0 1px, transparent 2px) 0 0/120px 120px,
        radial-gradient(circle at 70% 70%, rgba(255, 255, 255, .08) 0 1px, transparent 2px) 0 0/180px 180px;
    mix-blend-mode: overlay;
    opacity: .35;
    pointer-events: none;
}

.hero__inner {
    position: relative;
    padding: clamp(34px, 5vw, 64px) 0;
    min-height: 420px;
}

.hero__grid {
    display: grid;
    grid-template-columns: 1.2fr .9fr;
    gap: clamp(22px, 4vw, 60px);
    align-items: center;
}

.hero__title {
    margin: 0 0 18px;
    font-weight: 900;
    font-size: clamp(30px, 4.2vw, 56px);
    line-height: 1.05;
    letter-spacing: -0.02em;
    text-shadow: 0 10px 24px rgba(0, 0, 0, .28);
}

.hero__list {
    display: grid;
    gap: 12px;
    margin-top: 6px;
    color: rgba(255, 255, 255, .92);
    font-size: clamp(16px, 1.55vw, 22px);
    font-weight: 700;
}

.hero__list li {
    display: flex;
    gap: 10px;
    align-items: baseline;
}

.hero__list li::before {
    content: "-";
    color: rgba(255, 255, 255, .9);
    font-weight: 900;
}

.hero__media {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    min-height: 320px;
}

.player {
    width: min(420px, 90%);
    height: auto;
    filter: drop-shadow(0 18px 30px rgba(0, 0, 0, .40));
    transform: translateY(8px);
}

.posts {
    position: relative;
    padding: 18px;
    background: var(--bg);
    overflow: hidden;
    display: grid;
    gap: 14px;
}

.posts::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .14), rgba(0, 0, 0, .22)),
        url("assets/hero-bg.jpg") center/cover no-repeat;
    opacity: 1;
}

.posts::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 85% 35%, rgba(255, 255, 255, .10) 0 1px, transparent 2px) 0 0/140px 140px,
        radial-gradient(circle at 60% 80%, rgba(255, 255, 255, .08) 0 1px, transparent 2px) 0 0/220px 220px;
    mix-blend-mode: overlay;
    opacity: .30;
    pointer-events: none;
}

.posts__inner {
    position: relative;
}

.posts__list {
    display: grid;
    gap: 26px;
}

.post-card {
    background: #ffffff;
    border-radius: 0;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, .10);
    box-shadow: 0 14px 30px rgba(0, 0, 0, .20);
    display: grid;
    grid-template-columns: 420px 1fr;
    min-height: 165px;
    transition: .18s ease;
}

.post-card__media {
    background: #0c0c0c;
    position: relative;
    min-height: 165px;
}

.post-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-card__content {
    padding: 22px 26px;
    display: grid;
    gap: 10px;
    align-content: center;
}

.post-card__date {
    font-size: 12px;
    color: rgba(0, 0, 0, .55);
}

.post-card__title {
    margin: 0;
    font-size: clamp(20px, 2.1vw, 30px);
    line-height: 1.15;
    font-weight: 800;
    color: #3f4f5f;
    letter-spacing: -0.01em;
}

.post-card__text {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(0, 0, 0, .55);
    max-width: 60ch;
}

.post-card__title .icon {
    font-style: normal;
    opacity: .8;
    margin-right: 8px;
}

.post-card:hover {
    transform: translateY(-2px);
    transition: .18s ease;
}

.winners {
    position: relative;
    padding: clamp(34px, 5vw, 64px) 0;
    background: var(--bg);
    overflow: hidden;
}

.winners::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .10), rgba(0, 0, 0, .18)),
        url("assets/hero-bg.jpg") center/cover no-repeat;
}

.winners::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 88% 42%, rgba(255, 255, 255, .10) 0 1px, transparent 2px) 0 0/150px 150px,
        radial-gradient(circle at 66% 80%, rgba(255, 255, 255, .08) 0 1px, transparent 2px) 0 0/240px 240px;
    mix-blend-mode: overlay;
    opacity: .25;
    pointer-events: none;
}

.winners__inner {
    position: relative;
}

.winners__intro {
    max-width: 840px;
    margin: 0 auto 18px;
    text-align: center;
}

.winners__intro p {
    margin: 0 0 10px;
    color: rgba(255, 255, 255, .80);
    font-size: 13px;
    line-height: 1.6;
}

.winners__badge {
    display: inline-block;
    margin-top: 6px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(0, 0, 0, .35);
    border: 1px solid rgba(255, 255, 255, .12);
    color: rgba(255, 255, 255, .92);
    font-weight: 900;
    letter-spacing: .08em;
    font-size: 11px;
}

.winners__grid {
    width: min(860px, 100%);
    margin: 18px auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.winner-card {
    background: rgba(10, 25, 40, .55);
    border: 1px solid rgba(255, 255, 255, .10);
    box-shadow: 0 12px 26px rgba(0, 0, 0, .25);
    border-radius: 10px;
    overflow: hidden;
    transition: transform .18s ease, border-color .18s ease;
}

.winner-card__img {
    aspect-ratio: 4 / 3;
    background: rgba(0, 0, 0, .25);
}

.winner-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.winner-card__body {
    padding: 10px 10px 12px;
}

.winner-card__name {
    margin: 0 0 6px;
    font-size: 12px;
    font-weight: 800;
    color: rgba(255, 255, 255, .92);
}

.winner-card__prize {
    margin: 0;
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 255, 255, .70);
}

.winner-card:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, .18);
}

.about {
    position: relative;
    padding: clamp(42px, 6vw, 78px) 0;
    background: #c7d3df;
    overflow: hidden;
}

.about::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, .35), rgba(255, 255, 255, .20)),
        url("assets/about-bg.jpg") center/cover no-repeat;
    opacity: 1;
}

.about::after {
    content: "";
    position: absolute;
    inset: -40px;
    background: repeating-linear-gradient(-10deg,
            rgba(255, 255, 255, .18) 0 40px,
            rgba(255, 255, 255, 0) 40px 120px);
    opacity: .35;
    pointer-events: none;
}

.about__inner {
    position: relative;
    width: min(980px, 100%);
    margin: 0 auto;
}

.about__section {
    margin: 0 auto;
    text-align: center;
    padding: 0 8px;
}

.about__title {
    margin: 0 0 18px;
    font-weight: 900;
    letter-spacing: .20em;
    text-transform: uppercase;
    font-size: clamp(18px, 2.4vw, 26px);
    color: #2f3d4c;
}

.about__text {
    margin: 0 auto;
    max-width: 92ch;
    color: #0e2a3f;
    font-size: clamp(14px, 1.1vw, 16px);
    line-height: 1.9;
    font-weight: 700;
}

.about__text p {
    margin: 0 0 18px;
}

.about__text p:last-child {
    margin-bottom: 0;
}

.about__divider {
    height: clamp(40px, 5vw, 70px);
}

.about__title--pink {
    color: #ff2b73;
}

.about__text--pink {
    color: #ff2b73;
    font-weight: 800;
}

.stats {
    position: relative;
    padding: clamp(42px, 6vw, 78px) 0;
    background: #061a2a;
    overflow: hidden;
}

.stats::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 0%, rgba(0, 163, 255, .10), transparent 55%),
        radial-gradient(circle at 0% 40%, rgba(255, 255, 255, .06), transparent 55%),
        linear-gradient(180deg, rgba(0, 0, 0, .08), rgba(0, 0, 0, .24));
    pointer-events: none;
}

.stats__inner {
    position: relative;
}

.stats__title {
    margin: 0 auto 18px;
    text-align: center;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-size: clamp(14px, 1.8vw, 18px);
    color: rgba(255, 255, 255, .92);
    max-width: 70ch;
}

.chart {
    width: min(760px, 100%);
    margin: 14px auto 0;
    padding: 18px 18px 10px;
    border-radius: 10px;
    background: rgba(0, 0, 0, .18);
    border: 1px solid rgba(255, 255, 255, .10);
}

.chart__plot {
    position: relative;
    height: 165px;
    padding: 10px 12px 26px;
    border-radius: 10px;
    overflow: hidden;
}

.chart__plot::before {
    content: "";
    position: absolute;
    inset: 8px 10px 26px;
    background: repeating-linear-gradient(to top,
            rgba(255, 255, 255, .10) 0 1px,
            transparent 1px 18px);
    opacity: .75;
}

.chart__bars {
    position: relative;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    align-items: end;
    padding: 10px 26px 0;
}

.bar {
    position: relative;
    height: 100%;
    display: grid;
    align-items: end;
    justify-items: center;
}

.bar__value {
    position: absolute;
    top: -6px;
    font-size: 11px;
    font-weight: 900;
    color: rgba(255, 255, 255, .9);
    transform: translateY(-100%);
    text-shadow: 0 6px 18px rgba(0, 0, 0, .35);
}

.bar__col {
    width: 100%;
    max-width: 140px;
    height: var(--h);
    border-radius: 10px 10px 0 0;
    background: linear-gradient(180deg, rgba(80, 190, 255, .95), rgba(20, 120, 180, .95));
    box-shadow: 0 14px 22px rgba(0, 0, 0, .25);
    border: 1px solid rgba(255, 255, 255, .10);
}

.bar__label {
    margin-top: 8px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .04em;
    color: rgba(255, 255, 255, .86);
    text-transform: uppercase;
}

.stats__cta {
    display: flex;
    justify-content: center;
    margin: 18px 0 8px;
}

.btn-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    min-height: 38px;
    border-radius: 999px;
    background: rgba(0, 163, 255, .65);
    border: 1px solid rgba(0, 163, 255, .85);
    color: #fff;
    font-weight: 900;
    letter-spacing: .10em;
    text-transform: uppercase;
    font-size: 12px;
    box-shadow: 0 14px 26px rgba(0, 0, 0, .28);
    transition: .18s ease;
}

.btn-pill:hover {
    transform: translateY(-2px);
    filter: brightness(1.05);
}

.benefits {
    margin-top: 14px;
    padding-top: 18px;
}

.benefits__subtitle {
    margin: 0 auto 18px;
    text-align: center;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
    font-size: 12px;
    color: rgba(255, 255, 255, .92);
    max-width: 75ch;
}

.benefits__grid {
    width: min(920px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px 26px;
}

.benefit {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 12px;
    align-items: start;
}

.benefit__icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .10);
}

.benefit__icon svg {
    width: 30px;
    height: 30px;
    fill: rgba(255, 255, 255, .92);
}

.benefit__title {
    margin: 0 0 6px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .92);
}

.benefit__text {
    margin: 0;
    color: rgba(255, 255, 255, .72);
    font-size: 12px;
    line-height: 1.6;
}

.stats__bottom {
    display: flex;
    justify-content: center;
    margin-top: 26px;
}

.site-footer {
    position: relative;
    background: #c7d3df;
    padding: clamp(30px, 4vw, 46px) 0 26px;
    overflow: hidden;
    color: #122c3f;
}

.site-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, .35), rgba(255, 255, 255, .18)),
        url("assets/about-bg.jpg") center/cover no-repeat;
    opacity: 1;
}

.site-footer::after {
    content: "";
    position: absolute;
    inset: -40px;
    background: repeating-linear-gradient(-10deg,
            rgba(255, 255, 255, .18) 0 44px,
            rgba(255, 255, 255, 0) 44px 130px);
    opacity: .28;
    pointer-events: none;
}

.footer__inner {
    position: relative;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 30px;
    align-items: start;
}

.footer-left {
    display: grid;
    gap: 14px;
    font-size: 14px;
    color: rgba(18, 44, 63, .85);
}

.footer-left small {
    display: block;
    color: rgba(18, 44, 63, .75);
    line-height: 1.5;
}

.footer-left a {
    color: rgba(18, 44, 63, .92);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.footer-logos {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 6px;
}

.footer-logos img {
    height: 34px;
    width: auto;
    object-fit: contain;
}

.footer-social {
    display: flex;
    gap: 12px;
    align-items: center;
}

.social-btn {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: rgba(255, 255, 255, .35);
    border: 1px solid rgba(18, 44, 63, .12);
    color: #0b2237;
}

.social-btn svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.footer-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.footer-col h4 {
    margin: 0 0 10px;
    font-size: 14px;
    font-weight: 900;
    color: #0f2a40;
}

.footer-col a {
    display: inline-block;
    padding: 6px 0;
    font-size: 14px;
    color: rgba(18, 44, 63, .92);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.footer-mid {
    display: flex;
    justify-content: center;
    margin: 24px 0 18px;
}

.footer-mid .btn-pill {
    background: linear-gradient(180deg, rgba(10, 40, 80, .85), rgba(10, 40, 80, .55));
    border-color: rgba(10, 40, 80, .65);
    letter-spacing: .02em;
    text-transform: none;
    font-weight: 800;
}

.footer-rule {
    height: 2px;
    background: rgba(18, 44, 63, .55);
    margin: 18px 0;
    opacity: .35;
}

.rg-box {
    border-top: 2px solid rgba(18, 44, 63, .55);
    border-bottom: 2px solid rgba(18, 44, 63, .55);
    padding: 14px 0;
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.rg-box__inner {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 16px;
    align-items: center;
}

.rg-logo {
    width: 140px;
    height: 64px;
    border-radius: 8px;
    border: 2px solid rgba(18, 44, 63, .55);
    background: rgba(255, 255, 255, .28);
    display: grid;
    place-items: center;
    font-weight: 900;
    letter-spacing: .08em;
    color: rgba(18, 44, 63, .85);
}

.rg-logo img {
    height: 40px;
    width: auto;
    display: block;
}

.rg-text {
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: rgba(18, 44, 63, .95);
    line-height: 1.5;
    font-size: 14px;
}

.footer-note {
    margin: 18px auto 0;
    width: min(980px, 100%);
    color: rgba(18, 44, 63, .82);
    font-size: 13px;
    line-height: 1.8;
}

.vip {
    padding: 34px 0 70px;
}

.vip__title {
    text-align: center;
    margin: 0 0 26px;
    font-size: clamp(18px, 2.2vw, 22px);
    font-weight: 800;
    color: #ffffff;
}

.vip__grid {
    width: min(980px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(24px, 3vw, 44px);
}

.vip-card {
    display: grid;
    justify-items: center;
    gap: 14px;
}

.vip-card__img {
    width: 100%;
    max-width: 260px;
    aspect-ratio: 4 / 3;
    background: #e9e9e9;
    border: 1px solid rgba(0, 0, 0, .12);
    box-shadow: 0 8px 18px rgba(0, 0, 0, .12);
    overflow: hidden;
}

.vip-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vip-card__btn {
    width: 100%;
    max-width: 260px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #2f2f2f;
    color: #fff;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    border: 1px solid rgba(0, 0, 0, .35);
    transition: .18s ease;
}

.vip-card__btn:hover {
    transform: translateY(-1px);
    filter: brightness(1.05);
}

.membership {
    padding: 34px 0 70px;
}

.membership__grid {
    width: min(1020px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.plan {
    background: var(--card);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.plan__img {
    aspect-ratio: 16 / 9;
    background: #efefef;
}

.plan__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.plan__body {
    padding: 16px 16px 18px;
    display: grid;
    gap: 10px;
}

.plan__name {
    margin: 0;
    font-size: 14px;
    font-weight: 900;
    color: #1a2f43;
}

.plan__price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-top: 2px;
}

.plan__currency {
    font-weight: 900;
    color: #1a2f43;
    font-size: 14px;
}

.plan__amount {
    font-weight: 900;
    font-size: 36px;
    line-height: 1;
    color: #1a2f43;
}

.plan__desc {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.55;
}

.plan__btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 34px;
    border-radius: 999px;
    background: #0aa0ff;
    color: #fff;
    font-weight: 900;
    font-size: 12px;
    border: 1px solid rgba(0, 0, 0, .10);
    width: 120px;
    transition: .18s ease;
}

.plan__btn:hover {
    transform: translateY(-1px);
    filter: brightness(1.05);
}

.plan__list {
    margin: 8px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
    border-top: 1px solid rgba(0, 0, 0, .08);
    padding-top: 10px;
}

.plan__list li {
    display: grid;
    grid-template-columns: 16px 1fr;
    gap: 8px;
    align-items: start;
    color: rgba(0, 0, 0, .70);
    font-size: 12px;
    line-height: 1.45;
}

.plan__list li::before {
    content: "✓";
    font-weight: 900;
    color: #0aa0ff;
    display: inline-block;
    line-height: 1.1;
    margin-top: 1px;
}

.blog-page {
    position: relative;
    padding: 26px 0 64px;
    overflow: hidden;
}

.blog-page::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .10), rgba(0, 0, 0, .20)),
        url("assets/hero-bg.jpg") center/cover no-repeat;
    opacity: 1;
}

.blog-page::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 90% 45%, rgba(255, 255, 255, .10) 0 1px, transparent 2px) 0 0/140px 140px,
        radial-gradient(circle at 70% 75%, rgba(255, 255, 255, .08) 0 1px, transparent 2px) 0 0/220px 220px;
    mix-blend-mode: overlay;
    opacity: .28;
    pointer-events: none;
}

.blog-shell {
    position: relative;
    width: min(980px, 100%);
    margin: 0 auto;
    background: var(--paper);
    border: 1px solid rgba(0, 0, 0, .10);
    box-shadow: var(--shadow);
}

.post {
    border: 1px solid var(--border);
    background: #fff;
    display: grid;
    grid-template-columns: 320px 1fr;
    min-height: 160px;
}

.post__media {
    background: #0c0c0c;
    overflow: hidden;
}

.post__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
}

.post__content {
    padding: 14px 16px;
    display: grid;
    gap: 8px;
    align-content: start;
}

.post__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    font-size: 11px;
    color: rgba(0, 0, 0, .55);
}

.post__tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 800;
    color: #fff;
    background: rgba(12, 84, 130, .92);
    border: 1px solid rgba(0, 0, 0, .12);
    padding: 3px 8px;
    border-radius: 4px;
    text-transform: none;
}

.post__title {
    margin: 0;
    font-size: 18px;
    line-height: 1.25;
    font-weight: 800;
    color: #1b2b3a;
}

.post__excerpt {
    margin: 0;
    color: rgba(0, 0, 0, .60);
    font-size: 12px;
    line-height: 1.6;
    max-width: 78ch;
}

.post__more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 800;
    color: rgba(0, 0, 0, .70);
    margin-top: 2px;
}

.post__more:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.pagination {
    border-top: 1px solid rgba(0, 0, 0, .10);
    padding: 14px 18px 18px;
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    color: rgba(0, 0, 0, .65);
    font-weight: 700;
    font-size: 12px;
}

.page-btn {
    min-width: 28px;
    height: 28px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, .10);
    background: rgba(0, 0, 0, .02);
    padding: 0 10px;
}

.page-btn:hover {
    filter: brightness(1.05);
}

.page-btn.is-active {
    border-color: rgba(0, 163, 255, .45);
    background: rgba(0, 163, 255, .10);
    color: #0b4b73;
    font-weight: 900;
}

.legal-page {
    position: relative;
    padding: 26px 0 64px;
    overflow: hidden;
}

.legal-page::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .10), rgba(0, 0, 0, .20)),
        url("assets/hero-bg.jpg") center/cover no-repeat;
}

.legal-page::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 90% 45%, rgba(255, 255, 255, .10) 0 1px, transparent 2px) 0 0/140px 140px,
        radial-gradient(circle at 70% 75%, rgba(255, 255, 255, .08) 0 1px, transparent 2px) 0 0/220px 220px;
    mix-blend-mode: overlay;
    opacity: .28;
    pointer-events: none;
}

.legal-shell {
    position: relative;
    width: min(980px, 100%);
    margin: 0 auto;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .10);
    box-shadow: var(--shadow);
    padding: clamp(18px, 3vw, 34px);
}

.legal h1 {
    margin: 0 0 10px;
    font-size: clamp(22px, 2.4vw, 30px);
    font-weight: 900;
    color: #142a3c;
    line-height: 1.2;
}

.legal .badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, .12);
    background: rgba(0, 0, 0, .03);
    font-weight: 900;
    font-size: 12px;
    color: rgba(0, 0, 0, .70);
    margin-bottom: 10px;
}

.legal h2 {
    margin: 22px 0 10px;
    font-size: 18px;
    font-weight: 900;
    color: #142a3c;
}

.legal h3 {
    margin: 18px 0 8px;
    font-size: 15px;
    font-weight: 900;
    color: #142a3c;
}

.legal p {
    margin: 0 0 12px;
    color: rgba(0, 0, 0, .76);
    line-height: 1.85;
    font-size: 14px;
    white-space: pre-line;
}

.legal ol,
.legal ul {
    margin: 8px 0 14px 18px;
    color: rgba(0, 0, 0, .76);
    line-height: 1.8;
    font-size: 14px;
}

.legal li {
    margin: 6px 0;
}

.legal a {
    color: #0b4b73;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.legal .meta {
    margin: 0 0 14px;
    color: rgba(0, 0, 0, .55);
    font-size: 12px;
    font-weight: 800;
}

.hr {
    height: 1px;
    background: rgba(0, 0, 0, .10);
    margin: 18px 0;
}

.callout {
    border: 1px solid rgba(0, 0, 0, .10);
    background: rgba(0, 0, 0, .03);
    padding: 12px 14px;
    border-radius: 12px;
    margin: 14px 0;
    font-weight: 800;
    letter-spacing: .02em;
    color: rgba(0, 0, 0, .72);
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, .12);
    background: rgba(0, 0, 0, .03);
    font-weight: 900;
    font-size: 12px;
    color: rgba(0, 0, 0, .70);
    margin-bottom: 10px;
}

.meta {
    margin: 0 0 14px;
    color: rgba(0, 0, 0, .55);
    font-size: 12px;
    font-weight: 800;
}

.legal ul,
.legal ol {
    margin: 8px 0 14px 18px;
    color: rgba(0, 0, 0, .76);
    line-height: 1.8;
    font-size: 14px;
}

.toc {
    border: 1px solid rgba(0, 0, 0, .10);
    background: rgba(0, 0, 0, .02);
    border-radius: 14px;
    padding: 12px 14px;
    margin: 14px 0 18px;
}

.toc strong {
    display: block;
    margin-bottom: 8px;
    color: rgba(0, 0, 0, .78);
}

.toc ul {
    margin: 0 0 0 18px;
}

.rg-box:visited {
    color: inherit;
}

.rg-box:hover {
    opacity: 0.95;
}

@media (max-width: 920px) {
    .header-top__row {
        grid-template-columns: 1fr auto auto;
    }

    .header-actions {
        gap: 8px;
    }

    .burger {
        display: inline-flex;
    }

    .nav {
        display: none;
        border-top: 1px solid rgba(255, 255, 255, .08);
    }

    .site-header.is-open .nav {
        display: block;
    }

    .nav__list {
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
        padding: 10px 0 14px;
    }

    .nav__link {
        display: flex;
        justify-content: center;
    }

    .dropdown {
        position: static;
        min-width: unset;
        opacity: 1;
        transform: none;
        pointer-events: auto;
        margin: 6px auto 0;
        width: min(420px, 100%);
    }

    .nav__item:hover .dropdown {
        opacity: 1;
    }
}

@media (max-width: 860px) {
    .hero__grid {
        grid-template-columns: 1fr;
    }

    .hero__media {
        order: 2;
        min-height: 260px;
    }
}

@media (max-width: 520px) {
    .auth-link {
        font-size: 13px;
    }

    .brand__logo {
        width: 46px;
        height: 46px;
    }

    .hero__inner {
        min-height: unset;
    }
}

@media (max-width: 980px) {
    .post-card {
        grid-template-columns: 360px 1fr;
    }
}

@media (max-width: 820px) {
    .post-card {
        grid-template-columns: 1fr;
    }

    .post-card__content {
        padding: 18px 18px 22px;
    }

    .post-card__text {
        max-width: unset;
    }
}

@media (max-width: 900px) {
    .winners__grid {
        width: min(760px, 100%);
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .winners__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {
    .about__text {
        line-height: 1.75;
    }
}

@media (max-width: 900px) {
    .chart__bars {
        gap: 22px;
        padding: 10px 10px 0;
    }

    .benefits__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .chart {
        padding: 14px;
    }

    .chart__bars {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .chart__plot {
        height: auto;
    }

    .bar {
        height: 120px;
    }

    .benefits__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 980px) {
    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-cols {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .footer-cols {
        grid-template-columns: 1fr;
    }

    .rg-box__inner {
        grid-template-columns: 1fr;
    }

    .rg-logo {
        width: 100%;
    }
}

@media (max-width: 920px) {
    .header-top__row {
        grid-template-columns: 1fr auto auto;
    }

    .burger {
        display: inline-flex;
    }

    .nav {
        display: none;
        border-top: 1px solid rgba(255, 255, 255, .08);
    }

    .site-header.is-open .nav {
        display: block;
    }

    .nav__list {
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
        padding: 10px 0 14px;
    }

    .nav__link {
        display: flex;
        justify-content: center;
    }

    .dropdown {
        position: static;
        min-width: unset;
        opacity: 1;
        transform: none;
        pointer-events: auto;
        margin: 6px auto 0;
        width: min(420px, 100%);
    }
}

@media (max-width: 900px) {
    .vip__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .vip__grid {
        grid-template-columns: 1fr;
    }

    .vip {
        padding-bottom: 54px;
    }
}

@media (max-width: 920px) {
    .header-top__row {
        grid-template-columns: 1fr auto auto;
    }

    .burger {
        display: inline-flex;
    }

    .nav {
        display: none;
        border-top: 1px solid rgba(255, 255, 255, .08);
    }

    .site-header.is-open .nav {
        display: block;
    }

    .nav__list {
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
        padding: 10px 0 14px;
    }

    .nav__link {
        display: flex;
        justify-content: center;
    }
}

@media (max-width: 980px) {
    .membership__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .membership__grid {
        grid-template-columns: 1fr;
    }

    .membership {
        padding-bottom: 54px;
    }
}

@media (max-width: 920px) {
    .header-top__row {
        grid-template-columns: 1fr auto auto;
    }

    .burger {
        display: inline-flex;
    }

    .nav {
        display: none;
        border-top: 1px solid rgba(255, 255, 255, .08);
    }

    .site-header.is-open .nav {
        display: block;
    }

    .nav__list {
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
        padding: 10px 0 14px;
    }

    .nav__link {
        display: flex;
        justify-content: center;
    }
}

@media (max-width: 820px) {
    .post {
        grid-template-columns: 1fr;
    }

    .post__media {
        height: 200px;
    }
}

@media (max-width: 520px) {
    .posts {
        padding: 12px;
    }

    .post__content {
        padding: 12px;
    }

    .post__title {
        font-size: 16px;
    }
}

@media (max-width: 920px) {
    .header-top__row {
        grid-template-columns: 1fr auto auto;
    }

    .burger {
        display: inline-flex;
    }

    .nav {
        display: none;
        border-top: 1px solid rgba(255, 255, 255, .08);
    }

    .site-header.is-open .nav {
        display: block;
    }

    .nav__list {
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
        padding: 10px 0 14px;
    }

    .nav__link {
        display: flex;
        justify-content: center;
    }
}

@media (max-width: 920px) {
    .header-top__row {
        grid-template-columns: 1fr auto auto;
    }

    .burger {
        display: inline-flex;
    }

    .nav {
        display: none;
        border-top: 1px solid rgba(255, 255, 255, .08);
    }

    .site-header.is-open .nav {
        display: block;
    }

    .nav__list {
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
        padding: 10px 0 14px;
    }

    .nav__link {
        display: flex;
        justify-content: center;
    }
}

@media (max-width: 920px) {
    .header-top__row {
        grid-template-columns: 1fr auto auto;
    }

    .burger {
        display: inline-flex;
    }

    .nav {
        display: none;
        border-top: 1px solid rgba(255, 255, 255, .08);
    }

    .site-header.is-open .nav {
        display: block;
    }

    .nav__list {
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
        padding: 10px 0 14px;
    }

    .nav__link {
        display: flex;
        justify-content: center;
    }
}

:root {
    --cb-bg: #0f172a;
    --cb-card: #111827;
    --cb-text: #e5e7eb;
    --cb-muted: #cbd5e1;
    --cb-border: rgba(255, 255, 255, .12);
    --cb-primary: #22c55e;
    --cb-primary-text: #052e16;
    --cb-shadow: 0 18px 60px rgba(0, 0, 0, .35);
    --cb-radius: 14px;
    --cb-font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Liberation Sans", sans-serif;
}

.cb {
    position: fixed;
    inset: auto 0 0 0;
    z-index: 9999;
    padding: 16px;
    font-family: var(--cb-font);
}

.cb.hidden {
    display: none;
}

.cb__box {
    max-width: 980px;
    margin: 0 auto;
    background: linear-gradient(180deg, var(--cb-bg), var(--cb-card));
    color: var(--cb-text);
    border: 1px solid var(--cb-border);
    border-radius: var(--cb-radius);
    box-shadow: var(--cb-shadow);
    padding: 16px 16px 12px;
}

.cb__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 8px;
}

.cb__title {
    font-size: 18px;
    margin: 0;
    letter-spacing: .2px;
}

.cb__x {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    border: 1px solid var(--cb-border);
    background: transparent;
    color: var(--cb-text);
    cursor: pointer;
    font-size: 20px;
    line-height: 1;
}

.cb__x:hover {
    background: rgba(255, 255, 255, .06);
}

.cb__text {
    margin: 0 0 12px;
    color: var(--cb-muted);
    font-size: 14px;
    line-height: 1.45;
}

.cb__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 10px;
}

.cb__actions--panel {
    margin-top: 10px;
    margin-bottom: 0;
}

.cb__btn {
    border: 1px solid var(--cb-border);
    background: rgba(255, 255, 255, .04);
    color: var(--cb-text);
    padding: 10px 12px;
    border-radius: 12px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
}

.cb__btn:hover {
    background: rgba(255, 255, 255, .07);
}

.cb__btn--primary {
    background: var(--cb-primary);
    border-color: rgba(0, 0, 0, .15);
    color: var(--cb-primary-text);
}

.cb__btn--primary:hover {
    filter: brightness(.95);
}

.cb__btn--ghost {
    background: transparent;
}

.cb__panel {
    border-top: 1px solid var(--cb-border);
    margin-top: 10px;
    padding-top: 12px;
}

.cb__row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 0;
}

.cb__label {
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 4px;
}

.cb__desc {
    font-size: 13px;
    color: var(--cb-muted);
    line-height: 1.4;
    max-width: 680px;
}

.cb__fineprint {
    margin: 10px 0 0;
    font-size: 12px;
    color: var(--cb-muted);
}

.cb__fineprint a {
    color: #93c5fd;
    text-decoration: underline;
}

.cb__switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 26px;
    flex: 0 0 auto;
    margin-top: 2px;
}

.cb__switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cb__slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background: rgba(255, 255, 255, .12);
    border: 1px solid var(--cb-border);
    transition: .2s;
    border-radius: 999px;
}

.cb__slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    top: 2px;
    background: white;
    transition: .2s;
    border-radius: 999px;
}

.cb__switch input:checked+.cb__slider {
    background: rgba(34, 197, 94, .35);
}

.cb__switch input:checked+.cb__slider:before {
    transform: translateX(18px);
}

.cb__switch input:disabled+.cb__slider {
    opacity: .7;
    cursor: not-allowed;
}

:root {
    --ag-bg: rgba(2, 6, 23, .72);
    --ag-card: #0f172a;
    --ag-border: rgba(255, 255, 255, .14);
    --ag-text: #e5e7eb;
    --ag-muted: #cbd5e1;
    --ag-yes: #22c55e;
    --ag-yes-text: #052e16;
    --ag-no: rgba(255, 255, 255, .06);
    --ag-shadow: 0 24px 80px rgba(0, 0, 0, .45);
    --ag-radius: 16px;
    --ag-font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Liberation Sans", sans-serif;
}

.ag.hidden {
    display: none;
}

/* центрирование */
.ag {
    position: fixed;
    inset: 0;
    z-index: 10000;
    font-family: var(--ag-font);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    /* чтобы не прилипало к краям на мобилках */
}

.ag__backdrop {
    position: absolute;
    inset: 0;
    background: var(--ag-bg);
    backdrop-filter: blur(4px);
}

.ag__card {
    position: relative;
    width: min(520px, 100%);
    background: linear-gradient(180deg, #111827, var(--ag-card));
    border: 1px solid var(--ag-border);
    border-radius: var(--ag-radius);
    box-shadow: var(--ag-shadow);
    padding: 18px 18px 14px;
    color: var(--ag-text);
}

.ag__title {
    margin: 0 0 10px;
    font-size: 20px;
    letter-spacing: .2px;
}

.ag__text {
    margin: 0 0 14px;
    color: var(--ag-muted);
    font-size: 14px;
    line-height: 1.5;
}

.ag__actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.ag__btn {
    border: 1px solid var(--ag-border);
    border-radius: 12px;
    padding: 10px 12px;
    cursor: pointer;
    font-weight: 700;
    font-size: 14px;
    color: var(--ag-text);
    background: var(--ag-no);
}

.ag__btn:hover {
    background: rgba(255, 255, 255, .09);
}

.ag__btn--yes {
    background: var(--ag-yes);
    color: var(--ag-yes-text);
    border-color: rgba(0, 0, 0, .15);
}

.ag__btn--yes:hover {
    filter: brightness(.95);
}

.ag__fineprint {
    margin: 0;
    font-size: 12px;
    color: var(--ag-muted);
    line-height: 1.4;
}