.app-minimal-section {
    padding: 80px 20px;
    background: #0a0a0a;
    display: flex;
    justify-content: center;
}

.app-container {
    width: 100%;
    max-width: 1000px;
}

/* Основная карточка */
.app-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 40px;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    position: relative;
}

.app-tag {
    display: inline-block;
    color: #D4FC1E;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.app-headline {
    font-size: 52px;
    color: #fff;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 20px;
}

.app-headline span {
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
}

.app-subtext {
    color: rgba(255, 255, 255, 0.5);
    font-size: 16px;
    margin-bottom: 40px;
    max-width: 350px;
}

/* Минималистичная кнопка-ссылка */
.download-link {
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    color: #fff;
    transition: 0.3s;
}

.download-link-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid #D4FC1E;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D4FC1E;
    font-size: 20px;
    transition: 0.3s;
}

.download-link-label .ver {
    display: block;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    margin-bottom: 4px;
}

.download-link-label .btn-name {
    font-size: 20px;
    font-weight: 700;
}

/* Hover-эффект */
.download-link:hover .download-link-icon {
    background: #D4FC1E;
    color: #000;
    box-shadow: 0 0 20px rgba(212, 252, 30, 0.4);
}

.download-link:hover .btn-name {
    color: #D4FC1E;
}

/* Визуальная часть */
.app-visual-content {
    position: relative;
}

.floating-phone {
    width: 280px;
    position: relative;
    z-index: 2;
    animation: simpleFloat 4s infinite ease-in-out;
}

.circle-blur {
    position: absolute;
    width: 200px;
    height: 200px;
    background: #D4FC1E;
    filter: blur(100px);
    opacity: 0.1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@keyframes simpleFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Адаптивность */
@media (max-width: 900px) {
    .app-card {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }
    .app-subtext { margin: 0 auto 30px; }
    .download-link { justify-content: center; }
    .floating-phone { width: 220px; margin-top: 40px; }
}




/* Контейнер визуализации */
.app-visual-content {
    position: relative;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Внешний корпус (стальная рамка) */
.phone-frame {
    width: 280px;
    height: 560px;
    background: #1a1a1a; /* Цвет торца телефона */
    border-radius: 50px;
    position: relative;
    padding: 8px; /* Толщина металлической рамки */
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.7),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    animation: floatingDevice 6s infinite ease-in-out;
    z-index: 2;
}

/* Внутренняя черная рамка экрана */
.phone-inner-border {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 42px;
    position: relative;
    overflow: hidden;
    border: 2px solid #000;
}


/* Область экрана с вашим изображением */
.phone-screen {
    width: 100%;
    height: 100%;
    border-radius: 40px;
    overflow: hidden;
}

.ui-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Изображение аккуратно заполняет экран */
}

/* Блик на стекле */
.phone-glass-glare {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        125deg, 
        rgba(255,255,255,0.1) 0%, 
        rgba(255,255,255,0) 40%, 
        rgba(255,255,255,0.05) 50%, 
        rgba(255,255,255,0) 100%
    );
    pointer-events: none;
    z-index: 5;
}

/* Физические кнопки на корпусе */
.phone-btn {
    position: absolute;
    background: #1a1a1a;
    border-radius: 2px;
}
.phone-btn-power {
    width: 3px;
    height: 40px;
    right: -3px;
    top: 100px;
}
.phone-btn-vol {
    width: 3px;
    height: 80px;
    left: -3px;
    top: 120px;
    box-shadow: 0 45px 0 #1a1a1a; /* Эмуляция двух кнопок громкости одним дивом */
}

/* Анимация левитации */
@keyframes floatingDevice {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(1deg); }
}

/* Фоновое свечение за телефоном */
.circle-blur {
    position: absolute;
    width: 350px;
    height: 350px;
    background: #D4FC1E;
    filter: blur(100px);
    opacity: 0.12;
    z-index: 1;
}

/* Адаптивность */
@media (max-width: 900px) {
    .phone-frame {
        width: 240px;
        height: 480px;
        border-radius: 40px;
    }
    .phone-inner-border { border-radius: 32px; }
}