*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark-body);
  background: var(--dark-bg) !important;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
}

button, [type=button], [type=submit] {
  border: none;
  background: transparent;
  color: inherit;
  outline: none;
  padding: 0;
}
button:hover, button:focus,
[type=button]:hover, [type=button]:focus,
[type=submit]:hover, [type=submit]:focus {
  background: transparent;
  color: inherit;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }

.copper-label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--copper-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  margin-bottom: 16px;
}

.copper-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--copper);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: gap 0.3s ease;
}
.copper-link:hover { gap: 14px; }
.copper-link .arrow { transition: transform 0.3s ease; }
.copper-link:hover .arrow { transform: translateX(4px); }

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--dark-bg); }
::-webkit-scrollbar-thumb {
  background: rgba(184,115,51,0.3);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover { background: rgba(184,115,51,0.5); }
