/* Общие стили */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    color: #333;
}

.container {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

/* Карточка бота */
.bot-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bot-card:hover {
    /* transform: translateY(-5px); */
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* Аватарка бота */
.bot-avatar {
    margin-bottom: 24px;
}

.bot-avatar img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.bot-avatar img:hover {
    transform: scale(1.05);
}

/* Название бота */
.bot-name {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 12px;
    line-height: 1.2;
}

/* Описание бота */
.bot-description {
    font-size: 16px;
    color: #7f8c8d;
    line-height: 1.5;
    margin-bottom: 32px;
    font-weight: 400;
}

/* Кнопка "Открыть чат" */
.open-chat-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #0088cc 0%, #00a8ff 100%);
    color: white;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 136, 204, 0.3);
    margin-bottom: 40px;
}

.open-chat-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(0, 136, 204, 0.4);
    background: linear-gradient(135deg, #0077b3 0%, #0099e6 100%);
}

.open-chat-btn .icon {
    width: 20px;
    height: 20px;
}

/* Разделительная линия */
.divider {
    display: flex;
    align-items: center;
    margin-bottom: 32px;
    gap: 16px;
}

.divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ddd, transparent);
}

.divider-text {
    font-size: 14px;
    color: #95a5a6;
    font-weight: 500;
    white-space: nowrap;
}

/* Кнопки магазинов */
.store-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-direction: column;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    color: #333;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 12px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    min-width: 140px;
    justify-content: center;
}

.store-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-color: #007bff;
}

.store-btn .icon {
    width: 24px;
    height: 24px;
}

.store-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.store-text {
    font-size: 12px;
    color: #6c757d;
    line-height: 1;
}

.store-name {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    line-height: 1;
}

/* Специальные цвета для магазинов */
.apple-store:hover {
    border-color: #000;
    background: #f8f9fa;
}

.apple-store .icon {
    color: #000;
}

.google-play:hover {
    border-color: #34a853;
    background: #f8f9fa;
}

.google-play .icon {
    color: #34a853;
}

/* Адаптивность */
@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .bot-card {
        padding: 30px 20px;
    }
    
    .bot-name {
        font-size: 24px;
    }
    
    .bot-description {
        font-size: 15px;
    }
    
    .open-chat-btn {
        padding: 14px 28px;
        font-size: 16px;
    }
    
    .store-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .store-btn {
        min-width: auto;
        width: 100%;
    }
}

/* Анимации */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bot-card {
    animation: fadeInUp 0.6s ease-out;
}

.bot-avatar {
    animation: fadeInUp 0.8s ease-out;
}

.bot-name {
    animation: fadeInUp 1s ease-out;
}

.bot-description {
    animation: fadeInUp 1.2s ease-out;
}

.open-chat-btn {
    animation: fadeInUp 1.4s ease-out;
}

.divider {
    animation: fadeInUp 1.6s ease-out;
}

.store-buttons {
    animation: fadeInUp 1.8s ease-out;
}
