/* Reset и базовые стили */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Цветовая палитра Tower Rush */
    --color-primary: #8a2be2; /* Фиолетовый - основной */
    --color-primary-dark: #6a0dad;
    --color-primary-light: #9b4dff;
    --color-secondary: #00d4ff; /* Голубой - акцент */
    --color-accent: #ff6b35; /* Оранжевый - кнопки */
    --color-success: #4cd964;
    --color-warning: #ffcc00;
    --color-danger: #ff3b30;
    
    /* Градиенты */
    --gradient-primary: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    --gradient-dark: linear-gradient(135deg, #0a0a1a, #1a1a2e);
    --gradient-card: linear-gradient(145deg, rgba(138, 43, 226, 0.15), rgba(0, 212, 255, 0.1));
    
    /* Фоны */
    --bg-dark: #0a0a1a;
    --bg-darker: #050510;
    --bg-card: rgba(255, 255, 255, 0.05);
    
    /* Текст */
    --text-primary: #ffffff;
    --text-secondary: #b0b0d0;
    --text-muted: #8888aa;
    
    /* Тени */
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    --shadow-primary: 0 10px 30px rgba(138, 43, 226, 0.4);
    --shadow-secondary: 0 10px 30px rgba(0, 212, 255, 0.4);
    
    /* Скругления */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    
    /* Анимации */
    --transition: all 0.3s ease;
}

body {
    font-family: var(--font-primary);
    background: var(--gradient-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Типография */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

.section-title {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight {
    color: var(--color-secondary);
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-size: 1.2rem;
}

/* Логотип */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 700;
}

.logo__icon {
    font-size: 2rem;
}

.logo__text {
    font-size: 1.8rem;
    color: var(--text-primary);
}

.logo__highlight {
    font-size: 1.8rem;
    color: var(--color-secondary);
}

/* Шапка */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 26, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    z-index: 1000;
    border-bottom: 2px solid var(--color-primary);
}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.nav__link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.nav__link:hover,
.nav__link.active {
    background: var(--gradient-primary);
    color: white;
}

/* Кнопки */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: var(--radius-lg);
    font-family: var(--font-secondary);
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn--primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-primary);
}

.btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(138, 43, 226, 0.5);
}

.btn--accent {
    background: var(--color-accent);
    color: white;
}

.btn--outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--color-primary);
}

.btn--outline:hover {
    background: var(--color-primary);
    color: white;
}

.btn--large {
    padding: 18px 36px;
    font-size: 1.1rem;
}

.btn--small {
    padding: 8px 16px;
    font-size: 0.9rem;
}

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

/* Герой секция */
.hero {
    padding: 150px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(138, 43, 226, 0.2), transparent 50%),
                radial-gradient(circle at bottom left, rgba(0, 212, 255, 0.2), transparent 50%);
    z-index: -1;
}

.hero__badge {
    display: inline-block;
    background: var(--color-accent);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero__title {
    font-size: 4.5rem;
    margin-bottom: 15px;
}

.hero__title-highlight {
    color: var(--color-secondary);
}

.hero__subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.hero__description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin-bottom: 40px;
}

.hero__stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat__number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 5px;
}

.stat__label {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.hero__cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Карточки бонусов */
.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.bonus-card {
    background: var(--gradient-card);
    border-radius: var(--radius-lg);
    padding: 30px;
    border: 1px solid rgba(138, 43, 226, 0.2);
    transition: var(--transition);
    position: relative;
}

.bonus-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-primary);
    box-shadow: var(--shadow-primary);
}

.bonus-card--featured {
    border: 2px solid var(--color-secondary);
}

.bonus-card__badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--color-accent);
    color: white;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.bonus-card__header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.bonus-card__icon {
    font-size: 2.5rem;
}

.bonus-card__title {
    font-size: 1.3rem;
    font-weight: 600;
}

.bonus-card__amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 5px;
}

.bonus-card__subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.bonus-card__description {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.bonus-card__features {
    list-style: none;
    margin-bottom: 25px;
}

.bonus-card__features li {
    padding: 8px 0;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-icon {
    color: var(--color-success);
}

.bonus-card__footer {
    margin-top: 20px;
}

/* Адаптивность */
@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .hero__title {
        font-size: 3rem;
    }
    
    .hero__subtitle {
        font-size: 1.2rem;
    }
    
    .nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: var(--bg-dark);
        padding: 20px;
        transition: var(--transition);
    }
    
    .nav.active {
        left: 0;
    }
    
    .nav__list {
        flex-direction: column;
        gap: 15px;
    }
    
    .mobile-menu-btn {
        display: block;
        background: none;
        border: none;
        cursor: pointer;
    }
    
    .mobile-menu-btn span {
        display: block;
        width: 25px;
        height: 2px;
        background: var(--text-primary);
        margin: 5px 0;
        transition: var(--transition);
    }
    
    .bonuses-grid {
        grid-template-columns: 1fr;
    }
    
    .hero__cta {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero__title {
        font-size: 2.5rem;
    }
    
    .bonus-card__amount {
        font-size: 2.5rem;
    }
}
/* ===== СТИЛИ ДЛЯ ПЕРЕЛИНКОВКИ ===== */

/* Блок с карточками других страниц */
.pages-navigation {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f2ff 100%);
}

.pages-navigation .section-title {
    text-align: center;
    margin-bottom: 30px;
}

.pages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: block;
    height: 100%;
}

.page-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-color);
}

.page-card--main {
    border-color: #4ecdc4;
}

.page-card--download {
    border-color: #ff6b6b;
}

.page-card--money {
    border-color: #ffcc00;
}

.page-card--demo {
    border-color: #9d50bb;
}

.page-card__icon {
    font-size: 50px;
    margin-bottom: 20px;
    text-align: center;
}

.page-card__title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
    text-align: center;
    font-family: 'Comic Neue', cursive;
}

.page-card__description {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    text-align: center;
    margin-bottom: 20px;
}

.page-card__cta {
    display: block;
    text-align: center;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Адаптивность для карточек */
@media (max-width: 768px) {
    .pages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .page-card {
        padding: 20px;
    }
    
    .page-card__icon {
        font-size: 40px;
    }
    
    .page-card__title {
        font-size: 20px;
    }
}

/* Подсветка активной ссылки в навигации */
.nav__link.active {
    background: var(--accent-color);
    color: white !important;
    border-radius: 25px;
    padding: 8px 20px;
}

/* Стили для футера ссылок */
.footer__links a {
    transition: all 0.3s ease;
    display: inline-block;
}

.footer__links a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

/* Общие переменные (если их еще нет) */
:root {
    --accent-color: #ff6b6b;
    --primary-color: #6a0572;
    --secondary-color: #4ecdc4;
}
@media (max-width: 768px) {
    .header__actions .btn span {
        display: none !important;
    }
    
    .header__actions .btn:before {
        content: "📥" !important; /* Или другая иконка */
        display: inline-block !important;
        font-size: 16px !important;
    }
    
    .header__actions .btn {
        width: 40px !important;
        height: 40px !important;
        padding: 0 !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
}