/* ============================================================
   BAD CHRISTMAS JUMPERS — global styles
   Cursed-kitsch festive chaos. Mobile-first.
   ============================================================ */

:root {
  /* palette (overridden at runtime by tweaks) */
  --xred:   #ff2d4f;
  --xred-d: #c4102f;
  --xgreen: #15b86c;
  --xgreen-d:#0a7e47;
  --gold:   #ffd23f;
  --pink:   #ff5cc8;
  --ice:    #9be8ff;
  --cream:  #fff7e9;
  --ink:    #1c0a17;
  --plum:   #2a0f24;

  --app-bg: #190713;
  --rail:   rgba(255,255,255,0.14);

  /* type (overridden by tweaks) */
  --f-display: "Lilita One", system-ui, sans-serif;
  --f-ui:      "Fredoka", system-ui, sans-serif;
  --f-scrawl:  "Permanent Marker", cursive;

  --anim: 1; /* animation speed multiplier (higher = faster) */

  --shadow-pop: 0 6px 0 rgba(0,0,0,0.35);
}

* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }

html, body {
  margin: 0;
  height: 100%;
  height: 100dvh;
  background: #0d0410;
  font-family: var(--f-ui);
  color: var(--cream);
  overflow: hidden;
  overscroll-behavior: none;
}

#root { height: 100%; height: 100dvh; }

button { font-family: var(--f-ui); cursor: pointer; border: none; background: none; color: inherit; }
input, textarea { font-family: var(--f-ui); }

/* ---- chaotic desktop backdrop ---- */
.stage {
  position: fixed;
  inset: 0;
  height: 100dvh;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 18% 12%, rgba(255,92,200,0.20), transparent 40%),
    radial-gradient(circle at 82% 88%, rgba(21,184,108,0.22), transparent 42%),
    radial-gradient(circle at 50% 50%, #2a0f24, #120410 70%);
  overflow: hidden;
}
.stage::before {
  /* faint giant snowflakes */
  content: "❄ ✦ ❄ ✦ ❄ ✦ ❄ ✦";
  position: absolute;
  inset: -20% -10%;
  font-size: 120px;
  line-height: 2.4;
  color: rgba(255,255,255,0.035);
  letter-spacing: 40px;
  transform: rotate(-12deg);
  pointer-events: none;
  white-space: pre-wrap;
}

/* ---- phone-shaped app surface ---- */
.phone {
  position: relative;
  width: min(440px, 100vw);
  height: 100vh;
  height: 100dvh; /* iOS Safari: excludes browser chrome */
  max-height: 940px;
  background: var(--app-bg);
  overflow: hidden;
  box-shadow: 0 0 0 6px rgba(0,0,0,0.5), 0 40px 90px rgba(0,0,0,0.6),
              0 0 70px rgba(255,45,79,0.25);
  display: flex;
  flex-direction: column;
}
@media (min-width: 480px) and (min-height: 960px) {
  .phone { border-radius: 44px; box-shadow: 0 0 0 10px #07020a, 0 0 0 13px #2a0f24,
              0 40px 90px rgba(0,0,0,0.7), 0 0 80px rgba(255,45,79,0.3); }
}

/* tinsel top/bottom trim on the phone */
.tinsel {
  position: absolute;
  left: 0; right: 0;
  height: 8px;
  z-index: 60;
  background: repeating-linear-gradient(90deg,
     var(--gold) 0 7px, var(--xred) 7px 14px, var(--xgreen) 14px 21px, var(--ice) 21px 28px);
  filter: saturate(1.3);
}
.tinsel.top { top: 0; }
.tinsel.bot { bottom: 0; }

/* ============================================================
   TOP BAR
   ============================================================ */
.topbar {
  position: absolute;
  top: 8px; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px 8px;
  background: linear-gradient(to bottom, rgba(13,4,16,0.85), transparent);
  pointer-events: none;
}
.topbar > * { pointer-events: auto; }
.wordmark {
  display: flex; flex-direction: column; line-height: normal;
  transform: rotate(-1.5deg);
}
.wordmark b {
  font-family: var(--f-display);
  font-size: 19px;
  line-height: 1.0;
  letter-spacing: 0.5px;
  color: var(--cream);
  text-shadow: 2px 2px 0 var(--xred), 4px 4px 0 rgba(0,0,0,0.4);
}
.wordmark b em { color: var(--gold); font-style: normal; }
.wordmark small {
  font-family: var(--f-scrawl);
  font-size: 10.5px;
  color: var(--ice);
  margin-top: 7px;
  margin-left: 2px;
  white-space: nowrap;
  transform: rotate(-1deg);
}
.sound-btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(0,0,0,0.45);
  border: 2px solid var(--gold);
  font-size: 19px;
  display: grid; place-items: center;
  backdrop-filter: blur(4px);
  transition: transform 0.12s;
}
.sound-btn:active { transform: scale(0.88); }

/* ============================================================
   FEED
   ============================================================ */
.feed {
  flex: 1;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  scrollbar-width: none;
}
.feed::-webkit-scrollbar { display: none; }

.post {
  position: relative;
  height: 100%;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

/* knit background canvas */
.knit { position: absolute; inset: 0; z-index: 0; }
.post-shade {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(8,2,10,0.92) 4%, rgba(8,2,10,0.25) 34%, transparent 55%),
              linear-gradient(to bottom, rgba(8,2,10,0.55), transparent 22%);
  pointer-events: none;
}

/* the jumper graphic sits centered */
.jumper-wrap {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 1;
  padding: 150px 0 230px;
}
.jumper-wrap svg { width: 68%; max-width: 290px; height: auto;
  filter: drop-shadow(0 14px 22px rgba(0,0,0,0.5)); }

/* meme impact text overlaid on jumper */
.meme-top, .meme-bot {
  position: absolute; left: 0; right: 0; z-index: 2;
  text-align: center;
  font-family: var(--f-display);
  color: #fff;
  text-transform: uppercase;
  padding: 0 18px;
  letter-spacing: 0.5px;
  -webkit-text-stroke: 2.5px #000;
  paint-order: stroke fill;
  line-height: 1.02;
  pointer-events: none;
}
.meme-top { top: 84px; font-size: 27px; }
.meme-top > div + div { margin-top: 2px; }

/* caption block */
.post-meta {
  position: relative;
  z-index: 3;
  padding: 0 78px 92px 16px;
}
.user-row { display: flex; align-items: center; gap: 9px; margin-bottom: 8px; }
.avatar {
  width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center;
  font-size: 20px;
  border: 2.5px solid var(--gold);
  box-shadow: 0 3px 0 rgba(0,0,0,0.4);
  flex: none;
}
.uname { font-weight: 600; font-size: 15px; }
.uname b { font-weight: 600; }
.badge-knit {
  font-family: var(--f-scrawl);
  font-size: 10px;
  background: var(--xred);
  color: #fff;
  padding: 2px 7px;
  border-radius: 20px;
  transform: rotate(-3deg);
  display: inline-block;
}
.caption {
  font-size: 15px;
  line-height: 1.32;
  text-shadow: 0 2px 6px rgba(0,0,0,0.8);
  text-wrap: pretty;
  margin: 0 0 10px;
}
.sound-chip {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(0,0,0,0.5);
  border: 1.5px solid rgba(255,255,255,0.25);
  padding: 5px 12px 5px 8px;
  border-radius: 30px;
  font-size: 12.5px;
  max-width: 100%;
}
.sound-chip .disc {
  width: 20px; height: 20px; border-radius: 50%;
  background: conic-gradient(var(--gold), var(--xred), var(--xgreen), var(--gold));
  display: grid; place-items: center; font-size: 10px;
  animation: spin calc(3s / var(--anim)) linear infinite;
}
.sound-chip .scroll-txt { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---- right action rail (TikTok-style) ---- */
.rail {
  position: absolute;
  right: 10px;
  bottom: 96px;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.react-btn {
  display: flex; flex-direction: column; align-items: center; gap: 3px;
}
.react-btn .bubble {
  width: 50px; height: 50px; border-radius: 50%;
  background: rgba(0,0,0,0.42);
  backdrop-filter: blur(3px);
  border: 2px solid rgba(255,255,255,0.18);
  display: grid; place-items: center;
  font-size: 25px;
  transition: transform 0.12s;
}
.react-btn:active .bubble { transform: scale(0.82); }
.react-btn.on .bubble {
  border-color: var(--gold);
  background: rgba(255,45,79,0.4);
  animation: wobble calc(0.5s / var(--anim)) ease;
}
.react-btn .cnt { font-size: 12px; font-weight: 600; text-shadow: 0 1px 3px #000; }
@keyframes wobble {
  0%,100%{ transform: scale(1) rotate(0); }
  30%{ transform: scale(1.25) rotate(-9deg); }
  60%{ transform: scale(1.1) rotate(7deg); }
}

/* floating reaction emoji that burst up */
.burst {
  position: absolute;
  z-index: 9;
  font-size: 28px;
  pointer-events: none;
  animation: floatUp calc(1.1s / var(--anim)) ease-out forwards;
}
@keyframes floatUp {
  0% { opacity: 0; transform: translateY(0) scale(0.5); }
  15% { opacity: 1; }
  100% { opacity: 0; transform: translateY(-150px) scale(1.4) rotate(var(--r, 20deg)); }
}

/* ---- UGLY-O-METER ---- */
.uglyometer {
  position: absolute;
  left: 16px;
  bottom: 220px;
  z-index: 4;
  width: 150px;
}
.uglyometer .label {
  font-family: var(--f-display);
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--gold);
  text-shadow: 1px 1px 0 #000;
  margin-bottom: 4px;
}
.ugly-track {
  height: 16px; border-radius: 10px;
  background: rgba(0,0,0,0.5);
  border: 2px solid rgba(255,255,255,0.25);
  overflow: hidden;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.5);
}
.ugly-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--xgreen), var(--gold) 55%, var(--xred));
  transition: width calc(0.4s / var(--anim)) cubic-bezier(.34,1.56,.64,1);
  border-radius: 8px;
}
.ugly-row { display: flex; align-items: center; gap: 8px; margin-top: 7px; }
.ugly-score { font-family: var(--f-display); font-size: 26px; color: #fff;
  text-shadow: 2px 2px 0 var(--xred-d); line-height: 1; }
.ugly-score span { font-size: 12px; opacity: 0.7; }
.vote-ugly {
  font-family: var(--f-display);
  font-size: 13px;
  background: var(--xred);
  color: #fff;
  padding: 7px 12px;
  border-radius: 30px;
  box-shadow: 0 4px 0 var(--xred-d);
  transition: transform 0.1s;
  white-space: nowrap;
}
.vote-ugly:active { transform: translateY(3px); box-shadow: 0 1px 0 var(--xred-d); }

/* ============================================================
   BOTTOM NAV
   ============================================================ */
.botnav {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 55;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 0 8px 8px;
  padding-bottom: calc(8px + env(safe-area-inset-bottom));
  height: calc(76px + env(safe-area-inset-bottom));
  background: linear-gradient(to top, #0d0410 55%, rgba(13,4,16,0.0));
}
.nav-item {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  font-size: 10.5px; font-weight: 600;
  color: rgba(255,255,255,0.55);
  width: 56px;
  transition: color 0.15s, transform 0.1s;
}
.nav-item .ic { font-size: 21px; line-height: 1; }
.nav-item.active { color: var(--cream); }
.nav-item.active .ic { filter: drop-shadow(0 0 6px var(--gold)); transform: scale(1.12); }
.nav-item:active { transform: scale(0.9); }

.fab {
  width: 62px; height: 50px;
  margin-top: -14px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--xred), var(--pink));
  display: grid; place-items: center;
  font-size: 28px;
  color: #fff;
  box-shadow: 0 5px 0 var(--xred-d), 0 8px 18px rgba(255,45,79,0.5);
  border: 2.5px solid var(--gold);
  position: relative;
  transition: transform 0.1s;
  animation: fabPulse calc(2.2s / var(--anim)) ease-in-out infinite;
}
.fab:active { transform: translateY(3px) scale(0.96); box-shadow: 0 2px 0 var(--xred-d); }
@keyframes fabPulse {
  0%,100% { box-shadow: 0 5px 0 var(--xred-d), 0 8px 18px rgba(255,45,79,0.5); }
  50% { box-shadow: 0 5px 0 var(--xred-d), 0 8px 30px rgba(255,92,200,0.85); }
}

/* ============================================================
   SHEETS / SCREENS (upload, leaderboard, trending)
   ============================================================ */
.sheet-scrim {
  position: absolute; inset: 0; z-index: 80;
  background: rgba(6,2,8,0.6);
  backdrop-filter: blur(3px);
  animation: fade calc(0.25s / var(--anim)) ease;
}
@keyframes fade { from { opacity: 0; } }

.screen {
  position: absolute;
  inset: 0;
  z-index: 40;
  background:
    radial-gradient(circle at 80% 0%, rgba(255,92,200,0.18), transparent 45%),
    radial-gradient(circle at 0% 100%, rgba(21,184,108,0.18), transparent 45%),
    var(--app-bg);
  display: flex; flex-direction: column;
  overflow: hidden;
}
.screen-head {
  padding: 52px 18px 14px;
  text-align: center;
  position: relative;
  flex: none;
}
.screen-head h1 {
  font-family: var(--f-display);
  font-size: 30px;
  margin: 0;
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--cream);
  text-shadow: 3px 3px 0 var(--xred), 6px 6px 0 rgba(0,0,0,0.35);
}
.screen-head h1 em { color: var(--gold); font-style: normal; }
.screen-head p { margin: 8px 0 0; font-size: 13px; color: var(--ice); font-family: var(--f-scrawl); }
.screen-body { flex: 1; overflow-y: auto; padding: 6px 14px 90px; scrollbar-width: none; }
.screen-body::-webkit-scrollbar { display: none; }

/* generic sheet (upload) slides up */
.sheet {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 85;
  max-height: 94%;
  background: linear-gradient(to bottom, #34132b, #1c0a17);
  border-radius: 28px 28px 0 0;
  border-top: 4px solid var(--gold);
  box-shadow: 0 -10px 40px rgba(0,0,0,0.6);
  display: flex; flex-direction: column;
  animation: slideUp calc(0.32s / var(--anim)) cubic-bezier(.16,1,.3,1);
}
@keyframes slideUp { from { transform: translateY(100%); } }
.sheet-grip { width: 44px; height: 5px; border-radius: 3px; background: rgba(255,255,255,0.3);
  margin: 10px auto 4px; flex: none; }
.sheet-body { overflow-y: auto; padding: 6px 18px 24px; scrollbar-width: none; }
.sheet-body::-webkit-scrollbar { display: none; }

.x-btn {
  position: absolute; top: 48px; right: 14px;
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(0,0,0,0.4); border: 2px solid rgba(255,255,255,0.3);
  font-size: 18px; display: grid; place-items: center; z-index: 5;
}

/* ---- leaderboard podium ---- */
.podium { display: flex; align-items: flex-end; justify-content: center; gap: 8px; margin: 8px 0 18px; }
.pod {
  flex: 1; max-width: 110px;
  display: flex; flex-direction: column; align-items: center;
}
.pod .crown { font-size: 26px; margin-bottom: 2px; }
.pod .pic {
  width: 100%; aspect-ratio: 1; border-radius: 16px; overflow: hidden;
  border: 3px solid var(--gold); box-shadow: 0 6px 0 rgba(0,0,0,0.35);
  position: relative;
}
.pod .pic svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.pod .name { font-weight: 600; font-size: 12px; margin-top: 6px; text-align: center; }
.pod .sc { font-family: var(--f-display); font-size: 18px; color: var(--gold); }
.pod .plinth {
  width: 88%; margin-top: 6px; border-radius: 8px 8px 0 0;
  font-family: var(--f-display); display: grid; place-items: center;
  color: rgba(0,0,0,0.6); font-size: 26px;
}
.pod.p1 .plinth { height: 64px; background: linear-gradient(var(--gold), #d9a900); }
.pod.p2 .plinth { height: 44px; background: linear-gradient(#e6e6e6, #aaa); }
.pod.p3 .plinth { height: 32px; background: linear-gradient(#e0975a, #b06a2c); }

.lb-row {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,0.05);
  border: 1.5px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 10px 12px;
  margin-bottom: 10px;
}
.lb-row .rank { font-family: var(--f-display); font-size: 22px; color: var(--gold); width: 30px; text-align: center; flex: none; }
.lb-row .thumb { width: 50px; height: 50px; border-radius: 12px; overflow: hidden; flex: none;
  border: 2px solid rgba(255,255,255,0.2); position: relative; }
.lb-row .thumb svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.lb-row .info { flex: 1; min-width: 0; }
.lb-row .info .n { font-weight: 600; font-size: 13.5px; }
.lb-row .info .c { font-size: 11.5px; color: rgba(255,255,255,0.6); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.lb-row .uscore { text-align: right; flex: none; }
.lb-row .uscore b { font-family: var(--f-display); font-size: 20px; color: #fff; }
.lb-row .uscore small { display: block; font-size: 9px; color: var(--gold); letter-spacing: 1px; }

/* trending */
.trend-tabs { display: flex; gap: 8px; justify-content: center; margin-bottom: 14px; flex-wrap: wrap; }
.trend-tab { font-size: 12px; font-weight: 600; padding: 6px 13px; border-radius: 30px;
  background: rgba(255,255,255,0.08); border: 1.5px solid transparent; }
.trend-tab.on { background: var(--xred); border-color: var(--gold); }
.trend-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.trend-card {
  border-radius: 16px; overflow: hidden; position: relative;
  aspect-ratio: 3/4; border: 2px solid rgba(255,255,255,0.12);
  box-shadow: 0 4px 0 rgba(0,0,0,0.3);
}
.trend-card svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.trend-card .tc-shade { position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent 50%); }
.trend-card .tc-rank { position: absolute; top: 6px; left: 8px;
  font-family: var(--f-display); font-size: 26px; color: #fff;
  -webkit-text-stroke: 1.5px var(--xred); }
.trend-card .tc-fire { position: absolute; top: 8px; right: 8px; font-size: 13px;
  background: rgba(0,0,0,0.5); padding: 2px 7px; border-radius: 20px; font-weight: 600; }
.trend-card .tc-meta { position: absolute; bottom: 6px; left: 8px; right: 8px; }
.trend-card .tc-meta .tn { font-size: 11px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.trend-card .tc-meta .tu { font-family: var(--f-display); font-size: 16px; color: var(--gold); }
.trend-card .velo { position: absolute; bottom: 6px; right: 8px; font-size: 10px; color: var(--xgreen); font-weight: 700; }

/* ---- upload form bits ---- */
.field-label { font-family: var(--f-display); font-size: 13px; letter-spacing: 0.5px;
  color: var(--gold); margin: 16px 0 7px; text-transform: uppercase; }
image-slot { display: block; width: 100%; aspect-ratio: 4/5; }
.cap-input {
  width: 100%; background: rgba(0,0,0,0.35); border: 2px solid rgba(255,255,255,0.18);
  border-radius: 14px; color: var(--cream); font-size: 15px; padding: 12px 14px;
  resize: none; outline: none;
}
.cap-input:focus { border-color: var(--gold); }
.chip-row { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  font-size: 13px; padding: 8px 13px; border-radius: 30px;
  background: rgba(255,255,255,0.08); border: 1.5px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; gap: 6px; transition: transform 0.1s;
}
.chip.on { background: var(--xgreen-d); border-color: var(--gold); }
.chip:active { transform: scale(0.93); }
.post-btn {
  width: 100%; margin-top: 22px;
  font-family: var(--f-display); font-size: 20px; letter-spacing: 0.5px;
  color: #fff; text-transform: uppercase;
  background: linear-gradient(135deg, var(--xred), var(--pink));
  border: 3px solid var(--gold);
  border-radius: 18px; padding: 15px;
  box-shadow: 0 6px 0 var(--xred-d);
  transition: transform 0.1s;
}
.post-btn:active { transform: translateY(4px); box-shadow: 0 2px 0 var(--xred-d); }
.post-btn:disabled { opacity: 0.5; filter: grayscale(0.4); box-shadow: 0 6px 0 rgba(0,0,0,0.4); }

.preview-tag {
  display: inline-block; font-family: var(--f-scrawl); font-size: 12px;
  background: var(--gold); color: var(--ink); padding: 3px 10px; border-radius: 20px;
  transform: rotate(-3deg); margin-bottom: 6px;
}

/* the "just posted" toast */
.toast {
  position: absolute; top: 70px; left: 50%; transform: translateX(-50%);
  z-index: 90; background: var(--xgreen-d); color: #fff;
  border: 2.5px solid var(--gold); border-radius: 30px;
  padding: 10px 18px; font-weight: 600; font-size: 14px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.5);
  display: flex; align-items: center; gap: 8px;
  animation: toastIn calc(0.4s / var(--anim)) cubic-bezier(.34,1.56,.64,1);
  white-space: nowrap;
}
@keyframes toastIn { from { transform: translate(-50%, -30px); opacity: 0; } }

/* ---- snow ---- */
.snow { position: absolute; inset: 0; z-index: 45; pointer-events: none; overflow: hidden; }
.flake { position: absolute; top: -20px; color: #fff; opacity: 0.85;
  animation: fall linear infinite; will-change: transform; }
@keyframes fall {
  0% { transform: translateY(-20px) translateX(0) rotate(0); }
  100% { transform: translateY(1000px) translateX(var(--drift, 30px)) rotate(360deg); }
}

/* swipe hint */
.swipe-hint {
  position: absolute; left: 50%; bottom: 150px; transform: translateX(-50%);
  z-index: 6; text-align: center; color: rgba(255,255,255,0.85);
  font-family: var(--f-scrawl); font-size: 13px;
  animation: hintBob calc(1.6s / var(--anim)) ease-in-out infinite;
  pointer-events: none; text-shadow: 0 2px 6px #000;
}
@keyframes hintBob { 0%,100%{ transform: translate(-50%,0);} 50%{ transform: translate(-50%, 8px);} }

/* generic confetti for big moments */
.confetti-pc { position: absolute; z-index: 95; width: 9px; height: 14px; top: -20px;
  pointer-events: none; animation: confFall linear forwards; }
@keyframes confFall {
  to { transform: translateY(1000px) rotate(720deg); opacity: 0.3; }
}
