/* Block mobile actions */
html, body, * {
    -webkit-user-select: none; /* Chrome / Android */
    -ms-user-select: none; /* IE/Edge */
    user-select: none; /* Standard */
    -webkit-touch-callout: none; /* iOS */
}

img, a {
    -webkit-user-drag: none;
}

/* Reset */
html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    overflow: hidden;
    font-family: sans-serif;
    background: #0d6efd;
}

:root {
    --splash-bg: #05152c;
    --app-bg: #010c1c;
    --fg: #e8eef6;
    --muted: #9fb3c8;
    --primary: #37b679;
    --primary-hover: #2fa06a;
    --card: #111c29;
    --border: #1f2a37;
}

body {
    background: var(--app-bg);
    color: #fff;
    margin: 0;
    overflow: hidden;
}
