.main-content {
    min-height: 100vh;
    transform: translateY(50px);
    opacity: 0;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.8s ease;
    transition-delay: 0.2s;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    /* Allow all touch gestures for better mobile scroll */
    touch-action: auto;
}

.main-content.slide-in {
    transform: translateY(0);
    opacity: 1;
}

* {
    scrollbar-width: none;
}

*::-webkit-scrollbar {
    display: none;
    /* Safari and Chrome */
    width: 0;
    height: 0;
}


.content-section {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    box-sizing: border-box;
    overflow-y: hidden;
    /* Initially hidden, will be controlled by JS */
    overflow-x: hidden;
    overscroll-behavior-y: auto;
    /* Allow natural bounce scroll for better mobile UX */
}

.content-section.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.content-section.exit-left {
    opacity: 0;
    transform: translateX(-100px);
}

/* Show indicator after page loads */
.main-content.slide-in {
    opacity: 1;
}

@media (max-width: 768px) {
    .content-section {
        transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        transform: translateY(30px);
    }

    .content-section.active {
        transform: translateY(0);
    }

    .content-section.exit-left {
        transform: translateY(-30px);
    }

    .section-content {
        max-height: 100%;
        padding-top: 50vh;
    }
}

.section-content {
    max-width: 1200px;
    width: 100%;
    height: 100%;
    padding: 0 20px;
    text-align: center;
    margin: 0 auto;
    box-sizing: border-box;
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}