@font-face {
  font-family: "Remachine Script";
  src: url("public/assets/fonts/RemachineScript.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
:root {
  --bg: #ffffff;
  --text: #111827;
  --muted: #6b7280;
  --radius: 16px;
  --shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}
* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Remachine Script", cursive;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  background: #fff;
  border-bottom: 1px solid #eee;
}
.nav .inner {
  max-width: 1040px;
  margin: 0 auto;
  padding: 14px 18px;
  display: flex;
  justify-content: center;
}

.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: inherit;
  margin: 0 auto;
}
.brand-logo {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  object-fit: cover;
  display: block;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.brand-name {
  font-family: "Remachine Script", cursive;
  font-size: 50px;
  line-height: 1;
  letter-spacing: 0.2px;
  text-align: center;
}

.page {
  max-width: 1040px;
  margin: 0 auto;
  padding: 36px 18px 72px;
}
.links {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
  max-width: 680px;
  margin: 36px auto 0;
}

.link-btn,
.link-btn-i,
.link-btn-t,
.link-btn-y {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 20px;
  border-radius: var(--radius);
  text-decoration: none;
  border: 0;
  gap: 12px;
  color: #fff;
  font-weight: 400;
  box-shadow: var(--shadow);
  transition: transform 0.12s ease, box-shadow 0.12s ease, filter 0.12s ease;
}
.link-btn:hover,
.link-btn-i:hover,
.link-btn-t:hover,
.link-btn-y:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.1);
  filter: saturate(1.05) brightness(1.05);
}
.link-btn .label,
.link-btn-i .label,
.link-btn-t .label,
.link-btn-y .label {
  font-size: 35px;
}
.link-btn .icon,
.link-btn-i .icon,
.link-btn-t .icon,
.link-btn-y .icon {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  display: inline-block;
  color: currentColor;
}
.link-btn-i {
  background-image: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
}
.link-btn-t {
  border: 1px solid #eee;
  background-image: linear-gradient(135deg, #25f4ee 0%, #000 50%, #fe2c55 100%);
}
.link-btn-t .icon {
  width: 35px;
  height: 35px;
  flex: 0 0 35px;
}
.link-btn-y {
  border: 1px solid #eee;
  background-image: linear-gradient(
    45deg,
    #ff4d4d 0%,
    #ff0000 40%,
    #c40000 100%
  );
}
.meta {
  margin-top: 4px;
  font-size: 25px;
  color: var(--bg);
}
footer {
  margin-top: auto;
  padding: 8px 16px;
  color: rgba(0, 0, 0, 0.6);
  font-size: 25px;
  text-align: center;
  scroll-margin-block-end: 0;
  font-family: sans-serif;
}
.link-btn:focus-visible,
.link-btn-i:focus-visible,
.link-btn-t:focus-visible,
.link-btn-y:focus-visible {
  outline: 2px solid rgba(0, 0, 0, 0.35);
  outline-offset: 3px;
}
@media (min-width: 560px) {
  .brand-logo {
    width: 64px;
    height: 64px;
  }
  .brand-name {
    font-size: 56px;
  }
  .link-btn,
  .link-btn-i,
  .link-btn-t,
  .link-btn-y {
    padding: 22px 24px;
  }
  .link-btn .label,
  .link-btn-i .label,
  .link-btn-t .label,
  .link-btn-y .label {
    font-size: 38px;
  }
}
