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

:root {
  --font-display: "Bebas Neue", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  --color-bg: #0f0f1593;
  --color-text: #ededf2;
  --color-text-muted: rgba(237, 237, 242, 0.72);
  --color-surface: rgba(18, 19, 26, 0.82);
  --color-surface-strong: rgba(18, 19, 26, 0.94);
  --color-border: rgba(255, 255, 255, 0.08);
  --color-accent: #ff2d95;
  --color-accent-soft: rgba(255, 45, 149, 0.15);
  --color-outline: rgba(8, 247, 254, 0.45);

  --shadow-soft: 0 24px 60px rgba(0, 0, 0, 0.45);
  --shadow-glow: 0 0 32px rgba(255, 45, 149, 0.35);

  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 24px;

  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;

  --container-width: 1200px;
}

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-display);
  line-height: 1.05;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

p {
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

a:hover,
a:focus-visible {
  color: var(--color-accent);
}

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

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
