/* Критический CSS */
*,*::before,*::after{box-sizing:border-box}
body{margin:0;font-family:'Inter',-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,Oxygen,Ubuntu,Cantarell,sans-serif;background-color:#141415;color:#ffffff;line-height:1.6;scroll-behavior:smooth}
.container{max-width:1400px;margin:0 auto;padding:0 20px}
.header{backdrop-filter:blur(15px);-webkit-backdrop-filter:blur(15px);padding:1rem 0;position:relative;z-index:100;border-bottom:1px solid rgba(255,255,255,0.1);transition:all 0.3s ease}
.header .container{display:flex;justify-content:space-between;align-items:center;position:relative}
.logo h1{font-size:2rem;font-weight:900;background:linear-gradient(135deg,#667eea 0%,#764ba2 100%);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}
.logo .subtitle{font-size:0.8rem;color:#8892b0;display:block;margin-top:-5px}
.nav{display:flex;gap:2rem}
.nav-link{color:#8892b0;text-decoration:none;font-weight:500;transition:all 0.3s ease;position:relative}
.nav-link:hover{color:#667eea}
.nav-link.active{color:#667eea}
.nav-link.active::after{content:'';position:absolute;bottom:-5px;left:0;right:0;height:2px;background:linear-gradient(135deg,#667eea 0%,#764ba2 100%);border-radius:2px}
.btn-primary{background:linear-gradient(135deg,#667eea 0%,#764ba2 100%);color:white;border:none;padding:0.8rem 2rem;border-radius:25px;font-weight:600;cursor:pointer;transition:all 0.3s ease;font-size:0.95rem;text-decoration:none;display:inline-block}
.btn-primary:hover{transform:translateY(-2px);box-shadow:0 10px 25px rgba(102,126,234,0.4)}

/* Остальные стили */

/* Заголовки секций */
.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    color: #8892b0;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* SEO тексты */
.seo-text {
    max-width: 1000px;
    margin: 0 auto 3rem;
    padding: 0 1rem;
}

.seo-text p {
    color: #8892b0;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.seo-text p:last-child {
    margin-bottom: 0;
}

/* Блок про зеркало */
.mirror-section {
    max-width: 1200px;
    margin: 4rem auto 3rem;
    padding: 0 1rem;
}

.mirror-header {
    text-align: center;
    margin-bottom: 3rem;
}

.mirror-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: rotate 3s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.mirror-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mirror-subtitle {
    font-size: 1.2rem;
    color: #8892b0;
    font-weight: 500;
}

.mirror-content {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid rgba(102, 126, 234, 0.2);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.1);
    position: relative;
    overflow: hidden;
}

.mirror-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.mirror-text {
    margin-bottom: 2.5rem;
}

.mirror-text p {
    color: #8892b0;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.mirror-text p:last-child {
    margin-bottom: 0;
}

.mirror-text strong {
    color: #667eea;
    font-weight: 700;
}

.mirror-button-container {
    text-align: center;
    margin: 2.5rem 0;
}

.btn-mirror {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    border: none;
    padding: 1.2rem 3rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 8px 25px rgba(240, 147, 251, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-mirror::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: left 0.5s;
}

.btn-mirror:hover::before {
    left: 100%;
}

.btn-mirror:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(240, 147, 251, 0.5);
    background: linear-gradient(135deg, #e085f0 0%, #e54a6b 100%);
}

.btn-mirror:active {
    transform: translateY(-1px);
}

.mirror-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.mirror-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.mirror-feature:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.2);
}

.mirror-feature .feature-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.mirror-feature h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.3rem;
}

.mirror-feature p {
    font-size: 0.9rem;
    color: #8892b0;
    margin: 0;
    line-height: 1.4;
}

/* Таблица характеристик бренда */
.brand-characteristics {
    max-width: 1200px;
    margin: 100px auto 3rem;
    padding: 0 1rem;
}

.brand-characteristics h3 {
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    color: #fff;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.characteristics-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.characteristics-table thead {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.characteristics-table th {
    padding: 1.2rem 1rem;
    text-align: left;
    font-weight: 600;
    color: #fff;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.characteristics-table td {
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: #8892b0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.characteristics-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.05);
    transition: background 0.3s ease;
}

.characteristics-table tbody tr:last-child td {
    border-bottom: none;
}

.characteristics-table td:first-child {
    font-weight: 600;
    color: #fff;
    min-width: 200px;
}

.characteristics-table td:nth-child(2) {
    font-weight: 500;
    color: #667eea;
    min-width: 150px;
}

/* Хедер */
.header {
    background: #141415;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 1rem 0;
    position: relative;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

/* Удален класс .scrolled, так как header больше не sticky */

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo h1 {
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo .subtitle {
    font-size: 0.8rem;
    color: #8892b0;
    display: block;
    margin-top: -5px;
}

.nav {
    display: flex;
    gap: 2rem;
}

/* Мобильное меню */
.mobile-menu-button {
    display: none;
    background: transparent;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    z-index: 101;
    position: relative;
}

.mobile-menu-button:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Мобильные стили */
@media (max-width: 968px) {
    .mobile-menu-button {
        display: block;
        position: relative;
        z-index: 101;
    }
    
    .nav {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background: #141415;
        backdrop-filter: blur(15px);
        padding: 2rem;
        flex-direction: column;
        gap: 1rem;
        display: none;
        z-index: 99;
        border-radius: 0 0 15px 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        transform: translateY(-100%);
        transition: transform 0.3s ease;
    }
    
    .nav.show {
        display: flex;
        transform: translateY(0);
    }
    
    .nav-link {
        padding: 1rem;
        text-align: center;
        border-radius: 10px;
        transition: all 0.3s ease;
        color: #ffffff;
        font-weight: 500;
    }
    
    .nav-link:hover {
        background: rgba(102, 126, 234, 0.2);
        color: #667eea;
    }
    
    .nav-link.active {
        background: rgba(102, 126, 234, 0.3);
        color: #667eea;
    }
    
    .header .container .btn-primary {
        display: inline-block;
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
        margin: 0;
        order: 2;
    }
    
    .mobile-menu-button {
        order: 3;
    }
    
    .header .container {
        display: flex;
        gap: 1rem;
        align-items: center;
    }
    
    .logo {
        order: 1;
        margin-right: auto;
    }
}

.nav-link {
    color: #8892b0;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover,
.nav-link.active {
    color: #667eea;
    transform: translateY(-2px);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

/* Главный баннер */
.hero {
    padding: 6rem 0;
    background: #141415;
    position: static;
    z-index: 1;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="0.5" fill="%23ffffff" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text h2 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.1;
    background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #8892b0;
    margin-bottom: 2rem;
    font-weight: 500;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(5px);
}

.feature-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.feature-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    color: #fff;
    font-weight: 600;
}

.feature-item p {
    color: #8892b0;
    font-size: 0.95rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-large {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.5);
}

.btn-outline {
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-outline:hover {
    background: #667eea;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

/* Промо карточка */
.promo-card {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(245, 87, 108, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 2;
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.3s ease;
}

.promo-card:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.05);
}

.promo-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: shine 3s infinite;
}

@keyframes shine {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(180deg); }
}

.promo-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.3);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.promo-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.promo-amount {
    font-size: 4rem;
    font-weight: 900;
    margin: 1rem 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.promo-card p {
    position: relative;
    z-index: 1;
}

/* Выделение криптовалюты */
.crypto-highlight {
    display: inline-block;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
    padding: 0.3rem 1rem;
    border-radius: 8px;
    font-weight: 900;
    font-size: 1.1em;
    text-shadow: none;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.5);
    animation: pulse 2s infinite;
    position: relative;
    z-index: 1;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(255, 215, 0, 0.5);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(255, 215, 0, 0.8);
    }
}

/* Детали бонуса */
.bonus-details {
    margin: 1.5rem 0;
    position: relative;
    z-index: 1;
}

.bonus-step {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 0.6rem;
    margin: 0.5rem 0;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    font-size: 0.9rem;
}

.step-number {
    background: rgba(255, 255, 255, 0.3);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-text {
    flex: 1;
}

/* Кнопка инструкции в промо-карте */
.btn-instruction {
    display: inline-block;
    background: rgba(255, 255, 255, 0.95);
    color: #f5576c;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.btn-instruction:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
    background: #fff;
}

/* Быстрая информация */
.quick-info {
    padding: 4rem 0;
    background: rgba(26, 32, 64, 0.5);
    position: static;
    z-index: 1;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
}

.info-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.info-card:hover::before {
    left: 100%;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(102, 126, 234, 0.2);
    border-color: rgba(102, 126, 234, 0.3);
}

.info-card h3 {
    font-size: 0.9rem;
    color: #8892b0;
    margin-bottom: 0.5rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-card p {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

/* Обзор секция */
.overview-section {
    padding: 6rem 0;
    position: static;
    z-index: 1;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.overview-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.overview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.overview-card:hover::before {
    transform: scaleX(1);
}

.overview-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.overview-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.overview-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
    font-weight: 600;
}

.overview-card p {
    color: #8892b0;
    line-height: 1.7;
}

/* Категории */
.categories {
    padding: 6rem 0;
    position: static;
    z-index: 1;
    background: rgba(26, 32, 64, 0.2);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.category-card {
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.category-card:hover::before {
    opacity: 1;
}

.category-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

.category-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.category-card h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.category-card p {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.category-providers {
    font-size: 0.85rem;
    opacity: 0.7;
    position: relative;
    z-index: 1;
}

/* Витрина игр */
.games-showcase {
    padding: 6rem 0;
    background: rgba(26, 32, 64, 0.3);
    position: static;
    z-index: 1;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.game-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(102, 126, 234, 0.3);
}

.game-image {
    height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.game-image::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.game-title {
    position: relative;
    z-index: 1;
    font-size: 1.3rem;
    font-weight: 700;
    text-align: center;
    padding: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.game-rating {
    position: relative;
    z-index: 1;
    font-size: 1rem;
    margin-top: 0.5rem;
}

.game-info {
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.3);
}

.game-provider {
    text-align: center;
    font-size: 0.9rem;
    color: #8892b0;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.game-features {
    text-align: center;
    font-size: 0.8rem;
    color: #a0aec0;
    line-height: 1.4;
}

/* Бонусы */
.bonuses {
    padding: 6rem 0;
    position: static;
    z-index: 1;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.bonus-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.bonus-welcome {
    border-color: rgba(102, 126, 234, 0.3);
}

.bonus-cashback {
    border-color: rgba(245, 87, 108, 0.3);
}

.bonus-free {
    border-color: rgba(67, 233, 123, 0.3);
}

.bonus-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.bonus-badge {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.bonus-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.bonus-amount {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 1rem 0;
}

.bonus-card > p {
    color: #8892b0;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.bonus-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.bonus-features li {
    padding: 0.5rem 0;
    color: #8892b0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
}

.bonus-features li:last-child {
    border-bottom: none;
}

.bonus-terms {
    font-size: 0.8rem;
    color: #a0aec0;
    font-style: italic;
    text-align: center;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

/* Программа лояльности */
.loyalty-program {
    background: rgba(255, 255, 255, 0.03);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.loyalty-program h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #fff;
}

.loyalty-levels {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
}

.loyalty-level {
    text-align: center;
    padding: 1.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.loyalty-level:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.level-name {
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.5rem;
}

.level-benefits {
    font-size: 0.8rem;
    color: #8892b0;
}

/* Секция самых выгодных бонусов */
.best-bonuses-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(26, 32, 64, 0.4) 0%, rgba(10, 14, 39, 0.6) 100%);
    position: relative;
    overflow: hidden;
}

.best-bonuses-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="gift" width="30" height="30" patternUnits="userSpaceOnUse"><text x="15" y="15" font-size="20" text-anchor="middle" fill="%23667eea" opacity="0.05">🎁</text></pattern></defs><rect width="100" height="100" fill="url(%23gift)"/></svg>');
    opacity: 0.3;
}

.best-bonuses-header {
    position: relative;
    z-index: 2;
    margin-bottom: 4rem;
}

.best-bonuses-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

/* Большие промо-карточки */
.promo-card-large {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.promo-card-large::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.promo-card-large:hover::before {
    opacity: 1;
}

.promo-card-large:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

/* Цветовые темы для карточек */
.promo-freespins {
    border-color: rgba(147, 51, 234, 0.4);
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.1) 0%, rgba(79, 70, 229, 0.1) 100%);
}

.promo-freespins:hover {
    border-color: rgba(147, 51, 234, 0.7);
    box-shadow: 0 25px 50px rgba(147, 51, 234, 0.3);
}

.promo-freebet {
    border-color: rgba(34, 197, 94, 0.4);
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
}

.promo-freebet:hover {
    border-color: rgba(34, 197, 94, 0.7);
    box-shadow: 0 25px 50px rgba(34, 197, 94, 0.3);
}

.promo-lucky-drive {
    border-color: rgba(239, 68, 68, 0.4);
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(220, 38, 38, 0.1) 100%);
}

.promo-lucky-drive:hover {
    border-color: rgba(239, 68, 68, 0.7);
    box-shadow: 0 25px 50px rgba(239, 68, 68, 0.3);
}

.promo-weekend {
    border-color: rgba(245, 158, 11, 0.4);
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(217, 119, 6, 0.1) 100%);
}

.promo-weekend:hover {
    border-color: rgba(245, 158, 11, 0.7);
    box-shadow: 0 25px 50px rgba(245, 158, 11, 0.3);
}

.promo-card-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.8) 0%, rgba(118, 75, 162, 0.8) 100%);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.promo-card-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: bounce-slow 3s ease-in-out infinite;
}

@keyframes bounce-slow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.promo-card-large h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.promo-card-value {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 1rem 0;
    line-height: 1.2;
}

.promo-card-description {
    color: #8892b0;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.promo-card-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    text-align: left;
}

.promo-card-features li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    margin-bottom: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.promo-card-features li:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
}

.promo-card-features .feature-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.promo-card-features .feature-content {
    flex: 1;
}

.promo-card-features strong {
    color: #fff;
    font-size: 1rem;
    display: block;
    margin-bottom: 0.2rem;
}

.promo-card-features .feature-content {
    color: #8892b0;
    font-size: 0.95rem;
}

.promo-card-cta {
    margin-top: 2rem;
}

.btn-promo {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-promo::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-promo:hover::before {
    left: 100%;
}

.btn-promo:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.5);
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
}

/* Информационный блок */
.best-bonuses-info {
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.info-block {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: rgba(245, 158, 11, 0.1);
    border: 2px solid rgba(245, 158, 11, 0.3);
    border-radius: 15px;
    padding: 2rem;
}

.info-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.info-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.info-content p {
    color: #e0e7ff;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

/* Адаптивность для блока самых выгодных бонусов */
@media (max-width: 968px) {
    .best-bonuses-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .promo-card-large {
        padding: 2rem;
    }
    
    .promo-card-icon {
        font-size: 3rem;
    }
    
    .promo-card-large h3 {
        font-size: 1.5rem;
    }
    
    .promo-card-value {
        font-size: 3rem;
    }
}

@media (max-width: 640px) {
    .best-bonuses-section {
        padding: 4rem 0;
    }
    
    .promo-card-large {
        padding: 1.5rem;
    }
    
    .promo-card-icon {
        font-size: 2.5rem;
    }
    
    .promo-card-large h3 {
        font-size: 1.3rem;
    }
    
    .promo-card-value {
        font-size: 2.5rem;
    }
    
    .promo-card-features li {
        flex-direction: column;
        text-align: center;
        padding: 0.8rem;
    }
    
    .info-block {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .btn-promo {
        width: 100%;
        max-width: 300px;
    }
}

/* Особенности */
.features {
    padding: 6rem 0;
    background: rgba(26, 32, 64, 0.3);
    position: static;
    z-index: 1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(102, 126, 234, 0.2);
}

.feature-icon-large {
    font-size: 4rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    font-weight: 600;
}

.feature-card p {
    color: #8892b0;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

/* Плюсы и минусы */
.pros-cons-section {
    padding: 6rem 0;
    position: static;
    z-index: 1;
}

.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.pros,
.cons {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.pros {
    border-color: rgba(67, 233, 123, 0.3);
}

.cons {
    border-color: rgba(245, 87, 108, 0.3);
}

.pros:hover,
.cons:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.pros h3 {
    color: #43e97b;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.cons h3 {
    color: #f5576c;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.pros ul,
.cons ul {
    list-style: none;
}

.pros li,
.cons li {
    padding: 0.8rem 0;
    color: #8892b0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.95rem;
    line-height: 1.5;
}

.pros li:last-child,
.cons li:last-child {
    border-bottom: none;
}

/* Рейтинг секция */
.rating-section {
    padding: 6rem 0;
    background: rgba(26, 32, 64, 0.2);
    position: static;
    z-index: 1;
}

.rating-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.rating-main {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.rating-score {
    font-size: 5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.rating-stars {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.rating-main h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.rating-main p {
    color: #8892b0;
    line-height: 1.7;
    font-size: 1.05rem;
}

.rating-details h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #fff;
    font-weight: 600;
}

.rating-categories {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.rating-category {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.category-name {
    min-width: 120px;
    font-weight: 500;
    color: #fff;
}

.rating-bar {
    flex: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.rating-fill {
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 4px;
    transition: width 1s ease;
}

.category-score {
    min-width: 60px;
    text-align: right;
    font-weight: 600;
    color: #667eea;
}

.rating-conclusion {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.rating-conclusion h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #fff;
    font-weight: 600;
}

.rating-conclusion p {
    color: #8892b0;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.rating-conclusion strong {
    color: #667eea;
}

.rating-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* Футер */
.footer {
    background: #141415;
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: static;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #667eea;
    font-weight: 600;
}

.footer-section p,
.footer-section ul {
    color: #8892b0;
    font-size: 0.95rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #8892b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #667eea;
}

.warning {
    color: #f5576c;
    font-weight: 600;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #8892b0;
}

/* Анимации при скролле */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Адаптивность */
@media (max-width: 1200px) {
    .games-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .rating-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .category-grid,
    .bonus-grid,
    .features-grid,
    .overview-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .info-cards {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .nav {
        display: none;
    }
    
    .pros-cons {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .loyalty-levels {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 640px) {
    .hero-text h2 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .category-grid,
    .bonus-grid,
    .features-grid,
    .games-grid,
    .footer-content,
    .overview-grid {
        grid-template-columns: 1fr;
    }
    
    .info-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .loyalty-levels {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-buttons,
    .rating-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-large,
    .btn-outline {
        width: 100%;
        max-width: 300px;
    }
    
    .seo-text {
        padding: 0 0.5rem;
        margin-bottom: 2rem;
    }
    
    .seo-text p {
        font-size: 1rem;
        text-align: left;
    }
    
    .mirror-section {
        padding: 0 0.5rem;
        margin-bottom: 2rem;
    }
    
    .mirror-icon {
        font-size: 3rem;
    }
    
    .mirror-header h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .mirror-subtitle {
        font-size: 1rem;
    }
    
    .mirror-content {
        padding: 2rem;
    }
    
    .mirror-text p {
        font-size: 1rem;
        text-align: left;
    }
    
    .mirror-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .mirror-feature {
        padding: 1rem;
    }
    
    .mirror-feature .feature-icon {
        font-size: 2rem;
    }
    
    .btn-mirror {
        padding: 1rem 2rem;
        font-size: 1.1rem;
        width: 100%;
        max-width: 300px;
    }
}

/* Блок скачать приложение */
.download-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(26, 32, 64, 0.8) 0%, rgba(10, 14, 39, 0.9) 100%);
    position: relative;
    overflow: hidden;
}

.download-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(102,126,234,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.download-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.download-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.download-subtitle {
    font-size: 1.2rem;
    color: #8892b0;
    font-weight: 500;
    max-width: 600px;
    margin: 0 auto;
}

.download-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.download-text {
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.download-text p {
    color: #8892b0;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: center;
}

.download-text p:last-child {
    margin-bottom: 0;
}

.download-text strong {
    color: #667eea;
    font-weight: 700;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.download-button-container {
    flex: 1;
    max-width: 300px;
}

.btn-download {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    width: 100%;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-download.android {
    background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%);
    color: white;
}

.btn-download.ios {
    background: linear-gradient(135deg, #2196F3 0%, #1565C0 100%);
    color: white;
}

.btn-download::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: left 0.5s;
}

.btn-download:hover::before {
    left: 100%;
}

.btn-download:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.btn-download.android:hover {
    background: linear-gradient(135deg, #45a049 0%, #2e7d32 100%);
}

.btn-download.ios:hover {
    background: linear-gradient(135deg, #1976d2 0%, #1565c0 100%);
}

.download-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.download-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.download-label {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 0.2rem;
}

.download-platform {
    font-size: 1.3rem;
    font-weight: 700;
}

.download-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.download-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.download-feature:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.2);
}

.download-feature .feature-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.download-feature h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.3rem;
}

.download-feature p {
    font-size: 0.9rem;
    color: #8892b0;
    margin: 0;
    line-height: 1.4;
}

/* Адаптивность для блока скачать */
@media (max-width: 768px) {
    .download-section {
        padding: 4rem 0;
    }
    
    .download-header h2 {
        font-size: 2rem;
    }
    
    .download-subtitle {
        font-size: 1rem;
    }
    
    .download-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .download-button-container {
        max-width: 280px;
    }
    
    .btn-download {
        padding: 1.2rem 1.5rem;
    }
    
    .download-icon {
        font-size: 2rem;
    }
    
    .download-platform {
        font-size: 1.1rem;
    }
    
    .download-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .download-feature {
        padding: 1rem;
    }
    
    .download-feature .feature-icon {
        font-size: 2rem;
    }
    
    .brand-characteristics {
        padding: 0 0.5rem;
        margin-bottom: 2rem;
    }
    
    .brand-characteristics h3 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .characteristics-table {
        font-size: 0.8rem;
    }
    
    .characteristics-table th,
    .characteristics-table td {
        padding: 0.8rem 0.5rem;
    }
    
    .characteristics-table td:first-child {
        min-width: 120px;
    }
    
    .characteristics-table td:nth-child(2) {
        min-width: 100px;
    }
}

/* Блок инструкции по криптовалюте */
.crypto-guide-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.95) 0%, rgba(26, 32, 64, 0.95) 100%);
    position: relative;
    overflow: hidden;
}

.crypto-guide-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="crypto" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1.5" fill="%23FFD700" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23crypto)"/></svg>');
    opacity: 0.5;
}

.crypto-guide-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.crypto-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.crypto-guide-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.crypto-subtitle {
    font-size: 1.3rem;
    color: #8892b0;
    font-weight: 500;
    max-width: 700px;
    margin: 0 auto;
}

.crypto-guide-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.guide-intro {
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 3rem;
    text-align: center;
}

.guide-intro p {
    color: #e0e7ff;
    font-size: 1.15rem;
    line-height: 1.8;
    margin: 0;
}

/* Шаги инструкции */
.guide-step {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.guide-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 215, 0, 0.3);
}

.highlight-step {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 165, 0, 0.15) 100%);
    border: 2px solid rgba(255, 215, 0, 0.5);
}

.step-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.step-number-large {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.highlight-step .step-number-large {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
    animation: pulse-gold 2s infinite;
}

@keyframes pulse-gold {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 12px 30px rgba(255, 215, 0, 0.6);
    }
}

.step-title {
    flex: 1;
}

.step-title h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.3rem;
}

.step-title p {
    color: #8892b0;
    font-size: 1.05rem;
    margin: 0;
}

.step-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2rem;
    align-items: start;
}

.step-instructions {
    padding-right: 1rem;
}

.instruction-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.instruction-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.2rem;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.instruction-list li:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateX(5px);
    border-color: rgba(102, 126, 234, 0.3);
}

.instruction-icon {
    font-size: 2rem;
    flex-shrink: 0;
	margin:0 auto;
}

.instruction-text {
    flex: 1;
}

.instruction-text strong {
    color: #fff;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.3rem;
}

.instruction-text p {
    color: #8892b0;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.step-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder {
    background: rgba(255, 255, 255, 0.03);
    border: 2px dashed rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 3rem 2rem;
    text-align: center;
    width: 100%;
    transition: all 0.3s ease;
}

.image-placeholder:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(102, 126, 234, 0.4);
}

.placeholder-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.bonus-highlight .placeholder-icon {
    font-size: 5rem;
    opacity: 1;
    animation: bounce 1s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.image-placeholder p {
    color: #8892b0;
    font-size: 0.95rem;
    margin: 0;
}

.bonus-highlight {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 165, 0, 0.15) 100%);
    border: 2px solid rgba(255, 215, 0, 0.5);
}

.bonus-highlight p {
    color: #FFD700;
    font-weight: 700;
    font-size: 1.1rem;
}

/* Советы */
.crypto-tips {
    background: rgba(102, 126, 234, 0.1);
    border: 2px solid rgba(102, 126, 234, 0.3);
    border-radius: 20px;
    padding: 3rem;
    margin: 3rem 0;
}

.crypto-tips h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 2rem;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.tip-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.tip-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.2);
}

.tip-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.tip-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.5rem;
}

.tip-card p {
    color: #8892b0;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Преимущества криптовалюты */
.crypto-advantages {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 3rem;
    margin: 3rem 0;
}

.crypto-advantages h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 2.5rem;
}

.advantages-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.advantage-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.advantage-item:hover {
    transform: translateX(5px);
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.3);
}

.advantage-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.advantage-text h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.3rem;
}

.advantage-text p {
    color: #8892b0;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Призыв к действию */
.crypto-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    margin-top: 3rem;
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
}

.cta-content h3 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary,
.btn-cta-secondary {
    padding: 1.2rem 2.5rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-cta-primary {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.btn-cta-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.6);
}

.btn-cta-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

/* Адаптивность для блока криптовалюты */
@media (max-width: 968px) {
    .crypto-guide-header h2 {
        font-size: 2.2rem;
    }
    
    .crypto-subtitle {
        font-size: 1.1rem;
    }
    
    .step-content {
        grid-template-columns: 1fr;
    }
    
    .step-image {
        order: -1;
    }
    
    .tips-grid,
    .advantages-list {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        max-width: 350px;
    }
}

@media (max-width: 640px) {
    .crypto-guide-section {
        padding: 4rem 0;
    }
    
    .crypto-icon {
        font-size: 3rem;
    }
    
    .crypto-guide-header h2 {
        font-size: 1.8rem;
    }
    
    .crypto-subtitle {
        font-size: 1rem;
    }
    
    .guide-step {
        padding: 1.5rem;
    }
    
    .step-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .step-number-large {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .step-title h3 {
        font-size: 1.4rem;
    }
    
    .step-title p {
        font-size: 0.95rem;
    }
    
    .instruction-list li {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }
    
    .instruction-icon {
        font-size: 2.5rem;
    }
    
    .crypto-tips,
    .crypto-advantages {
        padding: 2rem 1.5rem;
    }
    
    .crypto-cta {
        padding: 2rem 1.5rem;
    }
    
    .cta-content h3 {
        font-size: 1.6rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
}

/* FAQ Секция */
.faq-section {
    padding: 6rem 0;
    background: #141415;
}

.faq-content {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(102, 126, 234, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.faq-item.active {
    background: rgba(102, 126, 234, 0.1);
    border-color: rgba(102, 126, 234, 0.5);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    flex: 1;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: bold;
    color: #667eea;
    transition: all 0.3s ease;
    min-width: 30px;
    text-align: center;
}

.faq-item.active .faq-icon {
    color: #ffffff;
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 2rem 1.5rem;
    display: none;
    animation: fadeIn 0.3s ease;
}

.faq-answer p {
    color: #8892b0;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Адаптивность для FAQ */
@media (max-width: 768px) {
    .faq-section {
        padding: 4rem 0;
    }
    
    .faq-question {
        padding: 1rem 1.5rem;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
    }
    
    .faq-icon {
        font-size: 1.3rem;
    }
    
    .faq-answer {
        padding: 0 1.5rem 1rem;
    }
    
    .faq-answer p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .faq-question {
        padding: 1rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 0 1rem 1rem;
    }
}

/* Кнопка "Вверх" */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 99999 !important;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    pointer-events: auto;
}

.scroll-to-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.scroll-to-top:hover::before {
    opacity: 1;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    animation: slideInUp 0.5s ease;
}

@keyframes slideInUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.scroll-to-top:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.6);
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
    border-color: rgba(255, 255, 255, 0.4);
}

.scroll-to-top:active {
    transform: translateY(-2px) scale(0.98);
}

.arrow-icon {
    width: 28px;
    height: 28px;
    position: relative;
    z-index: 1;
    animation: arrowBounce 2s ease-in-out infinite;
}

@keyframes arrowBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.scroll-to-top:hover .arrow-icon {
    animation: arrowBounceHover 0.6s ease-in-out infinite;
}

@keyframes arrowBounceHover {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* Адаптивность для кнопки "Вверх" */
@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    
    .arrow-icon {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 480px) {
    .scroll-to-top {
        bottom: 15px;
        right: 15px;
        width: 46px;
        height: 46px;
    }
    
    .arrow-icon {
        width: 22px;
        height: 22px;
    }
}
.overview-card.fade-in.visible {
    text-align: center;
}