/* Custom CSS for Prototype */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.no-scrollbar {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

.glass-effect {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.mobile-frame {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 12px solid #1a1a1a;
    border-radius: 40px;
    overflow: hidden;
    position: relative;
    background: #fff;
}

/* Global scrollbar hiding for mobile pages */
/* Hide scrollbar for WebKit browsers (Chrome, Safari, Edge) */
body::-webkit-scrollbar,
*::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for Firefox */
body,
* {
    scrollbar-width: none;
}

/* Hide scrollbar for IE and Edge (legacy) */
body,
* {
    -ms-overflow-style: none;
}