/*
============================================================
Club OS Studio
Datei: base.css
Zweck: Globale Basisstile
Phase: 13.3 - Studio Shell
============================================================
*/

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--studio-bg);
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;

  color: var(--studio-text);
  background:
    radial-gradient(
      circle at top right,
      rgba(124, 77, 255, 0.16),
      transparent 32%
    ),
    var(--studio-bg);

  font-family:
    Inter,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

  line-height: 1.5;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.hidden {
  display: none !important;
}
