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

:root {
  --bg:       #242627;
  --text:     #FFFFFF;
  --sub:      #888888;
  --gold:     #B8A272;
  --blue:     #3D7A96;
}

html, body {
  height: 100%;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

.logo-wrap {
  width: 280px;
}

.logo {
  width: 100%;
  height: auto;
  display: block;
}

.x-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--sub);
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}

.x-link:hover {
  color: var(--text);
}

.x-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
