:root {
    --primary: #FF4D94;
    --primary-dark: #E04484;
    --secondary: #6C63FF;
    --dark: #1A1A2E;
    --light: #F8F9FA;
    --gray: #6C757D;
    --success: #28A745;
    --danger: #DC3545;
    --gradient: linear-gradient(135deg, #FF4D94 0%, #6C63FF 100%);
    --gradient-hover: linear-gradient(135deg, #E04484 0%, #5A52D5 100%);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.15);
    --container-padding: 20px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #0F0F23 0%, #1A1A2E 100%);
    color: var(--light);
    line-height: 1.6;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.03)"/></svg>');
    z-index: -1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Шапка */
header {
    padding: 40px 0 20px;
    position: relative;
    z-index: 100;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.logo-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    box-shadow: var(--shadow);
    flex-shrink: 0;
}

.logo-text {
    font-family: 'Montserrat', sans-serif;
}

.logo-text h1 {
    font-size: 36px;
    font-weight: 700;
    background: linear-gradient(to right, #FF4D94, #6C63FF);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 5px;
    line-height: 1.2;
}

.logo-text p {
    font-size: 16px;
    color: #B0B7C3;
    font-weight: 400;
}

/* Герой секция */
.hero {
    padding: 40px 0 80px;
    text-align: center;
}

.hero h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
    background: linear-gradient(to right, #FF4D94, #6C63FF);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero p {
    font-size: 20px;
    color: #B0B7C3;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

/* Статистика */
.stats-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(255, 77, 148, 0.15);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 77, 148, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: var(--primary);
}

.stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(to right, #FF4D94, #6C63FF);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
}

.stat-label {
    font-size: 15px;
    color: #B0B7C3;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Бот статус */
.bot-status {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    margin-top: 15px;
}

.status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.status-dot.online {
    background: var(--success);
    box-shadow: 0 0 12px var(--success);
}

.status-dot.offline {
    background: var(--danger);
    box-shadow: 0 0 12px var(--danger);
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

/* Кнопки */
.buttons-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 60px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px 30px;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    outline: none;
    text-align: center;
    min-height: 64px;
}

.btn-primary {
    background: var(--gradient);
    color: white;
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    background: var(--gradient-hover);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary);
    transform: translateY(-3px);
}

.btn-icon {
    font-size: 20px;
    flex-shrink: 0;
}

/* Особенности */
.features {
    padding: 80px 0;
}

.features h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
    background: linear-gradient(to right, #FF4D94, #6C63FF);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    min-height: 280px;
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(255, 77, 148, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 77, 148, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 24px;
    color: var(--primary);
    flex-shrink: 0;
}

.feature-card h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    margin-bottom: 15px;
    color: white;
    line-height: 1.3;
}

.feature-card p {
    color: #B0B7C3;
    font-size: 16px;
    line-height: 1.5;
    flex-grow: 1;
}

/* Футер */
footer {
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 60px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: #B0B7C3;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
}

.footer-links a:hover {
    color: var(--primary);
}

.copyright {
    text-align: center;
    color: #6C757D;
    font-size: 14px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    line-height: 1.6;
}

/* SEO секции */
.seo-section {
    padding: 80px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin: 60px 0;
}

.seo-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    margin-bottom: 40px;
    color: white;
    text-align: center;
}

.seo-content {
    max-width: 900px;
    margin: 0 auto;
    color: #B0B7C3;
    line-height: 1.7;
    font-size: 16px;
}

.seo-content p {
    margin-bottom: 25px;
}

.seo-highlight {
    color: var(--primary);
    font-weight: 500;
}

/* FAQ секция */
.faq-section {
    padding: 80px 0;
}

.faq-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    margin-bottom: 50px;
    text-align: center;
    color: white;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 25px;
    border-left: 4px solid var(--primary);
}

.faq-item h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    margin-bottom: 15px;
    color: white;
}

.faq-item p {
    color: #B0B7C3;
    font-size: 15px;
    line-height: 1.6;
}

/* Мобильная адаптация */
@media (max-width: 1200px) {
    .container {
        max-width: 1000px;
    }
    
    .stats-container,
    .features-grid {
        gap: 25px;
    }
}

@media (max-width: 992px) {
    .hero h2 {
        font-size: 40px;
    }
    
    .stats-container,
    .buttons-container,
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    :root {
        --container-padding: 20px;
    }
    
    header {
        padding: 30px 0 15px;
    }
    
    .logo-container {
        justify-content: center;
        text-align: center;
        gap: 15px;
        margin-bottom: 25px;
    }
    
    .logo-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
    
    .logo-text h1 {
        font-size: 30px;
    }
    
    .hero {
        padding: 30px 0 50px;
    }
    
    .hero h2 {
        font-size: 32px;
    }
    
    .hero p {
        font-size: 18px;
        margin-bottom: 40px;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .stat-card {
        padding: 25px;
        min-height: 200px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .buttons-container {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 40px;
    }
    
    .btn {
        padding: 18px 25px;
        font-size: 16px;
        min-height: 60px;
    }
    
    .features {
        padding: 50px 0;
    }
    
    .features h3 {
        font-size: 30px;
        margin-bottom: 40px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card {
        min-height: 250px;
        padding: 25px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 20px;
    }
    
    .seo-section {
        padding: 50px 0;
        margin: 40px 0;
    }
    
    .seo-section h2 {
        font-size: 28px;
    }
    
    .faq-section {
        padding: 50px 0;
    }
    
    .faq-section h2 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .logo-text h1 {
        font-size: 26px;
    }
    
    .hero h2 {
        font-size: 28px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .features h3 {
        font-size: 26px;
    }
    
    .feature-card {
        min-height: auto;
    }
}

/* Анимации */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.8s ease-out;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }

/* Контент для SEO */
.hidden-seo {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Анимация загрузки */
.loading {
    opacity: 0.7;
}

/* Скролл бар */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}