/* Основные стили */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: linear-gradient(135deg, #0a0e17 0%, #1a1f2e 100%);
    color: #e2e8f0;
    line-height: 1.6;
    min-height: 100vh;
}

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

/* Баннер с бонусом */
.bonus-banner {
    background: linear-gradient(90deg, #6366f1, #8b5cf6, #ec4899);
    padding: 12px 0;
    position: relative;
    overflow: hidden;
}

.bonus-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.bonus-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    position: relative;
    z-index: 1;
}

.bonus-text {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.bonus-text i {
    font-size: 1.3rem;
    animation: pulse 2s infinite;
}

.bonus-text strong {
    background: rgba(255,255,255,0.2);
    padding: 3px 10px;
    border-radius: 20px;
    margin: 0 5px;
}

.timer {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0,0,0,0.3);
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 600;
}

#countdown {
    font-family: 'Courier New', monospace;
    font-size: 1.2rem;
    color: #fbbf24;
}

/* Главный хедер */
.main-header {
    background: rgba(10, 14, 23, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.main-header.scrolled {
    padding: 15px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

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

.logo i {
    font-size: 2.2rem;
    color: #8b5cf6;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(90deg, #8b5cf6, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo span {
    color: #fbbf24;
}

.main-nav {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.main-nav a {
    color: #cbd5e1;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: #8b5cf6;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #8b5cf6, #3b82f6);
    transition: width 0.3s;
}

.main-nav a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    gap: 12px;
}

.btn-login, .btn-register {
    padding: 10px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.btn-login {
    background: transparent;
    color: #8b5cf6;
    border: 2px solid #8b5cf6;
}

.btn-login:hover {
    background: rgba(139, 92, 246, 0.1);
}

.btn-register {
    background: linear-gradient(90deg, #8b5cf6, #3b82f6);
    color: white;
    border: none;
}

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.4);
}

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

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    line-height: 1.2;
    background: linear-gradient(90deg, #ffffff, #cbd5e1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #94a3b8;
    margin-bottom: 30px;
}

.highlight {
    color: #fbbf24;
    font-weight: 800;
    font-size: 1.4rem;
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #8b5cf6;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: #94a3b8;
}

.hero-description {
    font-size: 1.1rem;
    color: #cbd5e1;
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 16px 32px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s;
}

.btn-primary {
    background: linear-gradient(90deg, #8b5cf6, #3b82f6);
    color: white;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #8b5cf6;
    border: 2px solid #8b5cf6;
}

.btn-secondary:hover {
    background: rgba(139, 92, 246, 0.1);
    transform: translateY(-3px);
}

.btn-large {
    padding: 18px 36px !important;
    font-size: 1.2rem !important;
}

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

.badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(30, 41, 59, 0.7);
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
}

.badge i {
    color: #10b981;
}

/* Игровая демо-секция */
.hero-game {
    display: flex;
    justify-content: center;
}

.game-preview {
    background: rgba(30, 41, 59, 0.8);
    border: 2px solid #475569;
    border-radius: 15px;
    padding: 25px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.game-title {
    text-align: center;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #f1f5f9;
}

.game-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
    margin-bottom: 20px;
}

.grid-cell {
    aspect-ratio: 1;
    background: #1e293b;
    border: 2px solid #334155;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
}

.grid-cell:hover {
    background: #334155;
    transform: scale(1.05);
}

.grid-cell.safe {
    background: #10b981;
    border-color: #059669;
}

.grid-cell.mine {
    background: #ef4444;
    border-color: #dc2626;
}

.grid-cell.opened {
    cursor: default;
}

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

.multiplier-display {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.multiplier-display span {
    font-size: 0.9rem;
    color: #94a3b8;
}

.multiplier-display strong {
    font-size: 1.8rem;
    color: #fbbf24;
}

.btn-demo {
    background: #475569;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.btn-demo:hover {
    background: #6366f1;
    transform: translateY(-2px);
}

/* Основной контент */
.main-content {
    padding: 60px 0;
}

.content-section {
    margin-bottom: 80px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s, transform 0.8s;
}

.content-section.animate {
    opacity: 1;
    transform: translateY(0);
}

.content-section h2 {
    font-size: 2.3rem;
    margin-bottom: 25px;
    color: #f1f5f9;
    position: relative;
    padding-bottom: 15px;
}

.content-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #8b5cf6, #3b82f6);
    border-radius: 2px;
}

.content-section h3 {
    font-size: 1.6rem;
    margin: 30px 0 15px;
    color: #e2e8f0;
}

.content-section p {
    font-size: 1.1rem;
    color: #cbd5e1;
    margin-bottom: 20px;
    line-height: 1.8;
}

/* Фичи */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.feature {
    background: rgba(30, 41, 59, 0.7);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #334155;
    transition: all 0.3s;
}

.feature:hover {
    border-color: #8b5cf6;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 2rem;
    color: #8b5cf6;
}

.feature h3 {
    font-size: 1.3rem;
    margin: 0 0 15px;
}

.feature p {
    font-size: 1rem;
    color: #94a3b8;
    margin: 0;
}

/* Шаги */
.steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 40px 0;
}

.step {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #8b5cf6, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
}

.step-content h3 {
    margin: 0 0 10px;
    font-size: 1.4rem;
}

/* Таблицы */
.table-container {
    overflow-x: auto;
    margin: 30px 0;
    border-radius: 12px;
    border: 1px solid #334155;
}

.multiplier-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 700px;
}

.multiplier-table th {
    background: linear-gradient(90deg, #1e293b, #334155);
    padding: 18px 15px;
    text-align: center;
    color: #f1f5f9;
    font-weight: 700;
    border-bottom: 2px solid #475569;
}

.multiplier-table td {
    padding: 16px 15px;
    text-align: center;
    border-bottom: 1px solid #334155;
    color: #cbd5e1;
}

.multiplier-table tr:hover {
    background: rgba(30, 41, 59, 0.5);
}

.multiplier-table td:first-child {
    font-weight: 600;
    color: #f1f5f9;
}

/* Карточки стратегий */
.strategy-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.strategy-card {
    background: rgba(30, 41, 59, 0.7);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #334155;
    transition: all 0.3s;
}

.strategy-card:hover {
    border-color: #8b5cf6;
    transform: translateY(-5px);
}

.strategy-card h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #f1f5f9;
}

.strategy-card h3 i {
    color: #8b5cf6;
}

.strategy-card ul {
    list-style: none;
    margin-top: 15px;
    padding-left: 0;
}

.strategy-card li {
    padding: 8px 0;
    border-bottom: 1px dashed #334155;
    color: #94a3b8;
}

.strategy-card li:last-child {
    border-bottom: none;
}

/* Психологический список */
.psychology-list {
    list-style: none;
    counter-reset: psychology-counter;
    margin: 30px 0;
    padding-left: 0;
}

.psychology-list li {
    counter-increment: psychology-counter;
    padding: 20px 20px 20px 70px;
    margin-bottom: 20px;
    background: rgba(30, 41, 59, 0.5);
    border-radius: 10px;
    border-left: 4px solid #8b5cf6;
    position: relative;
}

.psychology-list li::before {
    content: counter(psychology-counter);
    position: absolute;
    left: 20px;
    top: 20px;
    width: 30px;
    height: 30px;
    background: #8b5cf6;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}

/* Предупреждение */
.warning-box {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 10px;
    padding: 25px;
    margin: 40px 0;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.warning-box i {
    font-size: 2rem;
    color: #ef4444;
    flex-shrink: 0;
    margin-top: 5px;
}

.warning-box h4 {
    color: #fca5a5;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

/* Бонусы */
.bonus-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.bonus-card {
    background: rgba(30, 41, 59, 0.7);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #334155;
    text-align: center;
    position: relative;
    transition: all 0.3s;
}

.bonus-card:hover {
    border-color: #8b5cf6;
    transform: translateY(-5px);
}

.bonus-card.main-bonus {
    border: 2px solid #8b5cf6;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.9), rgba(139, 92, 246, 0.1));
}

.bonus-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #ec4899, #8b5cf6);
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
}

.bonus-card h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: #f1f5f9;
}

.bonus-amount {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.percentage {
    font-size: 3rem;
    font-weight: 800;
    color: #fbbf24;
    line-height: 1;
}

.plus {
    font-size: 2rem;
    color: #8b5cf6;
    font-weight: 800;
}

.freespins {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3b82f6;
}

.btn-bonus {
    display: inline-block;
    background: linear-gradient(90deg, #8b5cf6, #3b82f6);
    color: white;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    margin: 15px 0;
    transition: all 0.3s;
}

.btn-bonus:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(139, 92, 246, 0.3);
}

.wagering {
    font-size: 0.9rem;
    color: #94a3b8;
    margin-top: 15px;
}

/* Уровни лояльности */
.loyalty-levels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.level {
    background: rgba(30, 41, 59, 0.7);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #334155;
    transition: all 0.3s;
}

.level:hover {
    border-color: #8b5cf6;
}

.level-name {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #f1f5f9;
}

.level-requirements {
    font-size: 0.9rem;
    color: #94a3b8;
    margin-bottom: 10px;
}

.level-benefits {
    font-size: 1rem;
    color: #fbbf24;
    font-weight: 600;
}

.cta-bonus {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    margin: 50px 0;
    border: 2px solid #475569;
}

.cta-bonus h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #f1f5f9;
}

/* Отзывы */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.review-card {
    background: rgba(30, 41, 59, 0.7);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #334155;
}

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

.review-avatar {
    width: 50px;
    height: 50px;
    background: #475569;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-avatar i {
    font-size: 1.5rem;
    color: #cbd5e1;
}

.review-author h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #f1f5f9;
}

.review-rating {
    color: #fbbf24;
    font-size: 0.9rem;
}

.review-content p {
    font-style: italic;
    color: #cbd5e1;
    line-height: 1.6;
}

.review-win {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #334155;
    color: #94a3b8;
}

.review-win i {
    color: #fbbf24;
}

.review-win strong {
    color: #f1f5f9;
    font-size: 1.1rem;
}

.total-stats {
    display: flex;
    justify-content: space-around;
    margin-top: 50px;
    padding: 30px;
    background: rgba(30, 41, 59, 0.7);
    border-radius: 15px;
    border: 1px solid #334155;
    flex-wrap: wrap;
    gap: 30px;
}

.total-stat {
    text-align: center;
}

.total-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #8b5cf6;
    margin-bottom: 10px;
}

.total-label {
    font-size: 1rem;
    color: #94a3b8;
}

/* FAQ */
.faq-list {
    margin-top: 30px;
}

.faq-item {
    background: rgba(30, 41, 59, 0.7);
    border: 1px solid #334155;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s;
}

.faq-question:hover {
    background: rgba(255,255,255,0.05);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.2rem;
    color: #f1f5f9;
}

.faq-question i {
    color: #8b5cf6;
    transition: transform 0.3s;
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-answer.active {
    padding: 0 25px 25px;
    max-height: 500px;
}

.faq-answer p {
    margin: 0;
    color: #cbd5e1;
}

/* Финальный CTA */
.final-cta {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    padding: 60px 0;
    border-radius: 20px;
    margin: 60px 0;
    text-align: center;
    border: 2px solid #475569;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #f1f5f9;
}

.cta-content p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px;
    color: #cbd5e1;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.btn-cta {
    padding: 20px 40px !important;
    font-size: 1.2rem !important;
}

.cta-footer {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.guarantee {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #94a3b8;
}

.guarantee i {
    color: #10b981;
}

/* Футер */
.main-footer {
    background: #0a0e17;
    padding: 60px 0 30px;
    border-top: 1px solid #334155;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-logo i {
    font-size: 2.5rem;
    color: #8b5cf6;
}

.footer-logo h3 {
    font-size: 1.8rem;
    color: #f1f5f9;
}

.footer-logo span {
    color: #fbbf24;
}

.footer-logo p {
    color: #94a3b8;
    font-size: 0.9rem;
}

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

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #f1f5f9;
}

.footer-column a {
    display: block;
    color: #94a3b8;
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #8b5cf6;
}

.footer-actions {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.btn-footer-primary, .btn-footer-secondary {
    padding: 15px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
}

.btn-footer-primary {
    background: linear-gradient(90deg, #8b5cf6, #3b82f6);
    color: white;
}

.btn-footer-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(139, 92, 246, 0.3);
}

.btn-footer-secondary {
    background: transparent;
    color: #8b5cf6;
    border: 2px solid #8b5cf6;
}

.btn-footer-secondary:hover {
    background: rgba(139, 92, 246, 0.1);
}

.age-restriction {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #94a3b8;
    font-size: 0.9rem;
    margin-top: 10px;
}

.age-restriction i {
    color: #ef4444;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid #334155;
    flex-wrap: wrap;
    gap: 30px;
}

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

.licenses img {
    height: 40px;
    border-radius: 5px;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.licenses img:hover {
    opacity: 1;
}

.payment-methods {
    display: flex;
    gap: 20px;
    font-size: 1.8rem;
    color: #94a3b8;
}

.payment-methods i:hover {
    color: #8b5cf6;
    cursor: pointer;
}

/* Анимации */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Адаптивность */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-stats, .hero-buttons, .security-badges {
        justify-content: center;
    }
    
    .step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
    }
    
    .main-nav {
        order: 3;
        width: 100%;
        justify-content: center;
    }
    
    .hero-text h2 {
        font-size: 2.2rem;
    }
    
    .content-section h2 {
        font-size: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .bonus-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-buttons, .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary, .btn-cta {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .features-grid, .strategy-cards, .bonus-cards, .reviews-grid {
        grid-template-columns: 1fr;
    }
}