* {
  box-sizing: border-box;
}

:root {
  --lime: #dfff4f;
  --lime-soft: #f4ffc3;
  --text: #f7ffe1;
  --dark: #070904;
  --panel: rgba(8, 11, 4, 0.72);
  --border: rgba(223, 255, 79, 0.3);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--text);
  background: var(--dark);
  font-family: Arial, Helvetica, sans-serif;
}

button,
a {
  font: inherit;
}

.background-wall {
  position: fixed;
  inset: 0;
  z-index: -6;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  overflow: hidden;
  background: #050702;
  transform: scale(1.08);
}

.background-wall video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.2) contrast(1.08);
}

.background-wall video:nth-child(2),
.background-wall video:nth-child(5) {
  transform: scaleX(-1);
}

.background-wall video:nth-child(3),
.background-wall video:nth-child(4) {
  transform: scaleY(-1);
}

.background-overlay {
  position: fixed;
  inset: 0;
  z-index: -5;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 18%, rgba(223, 255, 79, 0.14), transparent 26%),
    linear-gradient(to bottom, rgba(4, 6, 2, 0.34), rgba(4, 6, 2, 0.88));
}

.noise {
  position: fixed;
  inset: 0;
  z-index: -4;
  pointer-events: none;
  opacity: 0.05;
  background-image:
    radial-gradient(circle at 20% 20%, white 0 1px, transparent 1px),
    radial-gradient(circle at 80% 30%, white 0 1px, transparent 1px);
  background-size: 4px 4px, 7px 7px;
  mix-blend-mode: screen;
}

#falling-lemons {
  position: fixed;
  inset: 0;
  z-index: 8;
  overflow: hidden;
  pointer-events: none;
}

.falling-lemon {
  position: absolute;
  top: -180px;
  width: var(--size);
  opacity: 1;
  user-select: none;
  filter: drop-shadow(0 0 10px rgba(223, 255, 79, 0.28));
  animation:
    money-fall var(--duration) linear infinite,
    money-spin var(--spin-duration) linear infinite;
  animation-delay: var(--delay);
  transform-origin: center;
}

.navbar {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 20;
  width: min(1180px, calc(100% - 28px));
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 9px 12px 9px 14px;
  border: 1px solid rgba(223, 255, 79, 0.22);
  border-radius: 18px;
  background: rgba(7, 9, 4, 0.7);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.34);
  transform: translateX(-50%);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--text);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.nav-logo img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a,
.nav-links button {
  padding: 9px 12px;
  border: 1px solid transparent;
  border-radius: 11px;
  color: rgba(247, 255, 225, 0.78);
  background: transparent;
  text-decoration: none;
  cursor: pointer;
  transition:
    color 160ms ease,
    background 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}

.nav-links a:hover,
.nav-links button:hover {
  color: var(--text);
  background: rgba(223, 255, 79, 0.1);
  border-color: rgba(223, 255, 79, 0.25);
  transform: translateY(-2px);
}

main {
  position: relative;
  z-index: 2;
}

.section-shell {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 34px;
  padding: 120px 0 70px;
}

.hero-glow {
  position: absolute;
  width: min(580px, 82vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(223, 255, 79, 0.2), transparent 68%);
  filter: blur(22px);
  animation: pulse 3.2s ease-in-out infinite;
}

.hero-image {
  position: relative;
  z-index: 2;
  width: min(470px, 80vw);
  max-height: 63vh;
  object-fit: contain;
  user-select: none;
  filter:
    drop-shadow(0 28px 40px rgba(0, 0, 0, 0.5))
    drop-shadow(0 0 20px rgba(223, 255, 79, 0.22));
}

.hero-image:hover {
  animation: shake 360ms steps(2, end) infinite;
  filter:
    drop-shadow(0 28px 40px rgba(0, 0, 0, 0.52))
    drop-shadow(0 0 34px rgba(223, 255, 79, 0.5));
}

.hero-buttons {
  position: relative;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.action-button {
  position: relative;
  min-width: 152px;
  padding: 14px 21px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 14px;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent),
    rgba(10, 13, 5, 0.62);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  text-align: center;
  text-decoration: none;
  text-transform: lowercase;
  cursor: pointer;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 14px 34px rgba(0, 0, 0, 0.26);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.action-button::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-120%);
  background: linear-gradient(
    110deg,
    transparent 20%,
    rgba(223, 255, 79, 0.22) 50%,
    transparent 80%
  );
  transition: transform 520ms ease;
}

.action-button span {
  position: relative;
  z-index: 1;
}

.action-button:hover {
  transform: translateY(-5px) scale(1.025);
  border-color: rgba(223, 255, 79, 0.82);
  box-shadow:
    0 18px 38px rgba(0, 0, 0, 0.36),
    0 0 28px rgba(223, 255, 79, 0.14);
}

.action-button:hover::before {
  transform: translateX(120%);
}

.content-section {
  padding: 110px 0;
}

.section-title-row {
  margin-bottom: 30px;
}

.section-title-row h2 {
  margin: 0;
  font-size: clamp(40px, 6vw, 76px);
  line-height: 0.9;
  font-weight: 800;
  letter-spacing: -0.05em;
  text-transform: lowercase;
}

.lore-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) 1.05fr;
  align-items: stretch;
  gap: 28px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(223, 255, 79, 0.08), transparent 42%),
    var(--panel);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 26px 75px rgba(0, 0, 0, 0.3);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.lore-card:hover {
  transform: translateY(-7px);
  border-color: rgba(223, 255, 79, 0.52);
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.38),
    0 0 34px rgba(223, 255, 79, 0.1);
}

.lore-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(110deg, transparent 30%, rgba(223, 255, 79, 0.06), transparent 70%);
  transform: translateX(-100%);
  transition: transform 700ms ease;
}

.lore-card:hover::before {
  transform: translateX(100%);
}

.lore-art {
  position: relative;
  min-height: 420px;
}

.lore-frame {
  width: 100%;
  height: 100%;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid rgba(223, 255, 79, 0.2);
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.25);
}

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

.lore-stamp {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 9px 12px;
  border: 1px solid rgba(223, 255, 79, 0.34);
  border-radius: 999px;
  background: rgba(5, 7, 2, 0.75);
  color: var(--lime-soft);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: lowercase;
}

.lore-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px 18px;
}

.lore-label {
  width: fit-content;
  margin-bottom: 24px;
  padding: 8px 11px;
  border: 1px solid rgba(223, 255, 79, 0.25);
  border-radius: 999px;
  color: var(--lime);
  background: rgba(223, 255, 79, 0.07);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.lore-main {
  margin: 0;
  font-size: clamp(28px, 4vw, 50px);
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.lore-secondary {
  margin: 22px 0 0;
  color: rgba(247, 255, 225, 0.65);
  font-size: clamp(17px, 2vw, 23px);
  line-height: 1.4;
}

.lore-lines {
  display: grid;
  gap: 9px;
  margin-top: 30px;
}

.lore-lines span {
  padding: 11px 13px;
  border-left: 2px solid var(--lime);
  background: linear-gradient(90deg, rgba(223, 255, 79, 0.09), transparent);
  color: rgba(247, 255, 225, 0.82);
  font-size: 14px;
  letter-spacing: 0.04em;
}

.gallery-section {
  padding-bottom: 140px;
}

.carousel {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) 64px;
  align-items: center;
  gap: 18px;
}

.carousel-stage {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 28px;
  background:
    radial-gradient(circle at center, rgba(223, 255, 79, 0.1), transparent 52%),
    rgba(8, 10, 4, 0.74);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}

.carousel-glow {
  position: absolute;
  width: 440px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(223, 255, 79, 0.08);
  filter: blur(55px);
}

.carousel-stage img {
  position: relative;
  z-index: 1;
  max-width: 88%;
  max-height: 500px;
  object-fit: contain;
  border-radius: 16px;
  filter: drop-shadow(0 20px 34px rgba(0, 0, 0, 0.4));
  transition:
    transform 260ms ease,
    opacity 200ms ease;
}

.carousel-stage:hover img {
  transform: scale(1.025);
}

.carousel-stage img.is-changing {
  opacity: 0;
  transform: scale(0.96);
}

.carousel-counter {
  position: absolute;
  right: 18px;
  bottom: 16px;
  z-index: 2;
  display: flex;
  gap: 6px;
  padding: 9px 12px;
  border: 1px solid rgba(223, 255, 79, 0.2);
  border-radius: 999px;
  background: rgba(5, 7, 2, 0.72);
  color: var(--lime-soft);
  font-size: 13px;
  letter-spacing: 0.08em;
}

.carousel-arrow {
  width: 58px;
  height: 58px;
  border: 1px solid var(--border);
  border-radius: 18px;
  color: var(--text);
  background: rgba(10, 13, 5, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  font-size: 28px;
  cursor: pointer;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.25);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.carousel-arrow:hover {
  transform: scale(1.08);
  border-color: rgba(223, 255, 79, 0.85);
  background: rgba(223, 255, 79, 0.12);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.carousel-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(247, 255, 225, 0.28);
  cursor: pointer;
  transition:
    transform 160ms ease,
    background 160ms ease;
}

.carousel-dot:hover,
.carousel-dot.is-active {
  transform: scale(1.25);
  background: var(--lime);
  box-shadow: 0 0 14px rgba(223, 255, 79, 0.7);
}

@keyframes shake {
  0% { transform: translate(0, 0) rotate(0deg); }
  20% { transform: translate(-5px, 2px) rotate(-2deg); }
  40% { transform: translate(5px, -2px) rotate(2deg); }
  60% { transform: translate(-3px, -1px) rotate(-1deg); }
  80% { transform: translate(4px, 2px) rotate(1deg); }
  100% { transform: translate(0, 0) rotate(0deg); }
}

@keyframes fall {
  from { transform: translate3d(0, -15vh, 0); }
  to { transform: translate3d(var(--drift), 120vh, 0); }
}

@keyframes spin {
  from { rotate: 0deg; }
  to { rotate: 360deg; }
}

@keyframes pulse {
  0%, 100% { transform: scale(0.94); opacity: 0.7; }
  50% { transform: scale(1.06); opacity: 1; }
}

@media (max-width: 980px) {
  .navbar {
    align-items: flex-start;
  }

  .nav-links {
    max-width: 74%;
  }

  .lore-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .navbar {
    position: absolute;
    top: 12px;
    flex-direction: column;
    align-items: stretch;
  }

  .nav-logo {
    justify-content: center;
  }

  .nav-links {
    max-width: none;
    justify-content: center;
  }

  .nav-links a,
  .nav-links button {
    padding: 8px 10px;
    font-size: 13px;
  }

  .hero {
    padding-top: 220px;
  }

  .carousel {
    grid-template-columns: 48px minmax(0, 1fr) 48px;
    gap: 10px;
  }

  .carousel-stage {
    min-height: 430px;
  }

  .carousel-arrow {
    width: 46px;
    height: 46px;
  }
}

@media (max-width: 580px) {
  .section-shell {
    width: min(100% - 20px, 1160px);
  }

  .hero-buttons {
    width: 100%;
  }

  .action-button {
    flex: 1 1 calc(50% - 8px);
    min-width: 0;
  }

  .content-section {
    padding: 78px 0;
  }

  .lore-card {
    padding: 14px;
    border-radius: 20px;
  }

  .lore-frame,
  .lore-art {
    min-height: 330px;
  }

  .lore-copy {
    padding: 18px 8px 10px;
  }

  .carousel {
    grid-template-columns: 1fr;
    position: relative;
  }

  .carousel-stage {
    min-height: 390px;
    order: 1;
    border-radius: 20px;
  }

  .carousel-arrow {
    position: absolute;
    bottom: 14px;
    z-index: 3;
  }

  #previous-meme {
    left: 14px;
  }

  #next-meme {
    right: 14px;
  }

  .carousel-counter {
    right: 50%;
    transform: translateX(50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .falling-lemon,
  .hero-image:hover,
  .hero-glow {
    animation: none;
  }

  * {
    transition-duration: 0.01ms !important;
  }
}


/* schizo mode */

.background-wall {
  animation:
    background-flicker 2.8s steps(2, end) infinite,
    background-jump 6s steps(1, end) infinite;
}

.background-wall video {
  animation: video-pulse 2.2s steps(2, end) infinite;
}

.background-wall video:nth-child(2n) {
  animation-delay: -0.7s;
}

.background-wall video:nth-child(3n) {
  animation-delay: -1.4s;
}

.flash-layer {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(223, 255, 79, 0.32), transparent 30%),
    radial-gradient(circle at 80% 60%, rgba(255, 255, 255, 0.16), transparent 24%);
  mix-blend-mode: screen;
  animation: random-flash 4.8s steps(1, end) infinite;
}

.scanlines {
  position: fixed;
  inset: 0;
  z-index: 7;
  pointer-events: none;
  opacity: 0.08;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0,
    transparent 3px,
    rgba(255, 255, 255, 0.08) 4px
  );
  animation: scanline-drift 7s linear infinite;
}

.screen-glitch {
  position: fixed;
  inset: 0;
  z-index: 9;
  pointer-events: none;
  opacity: 0;
  background:
    linear-gradient(
      90deg,
      rgba(255, 0, 80, 0.05),
      transparent 18%,
      rgba(223, 255, 79, 0.08) 52%,
      transparent 80%
    );
  mix-blend-mode: screen;
  animation: screen-glitch 5.4s steps(1, end) infinite;
}

.navbar,
.action-button,
.lore-card,
.carousel-stage {
  animation: panel-flicker 5.8s steps(1, end) infinite;
}

.hero-image {
  animation: hero-idle-glitch 6.5s steps(1, end) infinite;
}

.hero-image:hover {
  animation:
    shake 360ms steps(2, end) infinite,
    chromatic-jump 650ms steps(2, end) infinite;
}

.section-title-row h2 {
  position: relative;
  text-shadow:
    2px 0 rgba(255, 0, 90, 0.28),
    -2px 0 rgba(223, 255, 79, 0.3);
  animation: title-glitch 4.6s steps(1, end) infinite;
}

.lore-lines span:nth-child(odd) {
  animation: line-pulse 2.7s steps(2, end) infinite;
}

.lore-lines span:nth-child(even) {
  animation: line-pulse 2.7s steps(2, end) infinite reverse;
}

.falling-lemon {
  z-index: 30;
  opacity: 1;
  filter:
    drop-shadow(0 0 10px rgba(223, 255, 79, 0.42))
    drop-shadow(5px 0 0 rgba(255, 0, 90, 0.08));
  animation:
    money-fall var(--duration) linear infinite,
    money-spin var(--spin-duration) linear infinite;
  animation-delay:
    var(--delay),
    var(--delay);
}

.falling-lemon:nth-child(3n) {
  filter:
    drop-shadow(0 0 16px rgba(223, 255, 79, 0.55))
    hue-rotate(18deg);
}

.falling-lemon:nth-child(5n) {
  animation:
    money-fall var(--duration) linear infinite,
    money-spin var(--spin-duration) linear infinite;
  animation-delay:
    var(--delay),
    var(--delay);
}

body.is-glitching main {
  animation: body-glitch 130ms steps(2, end);
}

body.is-glitching .navbar {
  transform: translateX(-50%) translateX(4px);
}

body.is-glitching .background-wall {
  filter: hue-rotate(22deg) contrast(1.3) saturate(1.45);
}

@keyframes background-flicker {
  0%, 7%, 9%, 32%, 34%, 67%, 69%, 100% {
    filter: brightness(0.92) contrast(1.05);
  }
  8%, 33%, 68% {
    filter: brightness(1.32) contrast(1.22) saturate(1.4);
  }
}

@keyframes background-jump {
  0%, 91%, 100% {
    transform: scale(1.08) translate(0, 0);
  }
  92% {
    transform: scale(1.12) translate(-8px, 5px);
  }
  94% {
    transform: scale(1.1) translate(9px, -4px);
  }
  96% {
    transform: scale(1.08) translate(0, 0);
  }
}

@keyframes video-pulse {
  0%, 84%, 100% {
    filter: saturate(1.2) contrast(1.08) brightness(0.96);
  }
  85%, 88% {
    filter: saturate(1.75) contrast(1.28) brightness(1.22) hue-rotate(10deg);
  }
}

@keyframes random-flash {
  0%, 14%, 16%, 38%, 40%, 67%, 69%, 89%, 91%, 100% {
    opacity: 0;
  }
  15%, 39%, 68%, 90% {
    opacity: 0.85;
  }
}

@keyframes scanline-drift {
  from {
    transform: translateY(-20px);
  }
  to {
    transform: translateY(20px);
  }
}

@keyframes screen-glitch {
  0%, 75%, 77%, 84%, 86%, 100% {
    opacity: 0;
    transform: translateX(0);
  }
  76%, 85% {
    opacity: 1;
    transform: translateX(8px);
  }
}

@keyframes panel-flicker {
  0%, 54%, 56%, 83%, 85%, 100% {
    filter: none;
  }
  55% {
    filter: brightness(1.15) saturate(1.2);
  }
  84% {
    filter: brightness(0.82) contrast(1.15);
  }
}

@keyframes hero-idle-glitch {
  0%, 88%, 90%, 94%, 96%, 100% {
    transform: translate(0, 0);
  }
  89% {
    transform: translate(-5px, 2px) rotate(-1deg);
  }
  95% {
    transform: translate(6px, -2px) rotate(1deg);
  }
}

@keyframes chromatic-jump {
  0%, 100% {
    filter:
      drop-shadow(0 28px 40px rgba(0, 0, 0, 0.52))
      drop-shadow(0 0 34px rgba(223, 255, 79, 0.5));
  }
  50% {
    filter:
      drop-shadow(7px 0 0 rgba(255, 0, 100, 0.28))
      drop-shadow(-7px 0 0 rgba(223, 255, 79, 0.32))
      drop-shadow(0 0 38px rgba(223, 255, 79, 0.6));
  }
}

@keyframes title-glitch {
  0%, 77%, 79%, 88%, 90%, 100% {
    transform: translateX(0);
  }
  78% {
    transform: translateX(-4px) skewX(-3deg);
  }
  89% {
    transform: translateX(5px) skewX(3deg);
  }
}

@keyframes line-pulse {
  0%, 100% {
    opacity: 0.65;
    transform: translateX(0);
  }
  50% {
    opacity: 1;
    transform: translateX(5px);
  }
}

@keyframes lemon-blink {
  0%, 72%, 76%, 100% {
    opacity: var(--opacity);
  }
  73%, 75% {
    opacity: 1;
  }
}

@keyframes fall-zigzag {
  0% {
    transform: translate3d(0, -15vh, 0);
  }
  25% {
    transform: translate3d(35px, 20vh, 0);
  }
  50% {
    transform: translate3d(-30px, 55vh, 0);
  }
  75% {
    transform: translate3d(45px, 88vh, 0);
  }
  100% {
    transform: translate3d(var(--drift), 120vh, 0);
  }
}

@keyframes spin-reverse {
  from {
    rotate: 360deg;
  }
  to {
    rotate: 0deg;
  }
}

@keyframes body-glitch {
  0% {
    transform: translateX(0);
    filter: none;
  }
  50% {
    transform: translateX(-5px);
    filter: hue-rotate(18deg) contrast(1.2);
  }
  100% {
    transform: translateX(4px);
    filter: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .background-wall,
  .background-wall video,
  .flash-layer,
  .scanlines,
  .screen-glitch,
  .navbar,
  .action-button,
  .lore-card,
  .carousel-stage,
  .hero-image,
  .section-title-row h2,
  .lore-lines span,
  .falling-lemon {
    animation: none !important;
  }
}


@keyframes money-fall {
  0% {
    transform: translate3d(0, -12vh, 0);
  }
  100% {
    transform: translate3d(var(--drift), 118vh, 0);
  }
}

@keyframes money-spin {
  0% {
    rotate: 0deg;
  }
  25% {
    rotate: 90deg;
  }
  50% {
    rotate: 180deg;
  }
  75% {
    rotate: 270deg;
  }
  100% {
    rotate: 360deg;
  }
}
