/* Стили для кнопок скачивания */
.download-buttons-container {
    display: flex;
    flex-direction: column;
    gap: 45px;
    margin: 45px 0;
    width: 100%;
    max-width: 400px;
}

/* Общие стили для всех кнопок скачивания */
.download-button {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    cursor: pointer;
    transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
    user-select: none;
    padding: 0 20px;
}

/* Кнопка RuStore - главная, самая крупная */
.rustore-button {
    background: rgb(255, 190, 23);
    box-shadow: 0px 20px 100px 0px rgba(255, 190, 23, 0.25), inset 0px 4px 0px 0px rgba(255, 255, 255, 0.5);
    width: 100%;
    height: 80px;
}

.rustore-button:hover {
    background: rgb(255, 220, 100);
    box-shadow: 0px 20px 100px rgba(255, 190, 23, 0.35), inset 0px 4px 0px rgba(255, 255, 255, 0.7);
    transform: scale(1.05);
}

.rustore-button .download-text {
    font-family: 'DIN Pro', sans-serif;
    font-size: 25px;
    font-weight: 900;
    font-style: italic;
    line-height: 32px;
    color: #000;
}

/* Кнопка Google Play - средняя */
.googleplay-button {
    background: rgb(0, 119, 255);
    box-shadow: 0px 15px 75px 0px rgba(0, 119, 255, 0.25), inset 0px 4px 0px 0px rgba(255, 255, 255, 0.5);
    width: 95%;
    height: 70px;
    margin-left: auto;
    margin-right: auto;
}

.googleplay-button:hover {
    background: rgb(0, 162, 255);
    box-shadow: 0px 15px 75px rgba(0, 119, 255, 0.35), inset 0px 4px 0px rgba(255, 255, 255, 0.7);
    transform: scale(1.05);
}

.googleplay-button .download-text {
    font-family: 'DIN Pro', sans-serif;
    font-size: 22px;
    font-weight: 900;
    font-style: italic;
    line-height: 30px;
    color: #FFF;
}

/* Кнопка APK - маленькая */
.apk-button {
    background: rgba(14, 19, 27, 0.8);
    backdrop-filter: blur(25px);
    box-shadow: 0px 10px 50px 0px rgba(14, 19, 27, 0.25), inset 0px 2px 0px 0px rgba(255, 255, 255, 0.1);
    width: 85%;
    height: 60px;
    margin-left: auto;
    margin-right: auto;
}

.apk-button:hover {
    background: rgba(20, 30, 40, 0.9);
    box-shadow: 0px 10px 50px rgba(14, 19, 27, 0.35), inset 0px 2px 0px rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.apk-button .download-text {
    font-family: 'DIN Pro', sans-serif;
    font-size: 20px;
    font-weight: 800;
    font-style: italic;
    line-height: 28px;
    color: #FFF;
}

/* Стили для иконок */
.download-icon {
    margin-right: 10px;
    width: 25px;
    height: 25px;
}

/* Адаптивные стили */
@media (max-width: 768px) {
    .download-buttons-container {
        max-width: 100%;
    }
    
    .rustore-button .download-text {
        font-size: 22px;
    }
    
    .googleplay-button .download-text {
        font-size: 20px;
    }
    
    .apk-button .download-text {
        font-size: 18px;
    }
}

/* Состояние скрытия - для управления видимостью кнопок */
.hidden {
    display: none !important;
}
