    @keyframes blob1 {
      0%,100% { transform: translate(0,0) scale(1); }
      33%     { transform: translate(60px,-40px) scale(1.15); }
      66%     { transform: translate(-30px,50px) scale(0.92); }
    }
    @keyframes blob2 {
      0%,100% { transform: translate(0,0) scale(1); }
      33%     { transform: translate(-70px,30px) scale(1.1); }
      66%     { transform: translate(50px,-60px) scale(1.05); }
    }
    @keyframes blob3 {
      0%,100% { transform: translate(0,0) scale(1); }
      33%     { transform: translate(40px,60px) scale(0.95); }
      66%     { transform: translate(-50px,-20px) scale(1.12); }
    }
    @keyframes blob4 {
      0%,100% { transform: translate(0,0) scale(1); }
      33%     { transform: translate(-40px,-50px) scale(1.08); }
      66%     { transform: translate(60px,30px) scale(0.97); }
    }
    @keyframes blob5 {
      0%,100% { transform: translate(0,0) scale(1); }
      33%     { transform: translate(30px,40px) scale(1.06); }
      66%     { transform: translate(-60px,-30px) scale(1.02); }
    }

    body {
      min-height: 100vh;
      background: #faf6f2;
      overflow-x: hidden;
      display: flex; justify-content: center; align-items: center
    }

    body::before {
      content: '';
      position: fixed;
      inset: 0;
      z-index: -1;
      background: rgba(252, 250, 248, 0.40);
      pointer-events: none;
    }

    .liquid-bg {
      position: fixed;
      inset: -100px;
      z-index: -1;
      filter: blur(60px) saturate(1.20);
      pointer-events: none;
    }

    .blob {
      position: absolute;
      border-radius: 50%;
      opacity: 0.62;
    }

   /* replace your blob color values with these */

.b1 {
  background: radial-gradient(circle, #dfc4bc, #d4b0a8 60%, transparent);
}
.b2 {
  background: radial-gradient(circle, #b8c8b4, #a8bca4 60%, transparent);
}
.b3 {
  background: radial-gradient(circle, #d4c8a8, #cabea0 60%, transparent);
}
.b4 {
  background: radial-gradient(circle, #c4bcd0, #b8b0c4 60%, transparent);
}
.b5 {
  background: radial-gradient(circle, #d8cfc0, #cec4b4 60%, transparent);
}

/* and update the filter on .liquid-bg */
.liquid-bg {
  filter: blur(70px) saturate(1);
}

/* and lighten the veil slightly */
body::before {
  background: rgba(252, 250, 248, 0.45);
}

    @font-face {
   /* Credit: ZYLAA Flechazo - CapCut/ByteDance */
    font-family: 'Flechazo';
    src: url('media/Flechazo.ttf');
    }

    @keyframes bounce {
      0%, 100% { transform: translateY(0); }
      50%       { transform: translateY(-12px); }
              }

    model-viewer {
      animation: bounce 2s ease-in-out infinite;
      margin-bottom: 3rem;
      width: clamp(180px, 40vw, 320px);
      height: clamp(200px, 40vh, 360px);
    }
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.09;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
}

/* ─────────────────────────────────────────────────────────
   RESET & BASE
───────────────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;

}

img, svg {
  display: block;
  max-width: 100%;
}

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

/* ─────────────────────────────────────────────────────────
   CSS VARIABLES  — edit these to theme the whole page
───────────────────────────────────────────────────────── */
:root {
  --bg:           #0a0a0a;
  --text:         #ffffff;
  --accent:       #9ca389;      /* button bg / border colour   */
  --btn-text:     #ffffff;      /* button label colour         */
  --logo-size:    clamp(400px, 40vw, 220px);
  --spin-speed:   4s;           /* logo rotation duration      */
}

/* ─────────────────────────────────────────────────────────
   LAYOUT
───────────────────────────────────────────────────────── */
.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 1rem 2.25rem;
  text-align: center;
  width: 100%;
  max-width: 680px;
}



/* ─────────────────────────────────────────────────────────
   LOGO
───────────────────────────────────────────────────────── */

.corner-logo {
  position: fixed;
  top: 1.25rem;
  left: 2.25rem;
  font-family: 'Flechazo', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #9ca389;
  text-shadow: 1px 1px 8px whitesmoke;
}

.logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo {
  width: 50vw;
  height: 60vh;
  object-fit: contain;
  border-radius: 50%;           /* remove if your logo isn't round */
}

/* Spin animation — remove .spinning class from <img> to disable */
@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.spinning {
  animation: spin var(--spin-speed) linear infinite;
}

/* ─────────────────────────────────────────────────────────
   OPTIONAL HEADLINE / SUBHEAD
───────────────────────────────────────────────────────── */
.headline {
  font-size: clamp(1.6rem, 6vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.subhead {
  font-size: clamp(0.9rem, 3vw, 1.1rem);
  opacity: 0.6;
  margin-top: -1.25rem;         /* pulls it closer to .headline */
}

/* ─────────────────────────────────────────────────────────
   PRESAVE BUTTON
───────────────────────────────────────────────────────── */
    .btn-presave {
      min-width: max-content;
      font-family: 'Flechazo', sans-serif;
      display: inline-flex;
      align-items: center;
      gap: 0;
      padding: 0.5rem;
      overflow: hidden;
      background-color: var(--accent);
      color: var(--btn-text);
      font-size: 1rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      border-radius: 4px;
      border: 2px solid var(--accent);
      cursor: pointer;
      text-decoration: none;
      transition: background-color 0.1s ease, color 0.1s ease, transform 0.15s ease;
      white-space: nowrap;
    }

    .btn-presave .btn-art {
      align-self: stretch;
      width: 4em;
      height: 4em;
      flex-shrink: 0;
      object-fit: cover;
      display: block;
    }

    .btn-presave .btn-label {
      flex: 1;
      text-align: center;
      padding: 0.85em 1.6em;
    }

    .btn-presave:hover,
    .btn-presave:focus-visible {
      background-color: transparent;
      color: var(--accent);
      transform: scale(1.04);
      box-shadow: 1px 1px 8px whitesmoke;
    }

    .btn-presave:active {
      transform: scale(0.98);
    }

/* ─────────────────────────────────────────────────────────
   RESPONSIVE TWEAKS
───────────────────────────────────────────────────────── */
@media (max-width: 400px) {
  .btn-presave {
    width: 100%;
    text-align: center;
  }
}
