/* CSS Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: "Inter", sans-serif;
  font-size: 100%;
}

/* CSS Variables */
body {
  --bg0: #030817;
  --bg1: #0b1324;
  --card: rgba(10, 18, 35, 0.72);
  --stroke: rgba(255, 255, 255, 0.08);
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.7);
  --muted2: rgba(255, 255, 255, 0.45);
  --accent: #1160fb;
  --accent2: #4180fc;
  --green: #23c55e;
  --orange: #fb6a2a;
  font-family: "Inter", sans-serif;
  overflow-x: clip;
  max-width: 100%;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6,
.preit-question {
  font-family: "Sora", sans-serif;
}

/* Media Elements */
img,
video,
iframe {
  max-width: 100%;
  height: auto;
}

/* Base Wrapper Styles */
.oqsha-wrap {
  color: var(--text);
  background: rgba(248, 250, 252, 1);
  min-height: auto;
  padding: clamp(12px, 3vw, 24px);
  font-family: "Inter", sans-serif;
  overflow-x: clip;
}
