/* MoreMaryna landing page styles */
:root{
  --bg: #FFF3B0;        /* warm pale yellow */
  --card: #FFE36E;      /* brighter yellow */
  --text: #2B2200;      /* deep brown */
  --accent: #FFB703;    /* golden accent */
  --shadow: 0 14px 40px rgba(43,34,0,.18);
  --radius: 22px;

  --pad: clamp(18px, 4vw, 28px);
  --max: 720px;
}

* { box-sizing: border-box; }

html, body { height: 100%; }

body{
  margin: 0;
  min-height: 100svh; /* better on mobile browser UI */
  display: grid;
  place-items: center;
  padding: calc(var(--pad) + env(safe-area-inset-top)) var(--pad) calc(var(--pad) + env(safe-area-inset-bottom));
  background: radial-gradient(1000px 600px at 50% 10%, #FFF8CC 0%, var(--bg) 55%, #FFEAA0 100%);
  color: var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
}

.wrap{
  width: min(var(--max), 100%);
  padding: var(--pad);
  background: linear-gradient(180deg, rgba(255,255,255,.18), rgba(255,255,255,0));
  border: 1px solid rgba(43,34,0,.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.wrap::before{
  content:"";
  position:absolute;
  inset:-120px -120px auto -120px;
  height: 240px;
  background: radial-gradient(circle at 50% 60%, rgba(255,183,3,.35) 0%, rgba(255,183,3,0) 70%);
  pointer-events:none;
}

.avatar{
  width: clamp(180px, 52vmin, 420px);
  aspect-ratio: 1 / 1;
  border-radius: 999px;
  margin: 8px auto 20px;
  overflow: hidden;
  border: 8px solid rgba(255,255,255,.55);
  outline: 2px solid rgba(43,34,0,.16);
  box-shadow: 0 18px 40px rgba(43,34,0,.20);
  background: var(--card);
}

.avatar img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

h1{
  margin: 0 0 10px;
  font-size: clamp(26px, 4.2vw, 40px);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.sub{
  margin: 0 0 22px;
  font-size: clamp(15px, 1.9vw, 16px);
  opacity: .85;
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 999px;
  background: #2B2200;
  color: #FFF3B0;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid rgba(0,0,0,.12);
  box-shadow: 0 10px 24px rgba(43,34,0,.22);
  transition: transform .12s ease, box-shadow .12s ease, opacity .12s ease;
  max-width: 100%;
}

.btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(43,34,0,.26);
}

.btn:active{
  transform: translateY(0px);
  opacity: .92;
}

.btn:focus-visible{
  outline: 3px solid rgba(255,183,3,.55);
  outline-offset: 4px;
}

.yt-dot{
  width: 12px; height: 12px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(255,183,3,.25);
  flex: 0 0 auto;
}

footer{
  margin-top: 18px;
  font-size: 13px;
  opacity: .7;
}

/* Reduce motion if the user prefers */
@media (prefers-reduced-motion: reduce){
  .btn{ transition: none; }
  .btn:hover{ transform: none; }
}
