/* Mobile Scroll Fix */
@media screen and (max-width: 768px) {
    /* Reset HTML/Body */
    html {
        height: 100%;
        overflow-x: hidden;
        overflow-y: auto;
    }
    
    body {
        height: auto !important;
        min-height: 100vh;
        overflow-x: hidden !important;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch;
        position: relative !important;
        width: 100%;
    }
    
    /* Remove duplicate scrollbars */
    .animated-bg {
        min-height: 100vh;
        height: auto !important;
        overflow: visible !important;
        position: relative !important;
    }
    
    /* Fix containers */
    .container,
    .max-w-5xl {
        overflow: visible !important;
        height: auto !important;
    }
    
    /* Fix navbar overlap */
    .profile-content {
        padding-top: 0 !important;
    }
    
    /* Glass effect margin on mobile */
    .glass-effect.rounded-3xl {
        margin-top: 120px !important;
    }
    
    /* Background elements must be fixed */
    .gradient-mesh,
    .stars,
    .orb {
        position: fixed !important;
    }
}