/* Main CSS Variables and Utilities */
:root {
    font-family: 'Gothic A1', sans-serif;
}
body {
    background-color: #f4f5f9;
    -webkit-tap-highlight-color: transparent;
}
/* Hide scrollbar for clean app look */
.scrollbar-hide::-webkit-scrollbar {
    display: none;
}
.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
/* Liquid Glass Base */
.glass-panel {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 8px 30px rgba(0,0,0,0.04), inset 0 1px 2px rgba(255,255,255,1);
}
/* Line clamp utility */
.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
