        
.intro-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.intro-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translate(0, 0);
    transition: transform 2s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.8s ease;
}

.intro-container.fade-in {
    opacity: 1;
}

.main-content {
    opacity: 0;
    transition: opacity 1s ease;

    /* Центрирование по центру экрана */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 20;
    padding: 1.5rem 0 2rem 0 ;
}


.main-content.fade-in {
    opacity: 1;
    pointer-events: auto; /* Теперь можно кликать по кнопкам */
}