/*!****************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ../../node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[2]!../../node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[3]!./src/styles/globals.css ***!
  \****************************************************************************************************************************************************************************************************************************************************************************/
:root {
  color-scheme: dark;

  --bg: #0a0b0d;
  --surface: #0f1115;
  --surface-2: #141821;
  --border: rgba(255, 255, 255, 0.08);
  --muted: rgba(255, 255, 255, 0.72);
  --text: rgba(255, 255, 255, 0.92);

  --accent: #9ae600;
  --accent-ink: #061000;

  --shadow: 0 12px 40px rgba(0, 0, 0, 0.55);
  --radius: 14px;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji",
    "Segoe UI Emoji";
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(154, 230, 0, 0.35);
  background: rgba(154, 230, 0, 0.12);
  color: var(--text);
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.btnPrimary {
  background: var(--accent);
  color: var(--accent-ink);
  border-color: rgba(154, 230, 0, 0.7);
}

.muted {
  color: var(--muted);
}

