/* ===========================
   СБРОС И БАЗОВЫЕ СТИЛИ
=========================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: #f8f7f4;
    color: #1a1a2e;
    line-height: 1.65;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
}

ul {
    list-style: none;
}

/* ===========================
   КОНТЕЙНЕР
=========================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===========================
   КНОПКИ
=========================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.25s ease;
    white-space: nowrap;
    text-decoration: none;
}

.btn--primary {
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    color: #fff;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.35);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.45);
    color: #fff;
}

.btn--ghost {
    background: transparent;
    color: #1a1a2e;
    border: 2px solid #e5e3de;
}

.btn--ghost:hover {
    background: #f0ede8;
    border-color: #d0cdc8;
    color: #1a1a2e;
}

.btn--outline {
    background: transparent;
    color: #1a1a2e;
    border: 2px solid #1a1a2e;
}

.btn--outline:hover {
    background: #1a1a2e;
    color: #fff;
}

.btn--lg {
    padding: 16px 36px;
    font-size: 16px;
    border-radius: 12px;
}

.btn--sm {
    padding: 9px 18px;
    font-size: 13px;
    border-radius: 8px;
    width: 100%;
    margin-top: 10px;
}

.pulse {
    animation: pulse 2.5s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 4px 15px rgba(245, 158, 11, 0.35); }
    50% { box-shadow: 0 4px 30px rgba(245, 158, 11, 0.65); }
}

/* ===========================
   ШАПКА
=========================== */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(248, 247, 244, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #e8e6e1;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
    gap: 20px;
}

/* ЛОГО */
.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    font-size: 20px;
    color: #1a1a2e;
    flex-shrink: 0;
    text-decoration: none;
}

.logo__icon {
    font-size: 22px;
}

.logo__accent {
    color: #f59e0b;
}

/* НАВИГАЦИЯ */
.nav__list {
    display: flex;
    gap: 6px;
}

.nav__link {
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 15px;
    color: #4a4a6a;
    transition: all 0.2s;
}

.nav__link:hover,
.nav__link.active {
    background: #f0ede8;
    color: #1a1a2e;
}

/* КНОПКИ ШАПКИ */
.header__btns {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* БУРГЕР */
.burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
    border-radius: 8px;
    transition: background 0.2s;
}

.burger:hover {
    background: #f0ede8;
}

.burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #1a1a2e;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.burger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.burger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.burger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ===========================
   МОБИЛЬНОЕ МЕНЮ
=========================== */
.mobile-menu {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: #fff;
    z-index: 999;
    padding: 16px 20px 24px;
    border-bottom: 1px solid #e8e6e1;
    transform: translateY(-110%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.mobile-menu.open {
    transform: translateY(0);
}

.mobile-menu__list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-menu__link {
    display: block;
    padding: 13px 16px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 500;
    color: #1a1a2e;
    transition: background 0.2s;
}

.mobile-menu__link:hover {
    background: #f8f7f4;
}

.mobile-menu__link--accent {
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    color: #fff !important;
    font-weight: 600;
    margin-top: 8px;
    text-align: center;
}

.mobile-menu__link--accent:hover {
    opacity: 0.9;
}

.overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.35);
    z-index: 998;
}

.overlay.show {
    display: block;
}

/* ===========================
   HERO СЕКЦИЯ
=========================== */
.hero {
    background: linear-gradient(150deg, #1a0533 0%, #0f0f2e 40%, #1a1a4e 70%, #2d1b69 100%);
    padding: 80px 0 70px;
    overflow: hidden;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(245,158,11,0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245, 158, 11, 0.15);
    border: 1px solid rgba(245, 158, 11, 0.3);
    color: #f59e0b;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 22px;
    width: fit-content;
}

.hero__title {
    font-size: 48px;
    font-weight: 900;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.hero__subtitle {
    font-size: 17px;
    color: rgba(255,255,255,0.72);
    margin-bottom: 28px;
    max-width: 480px;
    line-height: 1.65;
}

.hero__bonus {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 14px 22px;
    border-radius: 12px;
    margin-bottom: 28px;
}

.hero__bonus-amount {
    font-size: 15px;
    color: rgba(255,255,255,0.8);
}

.hero__bonus-amount strong {
    font-size: 22px;
    color: #f59e0b;
    font-weight: 800;
}

.hero__bonus-label {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    line-height: 1.3;
}

.hero__actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.hero .btn--outline {
    border-color: rgba(255,255,255,0.4);
    color: #fff;
}

.hero .btn--outline:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
}

.hero__stats {
    display: flex;
    gap: 28px;
}

.hero__stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hero__stat strong {
    font-size: 22px;
    font-weight: 800;
    color: #f59e0b;
    line-height: 1;
}

.hero__stat span {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

/* HERO ВИЗУАЛ */
.hero__image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero__visual {
    display: flex;
    gap: 12px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 20px;
    padding: 28px 32px;
    backdrop-filter: blur(10px);
}

.hero__reel {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.reel-item {
    width: 70px;
    height: 70px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

.hero__card {
    position: absolute;
    background: #fff;
    border-radius: 12px;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 700;
    color: #1a1a2e;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    white-space: nowrap;
}

.hero__card--1 {
    top: 10px;
    left: -20px;
    color: #f59e0b;
}

.hero__card--2 {
    bottom: 20px;
    left: -30px;
    color: #ef4444;
}

.hero__card--3 {
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    color: #22c55e;
}

/* ===========================
   ДОВЕРИЕ
=========================== */
.trust {
    background: #fff;
    border-bottom: 1px solid #f0ede8;
    padding: 20px 0;
}

.trust__inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.trust__item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
}

.trust__icon {
    font-size: 28px;
    flex-shrink: 0;
}

.trust__text strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #1a1a2e;
}

.trust__text span {
    font-size: 13px;
    color: #7a7a9a;
}

/* ===========================
   СЕКЦИИ — ОБЩИЕ СТИЛИ
=========================== */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.section-sub {
    font-size: 16px;
    color: #7a7a9a;
    max-width: 520px;
    margin: 0 auto;
}

.text-center {
    text-align: center;
}

/* ===========================
   СЛОТЫ
=========================== */
.slots {
    background: #f8f7f4;
}

.slots__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.slot-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    border: 1px solid #f0ede8;
}

.slot-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.slot-card--featured {
    grid-column: span 1;
    border: 2px solid #f59e0b;
}

.slot-card__img {
    height: 170px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slot-card__overlay {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.slot-card__emoji {
    font-size: 32px;
}

.slot-card__columns {
    display: flex;
    gap: 6px;
    background: rgba(0,0,0,0.25);
    padding: 8px 10px;
    border-radius: 10px;
    backdrop-filter: blur(4px);
}

.slot-col {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
}

.slot-col span {
    font-size: 18px;
    line-height: 1.2;
}

.slot-card__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
}

.slot-card--featured .slot-card__badge {
    background: linear-gradient(135deg, #f59e0b, #ef4444);
}

.slot-card__multiplier {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(245, 158, 11, 0.9);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 20px;
}

.slot-card__info {
    padding: 16px;
}

.slot-card__name {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.slot-card__meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}

.slot-card__rtp {
    font-size: 12px;
    color: #22c55e;
    font-weight: 600;
    background: rgba(34, 197, 94, 0.1);
    padding: 3px 8px;
    border-radius: 6px;
}

.slot-card__provider {
    font-size: 11px;
    color: #9a9aba;
}

.slots__footer {
    text-align: center;
    margin-top: 42px;
}

/* ===========================
   ТЕКСТОВЫЕ БЛОКИ
=========================== */
.text-section {
    background: #fff;
}

.text-section--alt {
    background: #f8f7f4;
}

.text-section__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.text-section__content h2 {
    font-size: 30px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 20px;
    line-height: 1.25;
}

.text-section__content p {
    font-size: 15px;
    color: #4a4a6a;
    margin-bottom: 16px;
    line-height: 1.75;
}

.text-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    margin-top: 32px;
}

.text-columns p {
    font-size: 15px;
    color: #4a4a6a;
    line-height: 1.75;
    margin-bottom: 14px;
}

.text-section--alt h2 {
    font-size: 32px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 6px;
}

.text-section__cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.feature-card {
    background: #f8f7f4;
    border-radius: 14px;
    padding: 20px;
    border: 1px solid #ede9e3;
}

.feature-card__icon {
    font-size: 26px;
    margin-bottom: 10px;
}

.feature-card h3 {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 13px;
    color: #7a7a9a;
    line-height: 1.6;
}

/* ===========================
   БОНУСЫ
=========================== */
.bonuses {
    background: #fff;
}

.bonuses__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 22px;
}

.bonus-card {
    background: #f8f7f4;
    border-radius: 18px;
    padding: 28px;
    border: 1px solid #ede9e3;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.bonus-card--main {
    background: linear-gradient(145deg, #1a0533, #2d1b69);
    border-color: transparent;
    color: #fff;
}

.bonus-card__tag {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #f59e0b;
    background: rgba(245,158,11,0.12);
    padding: 4px 12px;
    border-radius: 20px;
    width: fit-content;
}

.bonus-card__amount {
    font-size: 42px;
    font-weight: 900;
    color: #f59e0b;
    line-height: 1;
}

.bonus-card__desc {
    font-size: 15px;
    line-height: 1.55;
    color: inherit;
    opacity: 0.85;
}

.bonus-card--main .bonus-card__desc {
    color: rgba(255,255,255,0.8);
    opacity: 1;
}

.bonus-card__list {
    display: flex;
    flex-direction: column;
    gap: 7px;
    flex: 1;
}

.bonus-card__list li {
    font-size: 13px;
    color: inherit;
    opacity: 0.8;
}

.bonus-card--main .bonus-card__list li {
    color: rgba(255,255,255,0.75);
    opacity: 1;
}

/* ===========================
   ШАГИ
=========================== */
.steps {
    background: #f8f7f4;
}

.steps__grid {
    display: flex;
    align-items: center;
    gap: 0;
    justify-content: center;
    margin-bottom: 48px;
}

.step-card {
    background: #fff;
    border-radius: 18px;
    padding: 32px 28px;
    border: 1px solid #ede9e3;
    flex: 1;
    max-width: 300px;
    text-align: center;
}

.step-card__num {
    font-size: 40px;
    font-weight: 900;
    color: #f59e0b;
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 14px;
}

.step-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 12px;
}

.step-card p {
    font-size: 14px;
    color: #7a7a9a;
    line-height: 1.65;
}

.step-card__arrow {
    font-size: 26px;
    color: #d0cdc8;
    padding: 0 18px;
    flex-shrink: 0;
}

.steps__cta {
    text-align: center;
}

/* ===========================
   ПРОВАЙДЕРЫ
=========================== */
.providers {
    background: #fff;
}

.providers__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}

.provider-item {
    background: #f8f7f4;
    border: 1px solid #ede9e3;
    border-radius: 10px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    color: #4a4a6a;
    transition: all 0.2s;
}

.provider-item:hover {
    border-color: #f59e0b;
    color: #f59e0b;
    background: rgba(245,158,11,0.05);
}

/* ===========================
   FAQ
=========================== */
.faq {
    background: #f8f7f4;
}

.faq__list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq__item {
    background: #fff;
    border-radius: 14px;
    border: 1px solid #ede9e3;
    overflow: hidden;
}

.faq__question {
    width: 100%;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #1a1a2e;
    text-align: left;
    gap: 12px;
}

.faq__icon {
    font-size: 20px;
    font-weight: 400;
    color: #f59e0b;
    flex-shrink: 0;
    transition: transform 0.25s;
}

.faq__item.open .faq__icon {
    transform: rotate(45deg);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.2s;
}

.faq__item.open .faq__answer {
    max-height: 300px;
}

.faq__answer p {
    padding: 0 24px 20px;
    font-size: 14px;
    color: #7a7a9a;
    line-height: 1.7;
}

/* ===========================
   ФУТЕР
=========================== */
.footer {
    background: #1a1a2e;
    color: rgba(255,255,255,0.7);
    padding: 60px 0 0;
}

.footer__top {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 60px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__brand .logo {
    margin-bottom: 16px;
}

.footer__brand .logo__text {
    color: #fff;
}

.footer__brand p {
    font-size: 13px;
    line-height: 1.65;
    max-width: 280px;
}

.footer__links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer__col h4 {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer__col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__col a {
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    transition: color 0.2s;
}

.footer__col a:hover {
    color: #f59e0b;
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    font-size: 13px;
}

.footer__age {
    background: #ef4444;
    color: #fff;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 13px;
}

/* ===========================
   СТРАНИЦА-ЗАГОЛОВОК
=========================== */
.page-hero {
    background: linear-gradient(135deg, #1a0533 0%, #2d1b69 100%);
    padding: 60px 0;
    text-align: center;
}

.page-hero__title {
    font-size: 42px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 12px;
}

.page-hero__sub {
    font-size: 16px;
    color: rgba(255,255,255,0.6);
}

/* ===========================
   О НАС
=========================== */
.about-main {
    background: #f8f7f4;
    padding: 70px 0;
}

.about-intro {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 70px;
}

.about-intro__text h2 {
    font-size: 32px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 20px;
}

.about-intro__text p {
    font-size: 15px;
    color: #4a4a6a;
    margin-bottom: 16px;
    line-height: 1.75;
}

.about-intro__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.about-stat {
    background: #fff;
    border-radius: 14px;
    padding: 22px;
    text-align: center;
    border: 1px solid #ede9e3;
}

.about-stat strong {
    display: block;
    font-size: 30px;
    font-weight: 900;
    color: #f59e0b;
    margin-bottom: 4px;
}

.about-stat span {
    font-size: 13px;
    color: #7a7a9a;
}

.about-values h2 {
    font-size: 32px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 36px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 70px;
}

.value-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid #ede9e3;
}

.value-card__icon {
    font-size: 30px;
    margin-bottom: 14px;
}

.value-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.value-card p {
    font-size: 13px;
    color: #7a7a9a;
    line-height: 1.65;
}

.about-text-block {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    border: 1px solid #ede9e3;
    margin-bottom: 50px;
}

.about-text-block h2 {
    font-size: 26px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 20px;
}

.about-text-block p {
    font-size: 15px;
    color: #4a4a6a;
    margin-bottom: 16px;
    line-height: 1.75;
}

.about-team h2 {
    font-size: 28px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 24px;
}

.responsible-block {
    background: #fff;
    border-radius: 18px;
    padding: 32px;
    border: 1px solid #ede9e3;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 24px;
    align-items: start;
}

.responsible-block__icon {
    font-size: 40px;
}

.responsible-block__content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 12px;
}

.responsible-block__content p {
    font-size: 14px;
    color: #4a4a6a;
    margin-bottom: 12px;
    line-height: 1.7;
}

.responsible-block__contacts {
    background: #f8f7f4;
    border-radius: 10px;
    padding: 14px 18px;
    margin-top: 8px;
}

.responsible-block__contacts strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 4px;
}

.responsible-block__contacts span {
    font-size: 13px;
    color: #7a7a9a;
}

/* ===========================
   CTA БЛОК
=========================== */
.about-cta {
    background: linear-gradient(135deg, #1a0533, #2d1b69);
    padding: 70px 0;
}

.cta-block {
    text-align: center;
}

.cta-block h2 {
    font-size: 36px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 12px;
}

.cta-block p {
    font-size: 16px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 32px;
}

.cta-block__btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-block .btn--outline {
    border-color: rgba(255,255,255,0.4);
    color: #fff;
}

.cta-block .btn--outline:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
}

/* ===========================
   ПРАВИЛА
=========================== */
.rules-section {
    background: #f8f7f4;
    padding: 60px 0;
}

.rules-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 40px;
    align-items: start;
}

.rules-nav {
    position: sticky;
    top: 88px;
    background: #fff;
    border-radius: 14px;
    padding: 22px;
    border: 1px solid #ede9e3;
}

.rules-nav h4 {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #9a9aba;
    margin-bottom: 14px;
}

.rules-nav ul {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.rules-nav a {
    display: block;
    font-size: 13px;
    color: #4a4a6a;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.2s;
    line-height: 1.4;
}

.rules-nav a:hover {
    background: #f8f7f4;
    color: #f59e0b;
}

.rules-content {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.rules-alert {
    background: #fff8e6;
    border: 1px solid #f59e0b;
    border-radius: 12px;
    padding: 18px 22px;
    font-size: 14px;
    color: #92400e;
    line-height: 1.6;
}

.rules-block {
    background: #fff;
    border-radius: 16px;
    padding: 36px;
    border: 1px solid #ede9e3;
}

.rules-block h2 {
    font-size: 22px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 2px solid #f8f7f4;
}

.rules-block h3 {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 22px 0 10px;
}

.rules-block p {
    font-size: 14px;
    color: #4a4a6a;
    line-height: 1.75;
    margin-bottom: 12px;
}

.rules-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 12px 0;
}

.rules-list li {
    font-size: 14px;
    color: #4a4a6a;
    line-height: 1.6;
    padding-left: 20px;
    position: relative;
}

.rules-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: #f59e0b;
    font-weight: 700;
}

.rules-final {
    background: #f8f7f4;
    border-radius: 10px;
    padding: 18px 22px;
    margin-top: 20px;
}

.rules-final p {
    font-size: 13px;
    color: #7a7a9a;
    margin-bottom: 4px;
}

/* ===========================
   АДАПТИВ
=========================== */
@media (max-width: 1024px) {
    .hero__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero__image {
        display: none;
    }

    .hero__badge {
        margin: 0 auto 22px;
    }

    .hero__subtitle {
        margin: 0 auto 28px;
    }

    .hero__bonus {
        margin: 0 auto 28px;
    }

    .hero__actions {
        justify-content: center;
    }

    .hero__stats {
        justify-content: center;
    }

    .trust__inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .slots__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bonuses__grid {
        grid-template-columns: 1fr;
    }

    .text-section__grid {
        grid-template-columns: 1fr;
    }

    .text-columns {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-intro {
        grid-template-columns: 1fr;
    }

    .steps__grid {
        flex-direction: column;
        align-items: stretch;
    }

    .step-card {
        max-width: 100%;
    }

    .step-card__arrow {
        text-align: center;
        padding: 6px 0;
        transform: rotate(90deg);
    }

    .rules-layout {
        grid-template-columns: 1fr;
    }

    .rules-nav {
        position: static;
        display: none;
    }

    .footer__top {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .header__btns {
        display: none;
    }

    .burger {
        display: flex;
    }

    .hero {
        padding: 50px 0 50px;
    }

    .hero__title {
        font-size: 32px;
    }

    section {
        padding: 56px 0;
    }

    .section-title {
        font-size: 28px;
    }

    .slots__grid {
        grid-template-columns: 1fr 1fr;
    }

    .slot-card--featured {
        grid-column: span 2;
    }

    .bonuses__grid {
        grid-template-columns: 1fr;
    }

    .footer__links {
        grid-template-columns: repeat(3, 1fr);
    }

    .text-section__cards {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .page-hero__title {
        font-size: 30px;
    }

    .rules-block {
        padding: 24px 20px;
    }

    .about-text-block {
        padding: 24px 20px;
    }

    .responsible-block {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 500px) {
    .slots__grid {
        grid-template-columns: 1fr;
    }

    .slot-card--featured {
        grid-column: span 1;
    }

    .hero__actions {
        flex-direction: column;
    }

    .hero__actions .btn {
        width: 100%;
    }

    .footer__links {
        grid-template-columns: 1fr 1fr;
    }

    .cta-block__btns {
        flex-direction: column;
        align-items: center;
    }

    .trust__inner {
        grid-template-columns: 1fr;
    }

    .about-intro__stats {
        grid-template-columns: 1fr 1fr;
    }
}