body {
  margin: 0;
  padding: 0;
  background: black;
  font-family: 'Inter', sans-serif;
  color: #fff;
  overflow-x: hidden;
  touch-action: manipulation;
  overscroll-behavior-x: none;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('selfie.jpg');
  background-size: cover;
  background-position: center;
  z-index: -1;
  opacity: 0.85;
  pointer-events: none;
  will-change: transform;
  transform: translateZ(0);
}

html {
  overflow-x: hidden;
  touch-action: manipulation;
  -ms-touch-action: manipulation;
}

.container {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 5rem 2rem;
  box-sizing: border-box;
  overflow-wrap: break-word;
}

.credits-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.headline {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5em;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.subtitle {
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 3rem;
  letter-spacing: 0.03em;
}

.credits-block {
  margin-bottom: 4rem;
  max-width: 700px;
  width: 100%;
  box-sizing: border-box;
  padding: 0 1rem;
}

.credits-block h2 {
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.role {
  font-weight: 300;
  font-size: 1.1rem;
  color: #aaa;
}

.name {
  font-weight: 600;
  font-size: 1.3rem;
}

a {
  color: #ffcc00;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

.footer {
  margin-top: 4rem;
  font-size: 0.85rem;
  color: #666;
}
