:root {
  --color-bg: #070b16;
  --color-bg-light: #0d1322;
  --color-bg-card: #111827;
  --color-orange: #f97316;
  --color-orange-dark: #ea580c;
  --color-green: #22c55e;
  --color-yellow: #fbbf24;
  --color-text: #ffffff;
  --color-text-dim: #64748b;
  --color-border: #1e293b;
  --color-highlight-border: #f97316;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-pill: 100px;
  --max-width: 1440px;
}

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

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: "Inter", sans-serif;
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.5;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

ul,
ol {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  color: inherit;
}

.gt-container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.gt-site {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.gt-main {
  flex: 1;
}

h1,
h2,
h3,
h4,
h5,
h6,
.gt-table-row__badge {
  font-family: "Sora", sans-serif;
}
