  :root{
    --color-bg: #1A1512;
    --color-card: #3e332d;
    --color-btn: #241c19;
    --color-text: #E3D2BF;
    --color-text-muted: #b9a488;
    --radius-card: 22px;
    --radius-btn: 10px;
  }

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

  html, body {
    height: 100%;
  }

  body {
    background-color: var(--color-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    font-family: 'BespokeSerif-Variable', Arial, serif; font-weight:400;
  }




/* ------------------------------------------------------------ *\
	Fonts
\* ------------------------------------------------------------ */
@font-face {
  font-family: 'BespokeSerif-Variable';
  src: url('fonts/BespokeSerif-Variable.woff2') format('woff2'),
       url('fonts/BespokeSerif-Variable.woff') format('woff'),
       url('fonts/BespokeSerif-Variable.ttf') format('truetype');
       font-weight: 300 800;
       font-display: swap;
       font-style: normal;
}
/* oswald-300 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 300;
  src: url('fonts/oswald-v53-latin-300.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('fonts/oswald-v53-latin-300.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}

/* oswald-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/oswald-v53-latin-regular.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('fonts/oswald-v53-latin-regular.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}

/* oswald-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 500;
  src: url('fonts/oswald-v53-latin-500.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('fonts/oswald-v53-latin-500.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}

/* oswald-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 600;
  src: url('fonts/oswald-v53-latin-600.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('fonts/oswald-v53-latin-600.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}

/* oswald-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 700;
  src: url('fonts/oswald-v53-latin-700.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('fonts/oswald-v53-latin-700.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}






  .card {
    width: 100%;
    max-width: 420px;
    background-color: var(--color-card);
    border-radius: var(--radius-card);
    padding: 56px 40px 48px;
    text-align: center;
  }

.logo {
    max-width: 240px;
    width: 60%;
    height: auto;
    margin-bottom: 44px;
  }

  .links {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .link-btn {
    display: block;
    background-color: var(--color-btn);
    color: var(--color-text-muted);
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 18px 20px;
    border-radius: var(--radius-btn);
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
  }

  .link-btn:hover,
  .link-btn:focus-visible {
    background-color: #2c2320;
    color: var(--color-text);
    transform: translateY(-2px);
  }

  .link-btn:active {
    transform: translateY(0);
  }

  @media (max-width: 480px) {
    .logo {
      font-size: 2.8rem;
      margin-bottom: 32px;
    }
    .card {
      padding: 44px 24px 36px;
    }
  }