/* Theme Variables & Font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
    --theme-red: #E4002B;
    --theme-red-hover: #C70025;
    --theme-red-light: rgba(228, 0, 43, 0.1);
    --theme-dark: #222222;
    --theme-gray: #666666;
    --theme-gray-light: #999999;
    --theme-bg: #F5F5F5;
    --theme-white: #FFFFFF;
    --theme-border: #E0E0E0;
    --theme-green: #00A884;
    --theme-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    --theme-radius: 12px;
    --theme-radius-sm: 8px;
}

html, body {
    overflow-x: hidden;
    max-width: 100vw;
}
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}
