:root {
  --vok-green: #00ff5a;
  --vok-bg: #05141b;
  --vok-bg-2: #0e1e26;
  --vok-border: #465057;
  --vok-text: #ffffff;
  --vok-text-muted: #90a1b9;
  --vok-text-soft: #cad5e2;
  --vok-input-placeholder: #45556c;
  --vok-max: 1272px;
  --vok-radius: 16px;
  --vok-radius-lg: 24px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background: #0e1e26;
  color: var(--vok-text);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

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

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

.vok-heading {
  font-family: "Luckiest Guy", cursive;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0;
}

.vok-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--vok-green);
  color: var(--vok-bg);
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: 999px;
  box-shadow: 0 0 24px rgba(0, 255, 90, 0.35);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.vok-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 32px rgba(0, 255, 90, 0.55);
}

.vok-btn--small {
  padding: 12px 24px;
  font-size: 14px;
}
