:root {
  --bg: #050505;
  --bg-soft: #0c0c0c;
  --bg-card: rgba(255,255,255,.04);

  --gold: #f5b400;
  --gold-2: #ffcc33;

  --white: #ffffff;
  --text: #f5f5f5;
  --muted: #b9b9b9;

  --border: rgba(245,180,0,.28);
  --border-soft: rgba(255,255,255,.12);

  --radius: 16px;
  --shadow-gold: 0 0 35px rgba(245,180,0,.16);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

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

button,
input,
select,
textarea {
  font-family: inherit;
}

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

section {
  padding: 80px 0;
}

.container {
  width: min(1180px, 92%);
  margin: auto;
}