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

body {
    font-family: 'Inter', sans-serif;
    background-color: #1a237e; /* Тёмно-синий фон как на изображении */
    color: white;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    width: 100%;
    max-width: 430px;
    padding: 1.25rem 1rem;
}

.content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    width: 100%;
}

/* Логотип как изображение */
.logo-image {
    max-width: 300px;
    height: auto;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* Карточка с адресами магазинов */
.store-locations {
    width: 100%;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.city-block {
    background-color: rgba(255, 255, 255, 0.05);
    color: white;
    border-radius: 22px;
    padding: 1.2rem 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.city-block + .city-block {
    margin-top: 0;
}

.city-title {
    font-size: 1.6rem;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 0.65rem;
    color: white;
}

.address-list {
    list-style: disc;
    padding-left: 1.7rem;
}

.address-list li {
    font-size: 1.08rem;
    line-height: 1.25;
    color: rgba(255, 255, 255, 0.9);
}

.address-list li + li {
    margin-top: 0.3rem;
}

.app-download-section {
    margin-top: 0.5rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.85rem;
    padding-top: 1.25rem;
}

.download-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Контейнер для кнопок */
.download-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
}

/* Кнопки приложений */
.app-button {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 160px;
    height: 60px;
}

.app-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Кнопка App Store */
.app-store {
    background-color: white;
    border: 2px solid #000;
    color: #000;
}

.app-store:hover {
    background-color: #f5f5f5;
}

/* Кнопка Google Play */
.google-play {
    background-color: #000;
    border: 2px solid white;
    color: white;
}

.google-play:hover {
    background-color: #333;
}

/* Иконка приложения */
.app-icon {
    margin-right: 0.75rem;
    display: flex;
    align-items: center;
}

.app-icon svg {
    width: 24px;
    height: 24px;
}

/* Текст на кнопках */
.app-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.app-text-small {
    font-size: 0.7rem;
    font-weight: 400;
    margin-bottom: 0.1rem;
}

.app-text-large {
    font-size: 1rem;
    font-weight: 600;
}

/* Адаптивный дизайн */
@media (max-width: 480px) {
    .container {
        padding: 1rem;
    }
    
    .logo-image {
        max-width: 250px;
    }
    
    .download-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .store-locations {
        gap: 0.85rem;
    }

    .city-block {
        padding: 1rem;
        border-radius: 18px;
    }

    .city-title {
        font-size: 1.45rem;
    }

    .address-list li {
        font-size: 1.08rem;
    }
    
    .app-button {
        width: 100%;
        max-width: 200px;
        justify-content: center;
    }
    
    .download-text {
        font-size: 1rem;
    }
}

@media (max-width: 320px) {
    .logo-image {
        max-width: 200px;
    }

    .city-title {
        font-size: 1.25rem;
    }

    .address-list {
        padding-left: 1.3rem;
    }

    .address-list li {
        font-size: 0.96rem;
    }
    
    .app-button {
        height: 50px;
        padding: 0.5rem 0.75rem;
    }
    
    .app-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .app-text-small {
        font-size: 0.6rem;
    }
    
    .app-text-large {
        font-size: 0.9rem;
    }
}
