/* Общие стили (тёмная тема) */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(145deg, #0d0b1a 0%, #1a1435 100%);
    color: #ffffff;
    line-height: 1.6;
    min-height: 100vh;
}

.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Кнопки */
.btn {
    display: inline-block;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(45deg, #9d4df7, #6a3be0);
    color: white;
    box-shadow: 0 4px 15px rgba(157, 77, 247, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(157, 77, 247, 0.5);
    background: linear-gradient(45deg, #a85ef7, #7a4ce0);
}

.btn-outline {
    background: transparent;
    border: 2px solid #9d4df7;
    color: #ffffff;
}

.btn-outline:hover {
    background: rgba(157, 77, 247, 0.15);
    border-color: #b87cf7;
}

.btn-small {
    padding: 8px 20px;
    font-size: 14px;
}

.btn-large {
    padding: 16px 40px;
    font-size: 18px;
}

.btn-small.btn-outline {
    padding: 6px 18px; /* Чуть меньше из-за границы */
}

/* Шапка */
.header {
    background: rgba(10, 8, 22, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(157, 77, 247, 0.2);
    position: sticky;
    top: 0;
    z-index: 50;
}

.header__body {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 80px;
}

.header__logo {
    font-size: 28px;
    font-weight: 900;
    text-decoration: none;
    color: white;
    letter-spacing: 2px;
    line-height: 1;
}

.logo-highlight {
    color: #9d4df7;
}

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

.header__list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.header__link {
    color: #ddd;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.2s;
    padding: 5px 0;
    border-bottom: 2px solid transparent;
}

.header__link:hover,
.header__link.active {
    color: #ffffff;
    border-bottom-color: #9d4df7;
}

.header__actions {
    display: flex;
    gap: 12px;
}

.header__actions-mobile {
    display: none; /* Скрыто на десктопе */
}

.header__burger {
    display: none;
    width: 30px;
    height: 20px;
    position: relative;
    cursor: pointer;
    z-index: 5;
}

.header__burger span {
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: white;
    top: 9px;
    transition: all 0.3s;
}

.header__burger:before,
.header__burger:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: white;
    transition: all 0.3s;
}

.header__burger:before {
    top: 0;
}

.header__burger:after {
    bottom: 0;
}

/* Анимация бургера (крестик) */
.header__burger.active:before {
    transform: rotate(45deg);
    top: 9px;
}

.header__burger.active:after {
    transform: rotate(-45deg);
    bottom: 9px;
}

.header__burger.active span {
    transform: scale(0);
}

/* Основной контент */
.main {
    flex: 1 1 auto;
}

/* Hero секция (Главная) */
.hero {
    padding: 80px 0;
    background: radial-gradient(circle at 70% 50%, rgba(106, 59, 224, 0.15) 0%, transparent 50%);
}

.hero__content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero__title {
    font-size: 52px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff, #d9b3ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__subtitle {
    font-size: 20px;
    color: #b0aad0;
    margin-bottom: 40px;
}

.hero__buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Секция бонусов (Главная) */
.bonuses {
    padding: 60px 0;
}

.section-title {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 50px;
    text-align: center;
}

.accent-text {
    color: #9d4df7;
}

.bonuses__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.bonus-card {
    background: rgba(20, 15, 45, 0.7);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(157, 77, 247, 0.3);
    border-radius: 20px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: transform 0.3s, border-color 0.3s;
}

.bonus-card:hover {
    transform: translateY(-5px);
    border-color: #9d4df7;
    box-shadow: 0 10px 30px rgba(157, 77, 247, 0.2);
}

.bonus-card__icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #2a1f4a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
}

.bonus-card__content {
    flex: 1;
}

.bonus-card__title {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 5px;
}

.bonus-card__desc {
    font-size: 14px;
    color: #b0aad0;
    margin-bottom: 10px;
}

/* SEO контент */
.seo-content {
    padding: 60px 0;
    background: rgba(10, 8, 22, 0.5);
}

.seo-content__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.seo-content__text p,
.seo-content__text ol {
    margin-bottom: 20px;
    color: #ccc;
}

.seo-content__text ol {
    padding-left: 20px;
}

.seo-content__text a {
    color: #b87cf7;
    text-decoration: none;
    font-weight: 600;
}

.seo-content__text a:hover {
    text-decoration: underline;
}

/* Страницы (О нас, Правила, Отзывы) */
.page-header {
    padding: 60px 0 30px;
    text-align: center;
}

.page-title {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #ffffff, #b87cf7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-description {
    font-size: 18px;
    color: #a29bbe;
}

.content-section {
    padding: 30px 0 80px;
}

.text-block {
    background: rgba(20, 15, 45, 0.5);
    border-radius: 25px;
    padding: 35px;
    margin-bottom: 30px;
    border: 1px solid rgba(157, 77, 247, 0.2);
}

.text-block__title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 25px;
    color: #ffffff;
}

.text-block p {
    margin-bottom: 20px;
    color: #ccc;
}

.custom-list {
    list-style: none;
    padding: 0;
}

.custom-list li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 15px;
    color: #ddd;
}

.custom-list li:before {
    content: "🔥";
    position: absolute;
    left: 0;
    color: #9d4df7;
    font-size: