:root {
  --bg: #0b0b0b;
  --surface: #141414;
  --line: rgba(255, 255, 255, 0.12);
  --text: #f4f4f4;
  --muted: #b8b8b8;
  --accent: #e2442f;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(226, 68, 47, 0.14), transparent 22%),
    linear-gradient(180deg, #090909 0%, #101010 100%);
}

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

.site-wrap {
  width: min(1180px, calc(100% - 20px));
  margin: 14px auto 20px;
}

.site-header,
.big-banner,
.site-footer {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface);
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.brand img {
  width: 66px;
  height: auto;
}

.header-links,
.site-footer {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.header-links a,
.site-footer a {
  color: var(--muted);
  border-bottom: 1px solid transparent;
  transition: color 160ms ease, border-color 160ms ease;
}

.header-links a:hover,
.header-links a:focus-visible,
.site-footer a:hover,
.site-footer a:focus-visible {
  color: #fff;
  border-color: currentColor;
}

.big-banner {
  margin-top: 14px;
  min-height: 62vh;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.14), rgba(0, 0, 0, 0.72)),
    linear-gradient(145deg, rgba(226, 68, 47, 0.2), rgba(16, 16, 16, 0.6)),
    url("Gemini_Generated_Image_r72qp5r72qp5r72q.png");
  background-size: cover;
  background-position: center;
}

.site-footer {
  margin-top: 14px;
  padding: 14px 16px;
}

@media (max-width: 760px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .brand img {
    width: 56px;
  }

  .big-banner {
    min-height: 52vh;
  }
}
