/* — Global & Reset — */
html, body {
    margin: 0; padding: 0; min-height: 100vh;
    background: #1a1a1a; color: #f0f0f0;
    font-family: 'Playfair Display', serif;
    overflow-x: hidden;
  }
  *, *::before, *::after { box-sizing: border-box; }

  /* — Navbar — */
  nav {
    position: fixed; top: 0; width: 100%; padding: 20px;
    background: rgba(26,26,26,0.95); z-index: 1000;
    display: flex; justify-content: space-between; align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
  }
  .logo { display: flex; align-items: center; }
  .logo img { height: 40px; margin-right: 10px; }
  .logo-text { font-size: 30px; color: #f0f0f0; }
  .logo-highlight { color: #b581e3; }

  /* — Sign Up Button — */
  .uiverse-btn {
    --primary: #b581e3; --secondary: #fff; --hover: #9160bd;
    --arw-w: 10px; --arw-stroke: 2px;
    display: flex; align-items: center; gap: .6em;
    padding: 1em 1.8em; background: var(--primary);
    color: var(--secondary); border: none; border-radius: 20px;
    font-weight: bold; cursor: pointer; transition: background .2s;
  }
  .uiverse-btn:hover { background: var(--hover); }
  .uiverse-btn .arrow-wrapper { display: flex; align-items: center; }
  .uiverse-btn .arrow {
    width: var(--arw-w); height: var(--arw-stroke);
    background: var(--primary); position: relative;
    transition: background .2s;
  }
  .uiverse-btn .arrow::before {
    content: "";
    position: absolute; top: -3px; right: 3px;
    border: solid var(--secondary);
    border-width: 0 var(--arw-stroke) var(--arw-stroke) 0;
    padding: 3px; transform: rotate(-45deg);
    transition: right .2s;
  }
  .uiverse-btn:hover .arrow { background: var(--secondary); }
  .uiverse-btn:hover .arrow::before { right: 0; }

  /* — Main Content — */
  main {
    padding: 120px 20px 120px;
    max-width: 800px; margin: 0 auto;
    font-family: 'Lato', sans-serif;
  }
  h1, h2 {
    font-family: 'Playfair Display', serif;
    color: #fff; margin-top: 1.5em;
  }
  p, li { line-height: 1.6; margin: 0.75em 0; }
  ul { margin: 0.75em 0 0.75em 1.5em; }
  a { color: #b581e3; text-decoration: none; }
  a:hover { text-decoration: underline; }

  /* — Footer — */
  .footer-container {
    position: fixed; bottom: 0; left: 0; width: 100%;
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; padding: 20px;
    background: rgba(26,26,26,0.95);
    font-size: 14px; box-shadow: 0 -2px 10px rgba(0,0,0,0.5);
  }
  .footer-container a {
    color: #fff; text-decoration: none; margin-left: 15px;
    transition: color .3s ease-in-out;
  }
  .footer-container a:hover { color: #b581e3; }
  @media (max-width: 600px) {
    .footer-container {
      flex-direction: column; align-items: center; gap: 5px;
    }
    .footer-container a { margin-left: 0; }
  }