/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Vazirmatn:wght@400;700;900&display=swap');

/* System Variables */
:root {
    --bg-dark: #0F172A;
    --card-dark: #1E293B;
    --accent-teal: #2DD4BF;
    --accent-rose: #FB7185;
}

/* Global Reset & Typography */
body { 
    font-family: 'Vazirmatn', sans-serif; 
    background-color: var(--bg-dark); 
    color: #F8FAFC;
    overflow-x: hidden;
    -webkit-tap-highlight-color: transparent;
}

/* V5 Components */
.hngry-card { 
    background: var(--card-dark); 
    border-radius: 2rem; 
    border: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hngry-card:hover {
    border-color: var(--accent-teal);
}

/* Utilities */
.no-scrollbar::-webkit-scrollbar { display: none; }

.custom-scrollbar::-webkit-scrollbar { width: 4px; }
.custom-scrollbar::-webkit-scrollbar-thumb { background: #334155; border-radius: 10px; }

/* HTMX Indicators */
.htmx-indicator { display: none; }
.htmx-request .htmx-indicator, 
.htmx-request.htmx-indicator { display: block; }

/* Responsive Adjustments */
@media (min-width: 1024px) {
    body { padding-left: 16rem; } /* Space for sidebar */
}