:root {
    --container: 1120px;
    --bg: #f6efe8;
    --header-bg: #ffffff;
    --border: #e7e0d8;

    --accent: #f08a1a;
    --accent-2: #ffb15a;
    --dark: #1c1c1c;
    --muted: #6b6b6b;

    --radius: 12px;
    --shadow: 0 10px 30px rgba(0, 0, 0, .12);
}

* {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--dark);
    background: var(--bg);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main.page {
    flex: 1;
}

a {
    color: inherit;
    text-decoration: none;
}

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

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

.header {
    background: var(--header-bg);
    border-bottom: 1px solid var(--border);
}

.header__row {
    min-height: 68px;
    display: flex;
    align-items: center;
    gap: 18px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 120px;
}

.logo__img {
    width: 90px;
    height: auto;
}

.nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 26px;
    align-items: center;
}

.nav__link {
    font-size: 14px;
    font-weight: 600;
    padding: 10px 8px;
    border-radius: 10px;
}

.nav__link--active {
    outline: none;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    padding: 0 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    border: 1px solid transparent;
    transition: transform .08s ease, background .2s ease, border-color .2s ease;
    user-select: none;
    white-space: nowrap;
}

.btn:active {
    transform: translateY(1px);
}

.btn--primary {
    background: linear-gradient(90deg, #7b4aa8 0%, var(--accent) 65%);
    color: #fff;
    border-color: rgba(0, 0, 0, .06);
}

.btn--outline {
    background: transparent;
    border-color: #bdaaa0;
    color: #3a3a3a;
}

.btn--light {
    background: #ffffff;
    color: #1e1e1e;
    border-color: rgba(0, 0, 0, .1);
}

.burger {
    margin-left: auto;
    width: 42px;
    height: 42px;
    border: 1px solid var(--border);
    background: #fff;
    border-radius: 10px;
    display: none;
    align-items: center;
    justify-content: center;
    gap: 5px;
    flex-direction: column;
    cursor: pointer;
}

.burger__line {
    width: 18px;
    height: 2px;
    background: #333;
    border-radius: 2px;
}

.mobile-menu {
    border-top: 1px solid var(--border);
    background: #fff;
}

.mobile-menu__inner {
    padding: 14px 0 18px;
}

.mobile-nav {
    display: grid;
    gap: 10px;
}

.mobile-nav__link {
    padding: 12px 12px;
    border: 1px solid var(--border);
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
    background: #fff;
}

.mobile-nav__link--active {
    border-color: #7aa7ff;
}

.mobile-auth {
    margin-top: 14px;
    display: grid;
    gap: 10px;
}

.btn--full {
    width: 100%;
}

.notice {
    background: var(--accent);
    color: #fff;
    font-weight: 700;
    font-size: 13px;
}

.notice__text {
    padding: 10px 0;
    text-align: center;
}

.page {
    padding: 22px 0 40px;
}

.hero__media {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    background: #000;
    border: 1px solid rgba(0, 0, 0, .08);
}

.hero__img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    transform: scale(1.02);
}

.hero__card {
    position: absolute;
    left: 50%;
    top: 56%;
    transform: translate(-50%, -50%);
    width: min(760px, calc(100% - 48px));
    padding: 24px 26px 22px;
    border-radius: 10px;
    background: rgba(120, 120, 120, .55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, .18);
}

.hero__title {
    margin: 0 0 16px;
    text-align: center;
    color: #fff;
    font-weight: 900;
    letter-spacing: .5px;
    text-transform: uppercase;
    line-height: 1.15;
    font-size: 34px;
}

.hero__actions {
    display: flex;
    justify-content: center;
    gap: 14px;
}

.btn--hero {
    height: 40px;
    min-width: 170px;
    font-size: 13px;
    border-radius: 4px;
}

@media (max-width: 980px) {
    .nav {
        display: none;
    }

    .auth {
        display: none;
    }

    .burger {
        display: flex;
    }

    .hero__img {
        height: 340px;
    }

    .hero__title {
        font-size: 28px;
    }
}

@media (max-width: 560px) {
    .header__row {
        min-height: 62px;
    }

    .logo__img {
        width: 78px;
    }

    .notice {
        font-size: 12px;
    }

    .notice__text {
        padding: 10px 10px;
    }

    .hero__img {
        height: 320px;
    }

    .hero__card {
        top: 58%;
        padding: 18px 16px 16px;
        width: calc(100% - 28px);
    }

    .hero__title {
        font-size: 20px;
        margin-bottom: 14px;
    }

    .hero__actions {
        flex-direction: column;
        align-items: center;
    }

    .btn--hero {
        width: 100%;
        min-width: auto;
        max-width: 320px;
    }
}

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

.news__title {
    margin: 0 0 26px;
    text-align: center;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: .6px;
    font-size: 26px;
}

.news__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.news-card {
    background: #e8c9ff;
    border: 1px solid #c9a6ea;
    border-radius: 8px;
    padding: 14px 14px 16px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, .08);
    min-height: 255px;
}

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

.news-card__badge {
    display: inline-flex;
    align-items: center;
    height: 20px;
    padding: 0 10px;
    border-radius: 999px;
    background: var(--accent);
    color: #fff;
    font-weight: 800;
    font-size: 11px;
}

.news-card__date {
    font-size: 11px;
    font-weight: 700;
    color: rgba(20, 20, 20, .55);
}

.news-card__heading {
    margin: 0 0 10px;
    font-size: 15px;
    font-weight: 900;
    line-height: 1.2;
}

.news-card__text {
    margin: 0;
    font-size: 12px;
    line-height: 1.45;
    color: rgba(25, 25, 25, .72);
}

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

@media (max-width: 560px) {
    .news {
        padding: 28px 0 54px;
    }

    .news__title {
        font-size: 18px;
        margin-bottom: 18px;
        padding: 0 6px;
    }

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

    .news-card {
        min-height: auto;
    }
}

.benefits {
    padding: 40px 0 78px;
}

.benefits__title {
    margin: 0;
    text-align: center;
    font-weight: 900;
    font-size: 34px;
    line-height: 1.1;
    color: #2c0a35;
}

.benefits__subtitle {
    margin: 8px 0 30px;
    text-align: center;
    color: rgba(44, 10, 53, .55);
    font-weight: 700;
    font-size: 14px;
}

.benefits__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.benefit-card {
    background: #e8c9ff;
    border: 1px solid #c9a6ea;
    border-radius: 8px;
    padding: 22px 18px 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, .08);
    text-align: left;
}

.benefit-card__icon {
    width: 54px;
    height: 54px;
    border-radius: 12px;
    background: #fff;
    display: grid;
    place-items: center;
    font-size: 22px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, .10);
    margin: 0 auto 14px;
}

.benefit-card__title {
    margin: 0 0 10px;
    font-weight: 900;
    font-size: 16px;
    line-height: 1.2;
    color: #1c1c1c;
    text-align: left;
}

.benefit-card__text {
    margin: 0;
    font-size: 12px;
    line-height: 1.45;
    color: rgba(25, 25, 25, .68);
}

@media (hover:hover) {
    .benefit-card {
        transition: transform .15s ease, box-shadow .15s ease;
    }

    .benefit-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 14px 26px rgba(0, 0, 0, .12);
    }
}

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

@media (max-width: 560px) {
    .benefits {
        padding: 30px 0 60px;
    }

    .benefits__title {
        font-size: 26px;
    }

    .benefits__subtitle {
        margin-bottom: 18px;
    }

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

.join {
    padding: 24px 0 86px;
}

.join__box {
    background: var(--accent);
    border-radius: 6px;
    padding: 46px 18px 44px;
    text-align: center;
    box-shadow: 0 12px 22px rgba(0, 0, 0, .10);
}

.join__title {
    margin: 0 0 10px;
    color: #fff;
    font-weight: 900;
    font-size: 30px;
    line-height: 1.15;
}

.join__text {
    margin: 0 0 18px;
    color: rgba(255, 255, 255, .92);
    font-weight: 700;
    font-size: 12.5px;
    line-height: 1.35;
}

.join__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    width: min(340px, 90%);
    background: #ffffff;
    color: #1e1e1e;
    font-weight: 900;
    font-size: 12px;
    border-radius: 2px;
    border: 2px solid #7b4aa8;
    box-shadow: 0 10px 18px rgba(0, 0, 0, .12);
    transition: transform .08s ease, box-shadow .2s ease;
}

.join__btn:active {
    transform: translateY(1px);
}

@media (max-width: 560px) {
    .join {
        padding: 18px 0 60px;
    }

    .join__box {
        padding: 34px 14px 34px;
    }

    .join__title {
        font-size: 24px;
    }

    .join__text {
        font-size: 12px;
    }
}

.contact {
    padding: 10px 0 80px;
}

.contact__grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 28px;
    align-items: start;
    margin-bottom: 22px;
}

.contact__media {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 14px 26px rgba(0, 0, 0, .14);
    border: 1px solid rgba(0, 0, 0, .10);
    background: #000;
}

.contact__img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.contact__title {
    margin: 0 0 12px;
    font-weight: 900;
    font-size: 26px;
    color: #1c1c1c;
}

.form {
    display: grid;
    gap: 10px;
}

.field {
    display: grid;
    gap: 6px;
}

.field__label {
    font-size: 12px;
    font-weight: 800;
    color: rgba(25, 25, 25, .85);
}

.field__input {
    height: 30px;
    padding: 0 10px;
    border-radius: 4px;
    border: 1px solid #c9a6ea;
    background: #edd6ff;
    outline: none;
    font-size: 12px;
}

.field__input::placeholder {
    color: rgba(35, 35, 35, .45);
    font-weight: 700;
}

.field__input:focus {
    border-color: #7b4aa8;
    box-shadow: 0 0 0 3px rgba(123, 74, 168, .18);
}

.field__input--area {
    height: 86px;
    padding: 10px;
    resize: vertical;
}

.agree {
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 10px;
    align-items: start;
    margin: 6px 0 6px;
    cursor: pointer;
}

.agree__check {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.agree__box {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    border: 1px solid #c9a6ea;
    background: #edd6ff;
    box-shadow: 0 8px 14px rgba(0, 0, 0, .10);
    display: inline-block;
    position: relative;
}

.agree__text {
    font-size: 9.5px;
    line-height: 1.35;
    color: rgba(25, 25, 25, .75);
    font-weight: 700;
}

.agree__check:checked+.agree__box {
    border-color: #7b4aa8;
    background: #ffffff;
}

.agree__check:checked+.agree__box::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 2px;
    width: 5px;
    height: 9px;
    border: solid #7b4aa8;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.form__btn {
    margin-top: 6px;
    height: 38px;
    border: none;
    cursor: pointer;
    border-radius: 2px;
    color: #fff;
    font-weight: 900;
    font-size: 12px;
    background: linear-gradient(90deg, #7b4aa8 0%, var(--accent) 70%);
    box-shadow: 0 14px 22px rgba(0, 0, 0, .14);
}

.company {
    background: #e8c9ff;
    border: 1px solid #c9a6ea;
    border-radius: 8px;
    padding: 16px 16px 18px;
    box-shadow: 0 12px 22px rgba(0, 0, 0, .10);
}

.company__title {
    margin: 0 0 12px;
    text-align: center;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .4px;
    color: #2c0a35;
    font-size: 18px;
}

.company__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.company__line {
    margin: 0 0 6px;
    font-size: 11px;
    font-weight: 700;
    color: rgba(25, 25, 25, .75);
}

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

    .contact__img {
        height: 320px;
    }
}

@media (max-width: 560px) {
    .contact {
        padding: 0 0 60px;
    }

    .contact__title {
        font-size: 22px;
    }

    .company__grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }

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

/* ====== Footer ====== */
.footer {
    background: #0b0b0b;
    color: rgba(255, 255, 255, .86);
    padding: 22px 0 26px;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.footer__inner {
    position: relative;
}

.footer__age {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 3px solid var(--accent);
    color: var(--accent);
    font-weight: 900;
    display: grid;
    place-items: center;
    margin: 0 auto 14px;
    font-size: 16px;
}

.footer__nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
    margin-bottom: 16px;
}

.footer__link {
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, .80);
    transition: color .15s ease;
}

.footer__link:hover {
    color: #fff;
}

.footer__texts {
    display: grid;
    gap: 10px;
    max-width: 980px;
    margin: 0 auto 16px;
}

.footer__text {
    margin: 0;
    font-size: 10.5px;
    line-height: 1.35;
    color: rgba(255, 255, 255, .68);
    text-align: center;
}

/* ====== Cookie bar ====== */
.cookie {
    margin-top: 18px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, .10);
}

.cookie__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 10px;
}

.cookie__title {
    font-weight: 900;
    color: var(--accent);
    letter-spacing: .2px;
    font-size: 12px;
    text-transform: uppercase;
}

.cookie__accept {
    background: transparent;
    border: none;
    color: var(--accent);
    font-weight: 900;
    font-size: 12px;
    cursor: pointer;
    text-transform: uppercase;
    padding: 6px 0;
}

.cookie__accept:hover {
    color: #ffb15a;
}

.cookie__text {
    margin: 0;
    font-size: 11px;
    line-height: 1.45;
    color: rgba(255, 255, 255, .72);
}

.cookie.is-hidden {
    display: none;
}

@media (max-width: 560px) {
    .footer {
        padding: 18px 0 22px;
    }

    .footer__nav {
        gap: 10px 14px;
    }

    .footer__texts {
        margin-bottom: 14px;
    }

    .cookie__top {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ====== About hero ====== */
.about-hero {
    padding: 22px 0 40px;
}

.about-hero__media {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 0, 0, .08);
    background: #000;
}

.about-hero__img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    transform: scale(1.02);
}

.about-hero__card {
    position: absolute;
    left: 50%;
    top: 52%;
    transform: translate(-50%, -50%);
    width: min(820px, calc(100% - 48px));
    padding: 22px 26px 22px;
    border-radius: 10px;
    background: rgba(160, 120, 200, .45);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .18);
}

.about-hero__title {
    margin: 0 0 10px;
    text-align: center;
    font-weight: 900;
    letter-spacing: 1px;
    font-size: 40px;
    color: #2c0a35;
    text-transform: uppercase;
}

.about-hero__text {
    margin: 0;
    text-align: left;
    color: rgba(255, 255, 255, .92);
    font-weight: 700;
    font-size: 14px;
    line-height: 1.55;
}

@media (max-width: 980px) {
    .about-hero__img {
        height: 320px;
    }

    .about-hero__title {
        font-size: 32px;
    }

    .about-hero__text {
        font-size: 13px;
    }
}

@media (max-width: 560px) {
    .about-hero {
        padding: 18px 0 30px;
    }

    .about-hero__img {
        height: 300px;
    }

    .about-hero__card {
        width: calc(100% - 28px);
        padding: 16px 16px 16px;
        top: 54%;
    }

    .about-hero__title {
        font-size: 26px;
    }

    .about-hero__text {
        font-size: 12px;
        line-height: 1.5;
    }
}

.about-cards {
    padding: 10px 0 60px;
}

.about-cards__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.info-card {
    background: linear-gradient(180deg, rgba(232, 201, 255, .95) 0%, rgba(232, 201, 255, .75) 100%);
    border: 1px solid #c9a6ea;
    border-radius: 8px;
    padding: 24px 22px;
    box-shadow: 0 12px 22px rgba(0, 0, 0, .10);
}

.info-card--wide {
    grid-column: 1 / -1;
}

.info-card__title {
    margin: 0 0 12px;
    text-align: center;
    font-weight: 900;
    letter-spacing: .6px;
    text-transform: uppercase;
    color: #2c0a35;
    font-size: 26px;
}

.info-card__text {
    margin: 0;
    color: rgba(25, 25, 25, .75);
    font-weight: 700;
    font-size: 13px;
    line-height: 1.65;
}

@media (max-width: 980px) {
    .info-card__title {
        font-size: 22px;
    }
}

@media (max-width: 700px) {
    .about-cards__grid {
        grid-template-columns: 1fr;
    }

    .info-card__title {
        font-size: 20px;
    }

    .info-card {
        padding: 18px 16px;
    }

    .info-card__text {
        font-size: 12px;
    }
}

/* ====== Betting hero ====== */
.bet-hero {
    padding: 22px 0 40px;
}

.bet-hero__media {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 0, 0, .08);
    background: #000;
}

.bet-hero__img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    transform: scale(1.02);
}

/* стеклянная плашка, как в макете */
.bet-hero__card {
    position: absolute;
    left: 40px;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    padding: 24px 26px 22px;
    border-radius: 10px;
    background: rgba(160, 120, 200, .45);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .18);
}

.bet-hero__title {
    margin: 0 0 14px;
    color: #fff;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .6px;
    line-height: 1.05;
    font-size: 44px;
}

.bet-hero__text {
    margin: 0;
    color: rgba(255, 255, 255, .92);
    font-weight: 700;
    font-size: 14px;
    line-height: 1.55;
    max-width: 760px;
}

@media (max-width: 980px) {
    .bet-hero__img {
        height: 320px;
    }

    .bet-hero__card {
        left: 18px;
        right: 18px;
        padding: 18px 18px 16px;
    }

    .bet-hero__title {
        font-size: 32px;
    }
}

@media (max-width: 560px) {
    .bet-hero {
        padding: 18px 0 30px;
    }

    .bet-hero__img {
        height: 300px;
    }

    .bet-hero__title {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .bet-hero__text {
        font-size: 12px;
    }
}

/* ====== Terms block ====== */
.terms {
    padding: 8px 0 70px;
}

.terms__card {
    background: linear-gradient(180deg, rgba(232, 201, 255, .95) 0%, rgba(232, 201, 255, .78) 100%);
    border: 1px solid #c9a6ea;
    border-radius: 8px;
    padding: 34px 34px 26px;
    box-shadow: 0 12px 22px rgba(0, 0, 0, .10);
}

.terms__title {
    margin: 0 0 16px;
    text-align: center;
    font-weight: 900;
    font-size: 34px;
    line-height: 1.15;
    color: #2c0a35;
}

.terms__text {
    color: rgba(25, 25, 25, .72);
    font-weight: 700;
    font-size: 13px;
    line-height: 1.75;
    max-width: 960px;
}

.terms__btn {
    margin: 22px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 38px;
    width: min(340px, 90%);
    border-radius: 2px;
    font-weight: 900;
    font-size: 12px;
    color: #fff;
    background: linear-gradient(90deg, #7b4aa8 0%, var(--accent) 70%);
    box-shadow: 0 14px 22px rgba(0, 0, 0, .14);
}

@media (max-width: 980px) {
    .terms__card {
        padding: 26px 22px 22px;
    }

    .terms__title {
        font-size: 28px;
    }
}

@media (max-width: 560px) {
    .terms {
        padding: 0 0 60px;
    }

    .terms__card {
        padding: 20px 16px 18px;
    }

    .terms__title {
        font-size: 24px;
    }

    .terms__text {
        font-size: 12px;
        line-height: 1.65;
    }
}

/* ====== Responsible block ====== */
.responsible {
    padding: 64px 0 90px;
}

.responsible__title {
    margin: 0 0 12px;
    text-align: center;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 44px;
    letter-spacing: .6px;
    color: #111;
}

.responsible__text {
    margin: 0 0 22px;
    text-align: center;
    font-weight: 700;
    font-size: 13px;
    color: rgba(20, 20, 20, .72);
}

.responsible__actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.responsible__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 38px;
    min-width: 220px;
    padding: 0 18px;
    border-radius: 2px;
    font-weight: 900;
    font-size: 12px;
    text-transform: none;
    box-shadow: 0 14px 22px rgba(0, 0, 0, .10);
}

.responsible__btn--primary {
    color: #fff;
    background: linear-gradient(90deg, #7b4aa8 0%, var(--accent) 70%);
}

.responsible__btn--outline {
    background: #fff;
    color: #111;
    border: 1px solid rgba(0, 0, 0, .35);
    box-shadow: 0 14px 22px rgba(0, 0, 0, .08);
}

@media (max-width: 980px) {
    .responsible {
        padding: 54px 0 80px;
    }

    .responsible__title {
        font-size: 34px;
    }
}

@media (max-width: 560px) {
    .responsible {
        padding: 44px 0 70px;
    }

    .responsible__title {
        font-size: 26px;
    }

    .responsible__text {
        font-size: 12px;
        padding: 0 6px;
    }

    .responsible__btn {
        width: min(320px, 100%);
        min-width: auto;
    }
}


/* ====== Principles (3 cards) ====== */
.principles {
    padding: 10px 0 86px;
}

.principles__title {
    margin: 0 0 26px;
    text-align: center;
    font-weight: 900;
    font-size: 34px;
    color: #2c0a35;
}

.principles__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.principle-card {
    background: #e8c9ff;
    border: 1px solid #c9a6ea;
    border-radius: 8px;
    padding: 18px 18px 18px;
    box-shadow: 0 12px 22px rgba(0, 0, 0, .10);
}

.principle-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: #fff;
    display: grid;
    place-items: center;
    font-size: 22px;
    margin: 0 auto 14px;
    box-shadow: 0 10px 18px rgba(0, 0, 0, .10);
}

.principle-card__title {
    margin: 0 0 10px;
    text-align: center;
    font-weight: 900;
    font-size: 16px;
    color: #1c1c1c;
}

.principle-card__text {
    margin: 0;
    font-size: 12px;
    line-height: 1.5;
    font-weight: 700;
    color: rgba(25, 25, 25, .72);
}

@media (max-width: 1100px) {
    .principles__grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .principle-card {
        max-width: 720px;
        margin: 0 auto;
    }
}

@media (max-width: 560px) {
    .principles {
        padding: 0 0 70px;
    }

    .principles__title {
        font-size: 24px;
        margin-bottom: 18px;
        padding: 0 6px;
    }
}

.promo-hero {
    padding: 22px 0 40px;
}

.promo-hero__media {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 0, 0, .08);
    background: #000;
}

.promo-hero__img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    transform: scale(1.02);
}

.promo-hero__content {
    position: absolute;
    inset: 0;
    display: grid;
    place-content: center;
    text-align: center;
    padding: 18px;
}

.promo-hero__title {
    margin: 0 0 12px;
    color: #fff;
    font-weight: 900;
    font-size: 38px;
    line-height: 1.12;
}

.promo-hero__text {
    margin: 0 0 18px;
    color: rgba(255, 255, 255, .92);
    font-weight: 700;
    font-size: 13px;
}

.promo-hero__btn {
    margin: 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 38px;
    width: min(320px, 90%);
    border-radius: 2px;
    font-weight: 900;
    font-size: 12px;
    color: #fff;
    background: linear-gradient(90deg, #7b4aa8 0%, var(--accent) 70%);
    box-shadow: 0 14px 22px rgba(0, 0, 0, .14);
}

@media (max-width: 980px) {
    .promo-hero__img {
        height: 320px;
    }

    .promo-hero__title {
        font-size: 30px;
    }
}

@media (max-width: 560px) {
    .promo-hero {
        padding: 18px 0 30px;
    }

    .promo-hero__img {
        height: 300px;
    }

    .promo-hero__title {
        font-size: 22px;
    }

    .promo-hero__text {
        font-size: 12px;
    }
}

.offers {
    padding: 14px 0 90px;
}

.offers__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px 26px;
}

.offer-card {
    background: linear-gradient(180deg, rgba(232, 201, 255, .95) 0%, rgba(232, 201, 255, .78) 100%);
    border: 1px solid #c9a6ea;
    border-radius: 8px;
    padding: 16px 16px 14px;
    box-shadow: 0 12px 22px rgba(0, 0, 0, .10);
    display: grid;
    grid-template-rows: auto auto 1fr auto;
    min-height: 210px;
}

.offer-card__top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.offer-card__num {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #3b004a;
    color: #fff;
    font-weight: 900;
    display: grid;
    place-items: center;
    font-size: 12px;
}

.offer-card__badge {
    font-size: 10px;
    font-weight: 800;
    color: #fff;
    background: #7b4aa8;
    padding: 4px 10px;
    border-radius: 999px;
    margin-left: auto;
}

.offer-card__title {
    margin: 0 0 8px;
    font-weight: 900;
    font-size: 20px;
    line-height: 1.05;
    color: #7a00d6;
}

.offer-card__text {
    margin: 0 0 12px;
    font-size: 12px;
    line-height: 1.55;
    font-weight: 700;
    color: rgba(25, 25, 25, .72);
}

.offer-card__btn {
    height: 34px;
    border-radius: 2px;
    background: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 12px;
    box-shadow: 0 12px 18px rgba(0, 0, 0, .16);
    width: 100%;
}

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

    .offer-card {
        max-width: 760px;
        margin: 0 auto;
    }
}

@media (max-width: 560px) {
    .offers {
        padding: 6px 0 70px;
    }

    .offer-card__title {
        font-size: 18px;
    }
}

.honesty {
    padding: 10px 0 90px;
}

.honesty__card {
    background: #c47cff;
    border-radius: 8px;
    padding: 18px 20px 18px;
    box-shadow: 0 12px 22px rgba(0, 0, 0, .10);
    border: 1px solid rgba(0, 0, 0, .06);
}

.honesty__title {
    margin: 0 0 10px;
    font-weight: 900;
    font-size: 18px;
    color: #0f0f0f;
}

.honesty__text {
    margin: 0;
    font-size: 11.5px;
    line-height: 1.55;
    font-weight: 700;
    color: rgba(15, 15, 15, .80);
    max-width: 980px;
}

@media (max-width: 560px) {
    .honesty {
        padding: 6px 0 70px;
    }

    .honesty__card {
        padding: 16px 14px;
    }

    .honesty__title {
        font-size: 16px;
    }

    .honesty__text {
        font-size: 11px;
    }
}

.activate {
    padding: 8px 0 80px;
}

.activate__card {
    background: #edd6ff;
    border: 1px solid #c9a6ea;
    border-radius: 6px;
    padding: 16px 18px 14px;
    box-shadow: 0 10px 18px rgba(0, 0, 0, .08);
    text-align: center;
}

.activate__title {
    margin: 0 0 8px;
    font-weight: 900;
    font-size: 18px;
    color: #121212;
}

.activate__text {
    margin: 0;
    font-size: 11.5px;
    line-height: 1.5;
    font-weight: 700;
    color: rgba(20, 20, 20, .75);
}

@media (max-width: 560px) {
    .activate {
        padding: 6px 0 60px;
    }

    .activate__card {
        padding: 14px 14px 12px;
    }

    .activate__title {
        font-size: 16px;
    }

    .activate__text {
        font-size: 11px;
    }
}

.policy {
    padding: 22px 0 80px;
}

.policy__card {
    background: linear-gradient(180deg, rgba(232, 201, 255, .95) 0%, rgba(232, 201, 255, .78) 100%);
    border: 1px solid #c9a6ea;
    border-radius: 8px;
    padding: 26px 26px 24px;
    box-shadow: 0 12px 22px rgba(0, 0, 0, .10);
}

.policy__title {
    margin: 0 0 8px;
    font-weight: 900;
    font-size: 34px;
    color: #2c0a35;
}

.policy__meta {
    font-size: 12px;
    font-weight: 700;
    color: rgba(25, 25, 25, .65);
    margin-bottom: 18px;
}

.policy__subtitle {
    margin: 0 0 10px;
    font-weight: 900;
    font-size: 18px;
    color: #111;
}

.policy__list {
    margin: 0;
    padding-left: 18px;
    display: grid;
    gap: 12px;
}

.policy__item {
    font-size: 13px;
    line-height: 1.7;
    font-weight: 700;
    color: rgba(25, 25, 25, .75);
}

@media (max-width: 560px) {
    .policy {
        padding: 18px 0 60px;
    }

    .policy__card {
        padding: 18px 16px 16px;
    }

    .policy__title {
        font-size: 26px;
    }

    .policy__item {
        font-size: 12px;
        line-height: 1.6;
    }
}

/* ====== Policy extras (TOC + links) ====== */
.policy__toc {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 8px 0 18px;
}

.policy__toc-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    border: 1px solid #c9a6ea;
    background: rgba(255, 255, 255, .55);
    font-weight: 800;
    font-size: 12px;
    color: rgba(25, 25, 25, .78);
}

.policy__toc-link:hover {
    background: rgba(255, 255, 255, .8);
}

.policy__p {
    margin: 0 0 12px;
    font-size: 13px;
    line-height: 1.7;
    font-weight: 700;
    color: rgba(25, 25, 25, .75);
}

.policy__subhead {
    margin: 16px 0 8px;
    font-weight: 900;
    font-size: 14px;
    color: #111;
}

.policy__sublist {
    margin: 10px 0 0;
    padding-left: 18px;
    display: grid;
    gap: 8px;
}

.policy__link {
    color: #5a00b4;
    font-weight: 900;
    text-decoration: underline;
    word-break: break-word;
}

@media (max-width: 560px) {
    .policy__toc {
        margin-bottom: 14px;
    }

    .policy__toc-link {
        height: 28px;
        font-size: 11px;
    }

    .policy__p {
        font-size: 12px;
        line-height: 1.6;
    }
}

.policy {
    padding: 22px 0 80px;
}

.policy__card {
    background: linear-gradient(180deg, rgba(232, 201, 255, .95) 0%, rgba(232, 201, 255, .78) 100%);
    border: 1px solid #c9a6ea;
    border-radius: 8px;
    padding: 26px 26px 24px;
    box-shadow: 0 12px 22px rgba(0, 0, 0, .10);
}

.policy__title {
    margin: 0 0 8px;
    font-weight: 900;
    font-size: 34px;
    color: #2c0a35;
}

.policy__subtitle {
    margin: 18px 0 10px;
    font-weight: 900;
    font-size: 18px;
    color: #111;
}

.policy__p {
    margin: 0 0 12px;
    font-size: 13px;
    line-height: 1.7;
    font-weight: 700;
    color: rgba(25, 25, 25, .75);
}

.policy__list {
    margin: 0 0 12px;
    padding-left: 18px;
    display: grid;
    gap: 10px;
}

.policy__item {
    font-size: 13px;
    line-height: 1.7;
    font-weight: 700;
    color: rgba(25, 25, 25, .75);
}

.policy__link {
    color: #5a00b4;
    font-weight: 900;
    text-decoration: underline;
    word-break: break-word;
}

@media (max-width: 560px) {
    .policy {
        padding: 18px 0 60px;
    }

    .policy__card {
        padding: 18px 16px 16px;
    }

    .policy__title {
        font-size: 26px;
    }

    .policy__subtitle {
        font-size: 16px;
    }

    .policy__p,
    .policy__item {
        font-size: 12px;
        line-height: 1.6;
    }
}

.policy__olist {
    margin: 0 0 12px;
    padding-left: 18px;
    display: grid;
    gap: 10px;
}

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

.policy__downloads {
    margin: 0;
    padding-left: 18px;
    display: grid;
    gap: 10px;
}

.policy__download {
    display: inline-block;
    font-weight: 900;
    color: #5a00b4;
    text-decoration: underline;
    word-break: break-word;
}

@media (max-width: 560px) {
    .policy__hr {
        margin: 14px 0;
    }
}


.age-gate {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(0, 0, 0, .72);
    z-index: 999999;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.age-gate.is-open {
    display: flex;
}

.age-gate__card {
    width: min(560px, 100%);
    background: #111827;
    border: 1px solid #243044;
    border-radius: 16px;
    padding: 22px;
    color: #e5e7eb;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .45);
}

.age-gate__title {
    margin: 0 0 10px;
    font-size: 22px;
}

.age-gate__text {
    margin: 0 0 16px;
    line-height: 1.5;
    color: #e5e7eb;
}

.age-gate__note {
    margin: 0;
    font-size: 12.5px;
    line-height: 1.4;
    color: #9ca3af;
}

.age-gate__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 10px 0 14px;
}

.age-gate__btn {
    border: 0;
    border-radius: 12px;
    padding: 12px 14px;
    font-weight: 700;
    cursor: pointer;
    transition: transform .06s ease, background .15s ease;
}

.age-gate__btn:active {
    transform: translateY(1px);
}

.age-gate__btn--yes {
    background: #2563eb;
    color: #fff;
}

.age-gate__btn--yes:hover {
    background: #1d4ed8;
}

.age-gate__btn--no {
    background: #374151;
    color: #fff;
}

.age-gate__btn--no:hover {
    background: #2b3645;
}

.nav__link--active { outline: none; }
.mobile-nav__link--active { border-color: var(--border); }

.btn {
  box-sizing: border-box;
}

.mobile-auth .btn {
  width: 100%;
  display: flex;             
  justify-content: center;
}

.btn--hero {
  width: 100%;
}


.overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:9999;
}

.modal{
  width: 760px;              
  max-width: calc(100vw - 120px);
  background: #f2f2f2;        
  padding: 36px 54px 42px;   
  box-shadow: 0 12px 40px rgba(0,0,0,.35);
}

.modal h2{
  margin: 0 0 14px;
  font-size: 36px;             
  font-weight: 700;
  color: #8a4dbf;
}

.modal p{
  margin: 0 0 28px;
  font-size: 16px;
  line-height: 1.55;
  color:#111;
  max-width: 620px;
}

.btn-wrap{
  display:flex;
  justify-content:center;
  margin-top: 6px;
}

.confirm-btn{
  --skew: -14deg;
  --b: 2px;

  position: relative;
  width: 230px;     
  height: 54px;     
  border: 0;
  background: #f2f2f2;
  cursor: pointer;
  padding: 0;
  transform: skewX(var(--skew));
}

.confirm-btn::before{
  content:"";
  position:absolute;
  inset:0;
  padding: var(--b);
  background: linear-gradient(90deg, #8a4dbf, #ff8a00);

  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events:none;
}

.confirm-btn span{
  display:flex;
  width:100%;
  height:100%;
  align-items:center;
  justify-content:center;
  transform: skewX(calc(var(--skew) * -1));
  font-size: 16px;
  font-weight: 600;
  color:#8a4dbf;
}

.confirm-btn:hover span{
  opacity:.9;
}
