/* Global PWA styles */
:root {
    /* Colors - RGB values for flexible alpha usage */
    --slate: 148, 163, 184;
    --slate-dark: 15, 23, 42;
    --slate-darker: 30, 41, 59;
    --blue: 59, 130, 246;
    --red: 239, 68, 68;
    --green: 34, 197, 94;
    --yellow: 241, 214, 53;

    /* Spacing */
    --spacing-xs: 0.35rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 0.75rem;
    --spacing-lg: 1.25rem;
    --spacing-xl: 1.5rem;

    /* Font sizes */
    --font-sm: 0.8rem;
    --font-base: 1rem;
    --font-lg: 1.5rem;
    --font-xl: 2rem;

    /* Border radius */
    --radius-sm: 10px;
    --radius-md: 12px;
    --radius-lg: 24px;
    --radius-pill: 999px;

    /* Opacity */
    --opacity-default: 0.18;
    --opacity-hover: 0.33;

    /* Transitions - all 150ms */
    --transition-base: 150ms ease;
    --transition-interactive: background 150ms ease, color 150ms ease;
    --transition-transform: background 150ms ease, transform 150ms ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow: hidden;
    position: absolute;
    width: 100%;
    height: 100%;
}

/* body {
    touch-action: none;
    overscroll-behavior: none;
} */

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: #fff;
    min-height: 100vh;
    height: 100vh;
    height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    background: linear-gradient(180deg, rgba(4, 10, 24, 1) 0%, rgba(0, 0, 0, 1) 100%);
    z-index: -1;
    pointer-events: none;
}

/* PWA-specific styles */
@media (display-mode: standalone) {
}
