:root {

  --color-bg-0: #000000;

  --color-bg-1: #0c0c0c;

  --color-text: #ffffff;

  --color-text-muted: #ffffff;

  --accent: #b5800e;

  --accent-2: #f5c43b;

  --gold: #7a5a0b;

  --color-surface: rgba(26, 16, 3, 0.18);

  --color-border: hsla(0, 0%, 100%, 0.5);

  --shadow-elev: 0 24px 64px rgba(0, 0, 0, 0.65);
  --radius-lg: 28px;
  --radius-pill: 15px;
  --space-1: 8px;
  --space-2: 12px;
  --space-3: 16px;
  --space-4: 20px;
  --space-5: 24px;
  --space-6: 32px;
  --transition-fast: .15s ease;
  --loading: white;
  --bg-loading: rgba(0, 0, 0, 0.5);
  --bg-line-square: rgba(59, 48, 13, 0.35);
  --bg-star: rgba(255, 255, 255, 0.25);
  --bg-noise: rgba(255, 255, 255, 0.03);

  --color-main: #00581afb;
  --color-main-2: color-mix(in srgb, var(--color-main) 12%, transparent);
  --secundaria: var(--color-main);
  --ghostwhite: #f8f8ff;
  --title: var(--ghostwhite);
  --border-radius: 1rem;
  --page-bg:
    radial-gradient(520px 520px at 50% 0%, rgba(46, 139, 87, 0.16), transparent 65%),
    radial-gradient(560px 560px at 50% 100%, rgba(46, 139, 87, 0.14), transparent 65%),
    radial-gradient(1200px 600px at 50% -10%, rgba(0, 0, 0, 0.1), transparent 70%),
    radial-gradient(900px 600px at -10% 110%, rgba(0, 0, 0, 0.1), transparent 60%),
    linear-gradient(to bottom, #0c0c0c 0%, hsl(0, 0%, 1%) 100%),
    #000000;
  --header-bg: rgba(7, 7, 8, 0.75);
  --register-glitch-x: -6px;
  --register-glitch-y: -4px;
  --register-glitch-x-strong: -10px;
  --register-glitch-y-strong: -7px;
}

*,
*::before,
*::after {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

input,
textarea,
select,
button {
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}

.menu {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  width: min(420px, 92vw);
  z-index: 30;
  padding: 8px;
  background: rgba(0, 0, 0, 0.72);
  border: 1px solid rgba(var(--accent-rgb), 0.25);
  border-radius: 999px;
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.55),
    inset 0 0 25px rgba(var(--accent-rgb), 0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.menu nav {
  display: flex;
  gap: 12px;
  width: 100%;
}

.menu a {
  flex: 1;
  height: 30px;
  display: grid;
  place-items: center;
  text-align: center;
  color: rgba(255, 255, 255, 0.85);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(var(--accent-rgb), 0.2);
  transition: transform 150ms ease, box-shadow 150ms ease, border-color 150ms ease, color 150ms ease;
}

.menu a i {
  font-size: 1rem;
}

.menu a.is-active {
  color: #eafff5;
  background: rgba(var(--accent-rgb), 0.12);
  border-color: rgba(var(--accent-rgb), 0.7);
  box-shadow:
    0 0 0 1px rgba(var(--accent-rgb), 0.35),
    0 0 16px rgba(var(--accent-rgb), 0.35);
}

.menu a:hover {
  transform: translateY(-1px);
}

.app-content {
  padding-bottom: 96px;
}

@media (min-width: 768px) {
  .menu {
    display: none;
  }

  .app-content {
    padding-bottom: 24px;
  }
}

.menu-modal[hidden] {
  display: none;
}

.menu-modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.menu-modal__scrim {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}

.menu-modal__dialog {
  position: relative;
  width: min(720px, 92vw);
  height: 100%;
  border-radius: 18px;
  background: rgba(6, 18, 12, 0.98);
  border: 1px solid rgba(46, 139, 87, 0.35);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  overflow: hidden;
  z-index: 1;
}

.menu-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid rgba(46, 139, 87, 0.4);
  background: rgba(6, 18, 12, 0.8);
  color: #eafff5;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 10;
  pointer-events: auto;
}

.menu-modal__dialog iframe {
  width: 100%;
  height: 100%;
  border: 0;
  position: relative;
  z-index: 0;
  pointer-events: auto;
}

.notification {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 5px 12px;
  width: min(320px, calc(100vw - 24px));
  min-height: 56px;
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 9999;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 1.3rem;
  --border-strong: rgba(235, 235, 245, 0.9);
  --border-soft: rgba(190, 190, 205, 0.6);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
  color: #e6e6e6;
  margin: 0;
  margin-top: 1rem;
  user-select: none;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  transform: translateX(-50%) scale(0.92);
  will-change: transform, opacity;
}

.notification.vip {
  --border-strong: rgba(245, 196, 59, 0.95);
  --border-soft: rgba(181, 128, 14, 0.7);
}

.notification-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  padding: 2px 10px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: #1b1003;
  background: rgba(245, 196, 59, 0.95);
  border: 1px solid rgba(181, 128, 14, 0.7);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.35);
  opacity: 0;
  pointer-events: none;
}

.notification.vip .notification-badge {
  opacity: 1;
}

.notification::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background:
    radial-gradient(140% 120% at 100% 100%, var(--border-strong) 0%, var(--border-soft) 35%, rgba(0, 0, 0, 0) 60%),
    radial-gradient(140% 120% at 0% 0%, var(--border-strong) 0%, var(--border-soft) 35%, rgba(0, 0, 0, 0) 60%);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask-composite: exclude;
  pointer-events: none;
}

.notification img {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: block;
}

.notification-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.notification-title-hour {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  flex-wrap: wrap;
  min-width: 0;
}

.notification h1 {
  margin: 0;
  font-size: clamp(0.85rem, 2.6vw, 0.95rem);
  font-weight: 700;
  color: #f1f1f1;
  overflow-wrap: anywhere;
}

.notification-time {
  font-size: 11px;
  color: #bdbdbd;
  white-space: nowrap;
}

.notification p {
  margin: 0;
  font-size: clamp(0.7rem, 2.2vw, 0.8rem);
  line-height: 1.2;
  color: #c9c9c9;
  overflow-wrap: anywhere;
}

.background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.background_grid-square {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    linear-gradient(90deg, var(--bg-line-square) 1px, transparent 1px) 0 0 / 40px 40px,
    linear-gradient(0deg, var(--bg-line-square) 1px, transparent 1px) 0 0 / 40px 40px;
  opacity: 0.25;
  pointer-events: none;
  z-index: 1;
}

.background_star {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}


.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  background-color: var(--bg-loading);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

@keyframes orbit7456 {
  0% {}

  80%,
  100% {
    transform: rotate(360deg);
  }
}



@keyframes noise {

  0%,
  100% {
    transform: translate(0, 0);
  }

  10% {
    transform: translate(-5%, -5%);
  }

  20% {
    transform: translate(-10%, 5%);
  }

  30% {
    transform: translate(5%, -10%);
  }

  40% {
    transform: translate(-5%, 15%);
  }

  50% {
    transform: translate(-10%, 5%);
  }

  60% {
    transform: translate(15%, 0);
  }

  70% {
    transform: translate(0, 10%);
  }

  80% {
    transform: translate(-15%, 0);
  }

  90% {
    transform: translate(10%, 5%);
  }
}

.star {
  position: absolute;
  width: 1px;
  height: 1px;
  background: var(--bg-star);
  border-radius: 100%;
  opacity: 0.8;
  animation: moveStar linear infinite;
}

@keyframes moveStar {
  0% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }

  100% {
    transform: translateY(-120vh) scale(0.8);
    opacity: 0;
  }
}


* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  margin: 0;
  font-family: "Archivo Black", sans-serif;
  color: var(--color-text);
  overflow-x: hidden;


  background:
    radial-gradient(1200px 600px at 50% -10%, rgba(0, 0, 0, 0.1), transparent 70%),
    radial-gradient(900px 600px at -10% 110%, rgba(0, 0, 0, 0.1), transparent 60%),
    linear-gradient(to bottom, var(--color-bg-1) 0%, hsl(0, 0%, 1%) 100%),
    var(--color-bg-0);
}


body {
  scrollbar-width: thin;
  scrollbar-color: var(--accent) transparent;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

body::before {
  background:
    radial-gradient(520px 520px at 50% 0%, rgba(46, 139, 87, 0.16), transparent 65%);
  filter: blur(24px);
}

body::after {
  background:
    radial-gradient(560px 560px at 50% 100%, rgba(46, 139, 87, 0.14), transparent 65%);
  filter: blur(26px);
}


body::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

body::-webkit-scrollbar-track {
  background: transparent;
}

body::-webkit-scrollbar-thumb {
  background: color-mix(in srgb, var(--accent) 85%, #000 15%);
  border-radius: 9999px;
}

body::-webkit-scrollbar-thumb:hover {
  background: color-mix(in srgb, var(--accent) 100%, #000 0%);
}

header {
  text-align: end;
}

.app-content {
  scrollbar-width: thin;
  scrollbar-color: var(--accent) transparent;
}

.app-content::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

.app-content::-webkit-scrollbar-thumb {
  background: color-mix(in srgb, var(--accent) 85%, #000 15%);
  border-radius: 9999px;
}


.sidebar-right .side-card+.side-card {
  margin-top: var(--space-3);
}

.side-card {
  background: color-mix(in srgb, var(--color-bg-1) 70%, #111 30%);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: var(--space-3);
}

.side-subtitle {
  margin: 0 0 6px;
  font-size: 0.95rem;
}

.side-desc {
  margin: 0 0 10px;
  color: var(--color-text-muted);
  font-size: 0.9rem;
}


.card {
  width: min(92vw, 420px);
  height: min(92vh, 860px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;

  padding: clamp(20px, 3vh, 28px) clamp(18px, 5vw, 28px);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(8px);
  text-align: center;
  animation: rise-in .7s cubic-bezier(.2, .7, .2, 1) .05s both;
}

@keyframes radar-spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes radar-fly {
  0% {
    top: var(--dot-start-top);
    left: var(--dot-start-left);
  }

  100% {
    top: var(--dot-end-top);
    left: var(--dot-end-left);
  }

  5%,
  15%,
  25%,
  35%,
  45%,
  55%,
  65%,
  75%,
  85%,
  95% {
    background: rgba(255, 255, 255, 1);
    box-shadow: inset 0 0 10px 2px rgba(0, 255, 182, 0.5),
      0 0 15px 2px rgba(0, 255, 135, 1);
  }

  0%,
  10%,
  20%,
  30%,
  40%,
  50%,
  60%,
  70%,
  80%,
  90% {
    background: rgba(255, 255, 255, 0.3);
    box-shadow: inset 0 0 10px 2px rgba(0, 255, 182, 0.5),
      0 0 5px 2px rgba(0, 255, 135, 0.3);
  }
}

.subtitle {
  margin: 0;
  opacity: 0.85;
  font-size: clamp(14px, 3.2vw, 16px);
  color: white;
}

@keyframes attract {

  0%,
  100% {
    transform: scale(1)
  }

  50% {
    transform: scale(1.08)
  }
}

@keyframes ring-pulse {
  0% {
    opacity: .15;
    transform: scale(0.88);
  }

  40% {
    opacity: .55;
  }

  100% {
    opacity: 0;
    transform: scale(1.28);
  }
}

@keyframes ripple-expand {
  to {
    transform: translate(-50%, -50%) scale(3.2);
    opacity: 0;
  }
}

@keyframes orb-blink {

  0%,
  100% {
    filter: brightness(1);
    box-shadow: inset 0 4px 3px rgba(242, 207, 99, 0.16), inset 0 -5px 4px rgba(212, 160, 23, 0.28), 0 0 10px rgba(242, 207, 99, 0.12);
  }

  50% {
    filter: brightness(1.12);
    box-shadow: inset 0 7px 4px rgba(242, 207, 99, 0.35), inset 0 -7px 5px rgba(212, 160, 23, 0.5), 0 0 24px rgba(242, 207, 99, 0.28);
  }
}

@keyframes cta-blink {

  0%,
  100% {
    filter: brightness(1);
    box-shadow: 0 0 10px rgba(25, 255, 157, 0.25), inset 0 0 0 1px rgba(25, 255, 157, 0.16);
  }

  50% {
    filter: brightness(1.12);
    box-shadow: 0 0 16px rgba(25, 255, 157, 0.45), inset 0 0 0 1px rgba(25, 255, 157, 0.24);
  }
}

@keyframes icon-blink {

  0%,
  100% {
    opacity: 0.78;
    text-shadow: 0 0 2px rgba(255, 255, 255, 0.22), 0 0 7px rgba(242, 207, 99, 0.16);
  }

  50% {
    opacity: 1;
    text-shadow: 0 0 7px rgba(255, 255, 255, 0.6), 0 0 16px rgba(242, 207, 99, 0.35);
  }
}

.btn,
.boost-btn {
  text-decoration: none;
  appearance: none;
  position: relative;
  overflow: hidden;
  border: 2px solid var(--accent);
  background: rgba(var(--accent-rgb), 0.18);
  color: var(--accent);
  font-weight: 800;
  height: 48px;
  padding: 0.3em 2.7em;
  border-radius: 1rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  letter-spacing: 0.04em;
  line-height: 1.4em;
  text-transform: uppercase;
  text-align: center;
  transition: transform .15s ease, box-shadow .25s ease, color .25s ease;
  box-shadow:
    0 0 0 1px rgba(var(--accent-rgb), 0.25) inset,
    0 0 12px rgba(var(--accent-rgb), 0.35),
    0 0 24px rgba(var(--accent-rgb), 0.2);
}

.btn.pill {
  width: auto;
  min-width: 160px;
  justify-content: center;
}

.btn:hover,
.boost-btn:hover {
  color: #fff;
  box-shadow:
    0 0 0 1px rgba(var(--accent-rgb), 0.35) inset,
    0 0 16px rgba(var(--accent-rgb), 0.55),
    0 0 32px rgba(var(--accent-rgb), 0.35);
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(1px);
}

@media (hover: hover) and (pointer: fine) {

  .btn::before,
  .boost-btn::before {
    content: "";
    position: absolute;
    left: -4em;
    width: 4em;
    height: 100%;
    top: 0;
  }

  .btn:hover::before,
  .boost-btn:hover::before {
    transform: translateX(15em);
  }
}

.btn .label {
  font-weight: 700;
  letter-spacing: .2px;
}

.btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(27, 253, 156, 0.55), 0 8px 20px rgba(0, 0, 0, 0.45);
}


@media (prefers-reduced-motion: reduce) {

  .btn {
    transition: none !important;
  }

  .btn::before {
    display: none !important;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
  }
}

.btn[disabled] {
  opacity: .6;
  cursor: not-allowed;
}

.btn.loading .label {
  opacity: 0;
}


@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes fade-in {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(10px) scale(.985)
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1)
  }
}

@keyframes bump-in {
  from {
    opacity: 0;
    transform: translateY(8px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes logo-enter {
  from {
    opacity: 0;
    transform: translateY(-6px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes float-y {
  0% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-6px)
  }

  100% {
    transform: translateY(0)
  }
}

@keyframes shadow-pulse {

  0%,
  100% {
    box-shadow: 0 0 0 2px rgba(242, 207, 99, 0.10) inset, 0 10px 26px rgba(0, 0, 0, 0.5), 0 0 30px rgba(242, 207, 99, 0.10)
  }

  50% {
    box-shadow: 0 0 0 2px rgba(242, 207, 99, 0.18) inset, 0 12px 30px rgba(0, 0, 0, 0.6), 0 0 40px rgba(242, 207, 99, 0.2)
  }
}

@media (max-width: 480px) {
  .card {
    border-radius: 26px;
  }
}

@media (min-width: 768px) {
  .card {
    width: min(80vw, 440px);
    height: min(90vh, 880px);
    border-radius: 30px;
  }
}

@media (min-width: 1024px) {
  body {
    background-attachment: fixed;
  }
}

.app-layout {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr;

  gap: 0;
  position: relative;
  z-index: 1;
}

@supports (height: 100dvh) {
  .app-layout {
    min-height: 100dvh;
  }
}

.sidebar,
.sidebar-right {
  position: sticky;
  top: 0;
  height: 100vh;
  background:
    linear-gradient(180deg, rgba(var(--accent-rgb), 0.18), rgba(0, 0, 0, 0.9)),
    rgba(0, 0, 0, 0.2);
  border-right: 1px solid rgba(var(--accent-rgb), 0.35);
  border-bottom: 1px solid rgba(var(--accent-rgb), 0.3);
  box-shadow:
    0 16px 32px rgba(0, 0, 0, 0.55),
    inset 0 0 30px rgba(var(--accent-rgb), 0.05);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-radius: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform var(--transition-fast);
  will-change: transform;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}


.sidebar-close {
  display: none;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid rgba(242, 207, 99, 0.22);
  background: rgba(255, 255, 255, 0.06);
  color: var(--color-text);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

@media (min-width: 1024px) {
  .sidebar {
    position: sticky;
  }

  .sidebar-top {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .sidebar-close {
    display: none;
  }
}

@media (max-width: 1023px) {
  .sidebar-top {
    position: relative;
  }

  .sidebar-close {
    display: inline-flex;
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 10000;
  }
}

.side-nav,
.sidebar-right .side-nav {
  display: grid;
  gap: 8px;
  margin-top: 1.5rem;
}


.sidebar .side-link,
.sidebar-right .side-link,
.sidebar .radio-container label,
.sidebar-right .radio-container label {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

.side-link {
  color: var(--color-text-muted);
  text-decoration: none;
  padding: 10px 12px;
  border-radius: 10px;
  transition: background var(--transition-fast), color var(--transition-fast);
}

.side-link:hover {
  background: rgba(242, 207, 99, 0.08);
  color: var(--color-text);
}

.side-link.active {
  background: rgba(255, 255, 255, 0.12);
  color: var(--color-text);
}

.radio-container {
  --main-color: #25f493;
  --main-color-opacity: rgba(37, 244, 147, 0.25);
  --total-radio: 3;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 1rem 0 1rem 0.5rem;
}

.radio-container input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
  border: 0;
}

.radio-container label {
  cursor: pointer;
  color: white;
  letter-spacing: 0.08em;
  font-size: 1rem;
  text-transform: uppercase;
  padding: 0.75rem 0.25rem;
  transition: color 0.3s ease, transform 0.3s ease;
}

.radio-container label:hover {
  color: #f1fff7;
}

.radio-container input:checked+label {
  color: var(--accent);
  transform: translateX(0.15rem);
}

.radio-container .glider-container {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(0deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(27, 27, 27, 1) 50%,
      rgba(0, 0, 0, 0) 100%);
}

.radio-container .glider {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: calc(100% / var(--total-radio));
  background: linear-gradient(0deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(var(--accent-rgb), 0.3) 50%,
      rgba(0, 0, 0, 0) 100%);
  transition: transform 0.45s cubic-bezier(0.37, 1.95, 0.66, 0.56);
}

.radio-container .glider::before,
.radio-container .glider::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
}

.radio-container .glider::before {
  height: 60%;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(var(--accent-rgb), 0.18);
  filter: blur(12px);
}

.radio-container .glider::after {
  height: 100%;
  width: 160px;
  background: linear-gradient(90deg,
      rgba(var(--accent-rgb), 0.55) 0%,
      rgba(0, 0, 0, 0) 100%);
}

.radio-container input:nth-of-type(1):checked~.glider-container .glider {
  transform: translateY(0);
}

.radio-container input:nth-of-type(2):checked~.glider-container .glider {
  transform: translateY(100%);
}

.radio-container input:nth-of-type(3):checked~.glider-container .glider {
  transform: translateY(200%);
}

.radio-container input:nth-of-type(4):checked~.glider-container .glider {
  transform: translateY(275%);
}

.radio-container input:focus-visible+label {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

body.sidebar-no-active .radio-container input:checked+label {
  color: rgba(191, 247, 218, 0.8);
  transform: none;
}

body.sidebar-no-active .radio-container .glider,
body.sidebar-no-active .radio-container input:checked~.glider-container .glider {
  opacity: 0;
  pointer-events: none;
  transform: none;
}

.app-content {
  padding: 24px clamp(16px, 4vw, 48px);
  min-width: 0;
  position: relative;
  z-index: 1;
}

.app-content:focus {
  outline: none;
}

.app-green {
  --color-text: #ffffff;
  --color-text-muted: rgba(191, 247, 218, 0.7);
  --accent: #2e8b57;
  --accent-2: #7aeab4;
  --color-border: rgba(46, 139, 87, 0.3);
}

.app-green .app-content {
  gap: 22px;
}

.app-green .sidebar,
.app-green .sidebar-right {
  background:
    linear-gradient(180deg, rgba(var(--accent-rgb), 0.15), rgba(0, 0, 0, 0.9)),
    rgba(0, 0, 0, 0.2);
  border-color: rgba(var(--accent-rgb), 0.35);
  box-shadow:
    0 16px 32px rgba(0, 0, 0, 0.5),
    inset 0 0 28px rgba(var(--accent-rgb), 0.04);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
}

.app-green .sidebar-close {
  border-color: rgba(46, 139, 87, 0.35);
  color: #eafff5;
}

.app-green .side-link:hover {
  background: rgba(46, 139, 87, 0.15);
  color: #eafff5;
}

.app-green .side-link.active {
  background: rgba(46, 139, 87, 0.22);
  color: #eafff5;
}

.app-green .slider-btn {
  border-color: rgba(var(--accent-rgb), 0.4);
  background: rgba(var(--accent-rgb), 0.18);
  color: var(--accent);
  box-shadow:
    inset 0 0 0 1px rgba(var(--accent-rgb), 0.18),
    0 0 18px rgba(var(--accent-rgb), 0.45);
}

.app-green .game-card {
  border-color: rgba(var(--accent-rgb), 0.4);
  background:
    linear-gradient(180deg, rgba(var(--accent-rgb), 0.08), rgba(0, 0, 0, 0.7)),
    rgba(0, 0, 0, 0.65);
  box-shadow:
    inset 0 0 0 1px rgba(var(--accent-rgb), 0.08),
    0 18px 30px rgba(0, 0, 0, 0.45);
}

.app-green .wins-table {
  background: linear-gradient(180deg, rgba(8, 6, 3, 0.98), rgba(0, 0, 0, 0.9));
}

.app-green .wins-head {
  background: linear-gradient(90deg, rgba(245, 196, 59, 0.12), rgba(0, 0, 0, 0));
}

.app-green .btn {
  border-color: var(--accent);
  background: linear-gradient(to right, rgba(var(--accent-rgb), 0.1) 1%, transparent 40%, transparent 60%, rgba(var(--accent-rgb), 0.1) 100%);
  color: var(--accent);
  box-shadow: inset 0 0 10px rgba(var(--accent-rgb), 0.4), 0 0 9px 3px rgba(var(--accent-rgb), 0.1);
}

.app-green .btn:hover {
  color: #82ffc9;
  box-shadow: inset 0 0 10px rgba(27, 253, 156, 0.6), 0 0 9px 3px rgba(27, 253, 156, 0.2);
}

@keyframes hero-pulse {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(25, 255, 157, 0.45), 0 0 18px rgba(25, 255, 157, 0.35);
  }

  50% {
    transform: scale(1.04);
    box-shadow: 0 0 0 10px rgba(25, 255, 157, 0), 0 0 26px rgba(25, 255, 157, 0.55);
  }
}

@keyframes vsl-pulse {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 18px rgba(46, 139, 87, 0.4), inset 0 0 12px rgba(25, 255, 157, 0.18);
  }

  50% {
    transform: scale(1.06);
    box-shadow: 0 0 26px rgba(46, 139, 87, 0.7), inset 0 0 18px rgba(25, 255, 157, 0.3);
  }
}

@keyframes vsl-glow {

  0%,
  100% {
    opacity: 0.6;
  }

  50% {
    opacity: 1;
  }
}

@keyframes hint-left {

  0%,
  100% {
    transform: translateX(0);
    opacity: .7
  }

  50% {
    transform: translateX(-6px);
    opacity: 1
  }
}

@keyframes hint-right {

  0%,
  100% {
    transform: translateX(0);
    opacity: .7
  }

  50% {
    transform: translateX(6px);
    opacity: 1
  }
}

.game-card.is-locked .btn {
  opacity: 0.5;
  pointer-events: none;
  filter: grayscale(0.2);
}

.game-card.is-locked .btn.pill.small {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.6);
}

.scan-validity {
  margin-top: 6px;
  font-size: 10px;
  text-align: center;
  color: white;
  letter-spacing: .2px;
}

@keyframes card-pop {
  0% {
    transform: translateY(0);
  }

  60% {
    transform: translateY(-8px);
  }

  100% {
    transform: translateY(-4px);
  }
}

.btn.small {
  height: 40px;
  padding: 0 14px;
}

@keyframes live-blink {

  0%,
  100% {
    transform: scale(0.85);
    opacity: 0.4;
  }

  50% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes rank-float {

  0%,
  100% {
    transform: translateY(calc(var(--rank-offset) + 0px)) scale(var(--rank-scale));
  }

  50% {
    transform: translateY(calc(var(--rank-offset) + var(--rank-float))) scale(var(--rank-scale));
  }
}

.wins-cta .btn {
  width: 100%;
}

.wins-cta .boost-btn {
  width: 100%;

}

.btn.btn-gold {
  background: linear-gradient(180deg, #f5c43b 0%, #b5800e 100%) !important;
  color: #1b1003 !important;
  border-color: rgba(245, 196, 59, 0.7) !important;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.35), 0 0 12px rgba(245, 196, 59, 0.4) !important;
}

.btn.btn-gold:hover {
  filter: brightness(1.05);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.45), 0 0 16px rgba(245, 196, 59, 0.6);
}

.wins-track {
  will-change: transform;
}

.sidebar-right {
  display: none;
  position: sticky;
  top: 0;
  height: 100vh;
  padding: 20px 16px;
  background: rgba(4, 6, 3, 0.7);
  border-left: 1px solid rgba(30, 145, 90, 0.35);
  box-shadow: 0 25px 40px rgba(0, 0, 0, 0.6), inset 0 0 25px rgba(46, 139, 87, 0.1);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 0;
  flex-direction: column;
  gap: 16px;
}

.sidebar-right .side-card {
  border: 1px solid rgba(46, 139, 87, 0.4);
  border-radius: 18px;
  background: rgba(9, 17, 11, 0.65);
  padding: 22px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.55), inset 0 0 30px rgba(46, 139, 87, 0.25);
  backdrop-filter: blur(26px);
  -webkit-backdrop-filter: blur(26px);
}

@media (min-width: 1024px) {
  .wins-row {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.6fr) minmax(0, 0.8fr);
  }

  .wins-head {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.6fr) minmax(0, 0.8fr);
  }

  .header-logo {
    height: 100px;
    width: auto;
    display: block;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, .35));
    margin: 0 auto 1rem;
  }

  .hamburger {
    display: none;
  }

  .app-layout {
    grid-template-columns: 240px minmax(0, 1fr);
  }
}

@media (max-width: 1024px) {
  .sidebar-right {
    display: none !important;
  }
}

@media (min-width: 1024px) {
  .bottom-nav {
    display: none !important;
  }
}

.header-cta {
  display: none;
}

@media (max-width: 680px) {
  .wins-head {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    background: rgba(255, 255, 255, 0.04);
  }

  .wins-head .wins-cell {
    font-weight: 700;
    color: var(--color-text-muted);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .3px;
    white-space: nowrap;
  }


  .wins-row {
    grid-template-columns: auto minmax(0, 1fr) auto;
    grid-template-rows: auto;
    align-items: center;
    gap: 6px 8px;
    padding: 8px 10px;
  }

  .wins-row .col-user,
  .wins-row .col-game,
  .wins-row .col-amount {
    grid-column: auto;
    grid-row: auto;

  }

  .wins-row .col-amount {
    justify-self: end;
  }
}

@media (max-width: 680px) {

  .wins-head {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    background: rgba(255, 255, 255, 0.04);
  }

  .wins-head .wins-cell {
    font-weight: 700;
    color: var(--color-text-muted);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .3px;
    white-space: nowrap;
  }

  .wins-row {
    grid-template-columns: auto minmax(0, 1fr) auto;
    grid-template-rows: auto;
    align-items: center;
    gap: 6px 8px;
    padding: 8px 10px;
  }

  .wins-row .col-user,
  .wins-row .col-game,
  .wins-row .col-amount {
    grid-column: auto;
    grid-row: auto;

  }

  .wins-row .col-amount {
    justify-self: end;
  }
}

.app-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 1rem;
  z-index: 2;
}

.app-header .hamburger {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.app-header .header-cta {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  min-width: 0;
  font-size: 12px;
  text-transform: none;
  letter-spacing: 0.02em;
}

.app-header .header-cta-btn {
  height: auto;
  padding: 10px 12px;
  border-width: 1px;
  border-radius: 2rem;
  background: linear-gradient(90deg, rgba(var(--accent-rgb), 0.35) 0%, rgba(var(--accent-rgb), 0.05) 100%);
  color: var(--accent);
  border-color: rgba(var(--accent-rgb), 0.7);
  box-shadow: 0 0 5px rgba(var(--accent-rgb), 0.25), inset 0 0 0 1px rgba(var(--accent-rgb), 0.16);
  display: none !important;
}

@media (max-width: 767px) {
  .app-header .header-cta-btn {
    display: inline-flex !important;
  }
}

.header-logo {
  height: 54px;
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.35));
  animation: logo-enter .7s ease .15s both, float-y 4.2s ease-in-out .4s infinite;
}


@media (min-width: 481px) and (max-width: 1023px) {
  .app-header {
    min-height: 56px;
    padding: 6px 12px;
  }

  .app-header .hamburger {
    left: 12px;
    width: 40px;
    height: 40px;
    display: inline-flex;
    border-radius: 0px;
  }

  .app-header .header-cta {
    right: 12px;
  }

  .header-logo {
    height: 54px;
  }
}

@media (min-width: 1024px) {
  .header-logo {
    height: 40px;
  }

  .app-header .header-cta {
    right: 0;
  }
}

@media (min-width: 1024px) {
  .app-header {
    position: relative;
    width: 100%;
    justify-content: flex-end;
  }

  .app-header .header-cta {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }
}

.hamburger {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 1px solid rgba(46, 139, 87, 0.45);
  background: linear-gradient(180deg, rgba(10, 30, 20, 0.85), rgba(4, 12, 8, 0.85));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 0 12px rgba(46, 139, 87, 0.35);
  cursor: pointer;
  padding: 8px;
  display: none;

  align-items: center;
  justify-content: center;
}

.hamburger i {
  font-size: 22px;
  color: #fff;
  line-height: 1;
}

.hamburger:hover {
  filter: brightness(1.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 6px 12px rgba(0, 0, 0, 0.45);
}

.hamburger:active {

  filter: brightness(0.96);
}

.bottom-nav {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: space-around;
  gap: 18px;
  padding: 12px 16px;
  background: linear-gradient(180deg, rgba(6, 8, 12, 0.6), rgba(6, 8, 12, 0.9));
  border-top: 1px solid rgba(242, 207, 99, 0.12);
  backdrop-filter: blur(8px);
  z-index: 9999;
}

.nav-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(242, 207, 99, 0.22);
  background: linear-gradient(#fffdf6, #fff6d8);
  color: #3e2a00;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.35);
}

.nav-btn:active {
  transform: translateY(1px);
}

@media (min-width: 1024px) {

  .bottom-nav {
    display: none;
  }

  .slider-controls {
    display: flex;
    gap: 8px;
  }

  .slider-viewport {
    overflow: hidden;
  }

  .slider-track {
    flex-wrap: nowrap;
    overflow-x: auto;
    cursor: default;
  }

  .app-layout.collapsed {
    grid-template-columns: 0 1fr 300px;
  }

  .app-layout.collapsed .sidebar {
    width: 0;
    padding: 0;
    border-right: 0;
    overflow: hidden;
  }

  .app-layout.collapsed .hamburger {
    display: inline-flex;
  }
}


@media (max-width: 1023px) {
  .app-layout {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: 82vw;
    max-width: 320px;
    height: 100vh;
    transform: translateX(-100%);
    z-index: 9999;
    box-shadow: 20px 0 40px rgba(0, 0, 0, 0.45);
  }

  .sidebar.open {
    transform: translateX(0);
  }

  .app-content {
    padding: 14px clamp(12px, 5vw, 18px);
    padding-top: calc(14px + env(safe-area-inset-top));
    padding-bottom: calc(92px + env(safe-area-inset-bottom));
  }

  .hamburger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .scrim {
    position: fixed;
    inset: 0;
  }

  .sidebar {
    z-index: 60;
  }

  .app-layout.menu-open .app-content {
    filter: blur(2px);
  }

  .btn.small {
    height: 50px;
    padding: 0 12px;
  }

  .bottom-nav {
    padding: 10px 12px;
    height: 64px;
    align-items: center;
    gap: 16px;
    padding-bottom: calc(10px + env(safe-area-inset-bottom));
  }

  .nav-btn {
    width: 48px;
    height: 48px;
  }


  .slider-controls {
    display: flex;
    margin-right: .5rem;
  }

  .slider-track {
    cursor: grab;
  }

  .slider-dots {
    display: none !important;
  }

  .slider-track {
    scroll-snap-type: x mandatory;
  }

  .game-card {
    scroll-snap-align: start;
  }
}

@supports (height: 100dvh) {
  @media (max-width: 1023px) {
    .sidebar {
      height: 100dvh;
    }
  }
}

.scrim[hidden] {
  display: none !important;
}

@media (max-width: 430px) {


  .app-content {
    padding-left: 14px;
    padding-right: 14px;
  }


  .slider-header {
    margin-top: 3rem;
    gap: 8px;
  }

  .slider-header h2 {
    font-size: 25px;
    text-align: start;
    font-family: "Teko", sans-serif;
  }

  .slider-controls {
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
  }

  .game-card {
    flex-basis: clamp(240px, 82vw, 340px);
  }
}


.wins-row {
  transition: opacity .25s ease, transform .25s ease;
}

.wins-row.fade-out {
  opacity: 0;
  transform: translateY(-4px);
}

@media (min-width: 1024px) {
  .wins-row {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.6fr) minmax(0, 0.8fr);
  }

  .wins-head {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.6fr) minmax(0, 0.8fr);
  }
}

@media (min-width: 1280px) {
  .wins-row {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.6fr) minmax(0, 0.8fr);
  }

  .wins-head {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.6fr) minmax(0, 0.8fr);
  }
}

@media (max-width: 1023px) {
  .app-layout {
    grid-template-columns: 1fr !important;
  }

  .sidebar {
    display: flex !important;
    position: fixed;
    left: 0;
    top: 0;
    width: 82vw;
    max-width: 320px;
    height: 100vh;
    transform: translateX(-100%);
    z-index: 9999;
    box-shadow: 20px 0 40px rgba(0, 0, 0, 0.45);
  }

  .sidebar.open {
    transform: translateX(0);
  }

  .sidebar-right {
    display: none !important;
  }


  .scrim {
    display: block;
  }

  .hamburger {
    display: inline-flex;
  }

  .slider-controls {
    display: flex;
  }
}

@media (max-width: 480px) {
  .app-layout {
    grid-template-columns: 1fr;
  }

  .sidebar {
    width: 82vw;
    max-width: 320px;
  }

  .sidebar-right {
    display: none !important;
  }

  .app-header {
    min-height: 56px;
    padding: 6px 12px;
  }

  .app-header .hamburger {
    display: inline-flex;
    left: 12px;
  }

  .header-logo {
    height: 54px;
    width: auto;
  }


  .bottom-nav {
    display: flex;
  }

  .slider-controls {
    display: flex;
  }
}

@media (min-width: 1024px) {
  .app-layout {
    display: grid;
    align-items: start;
  }

  .app-layout>.sidebar {
    grid-column: 1;
    grid-row: 1;
    height: 100%;
  }

  .app-layout>.app-content {
    grid-column: 2;
    grid-row: 1;
  }

  .app-layout>.sidebar-right {
    grid-column: 3;
    grid-row: 1;
    display: flex;
  }
}

@media (min-width: 481px) and (max-width: 1023px) {
  .app-layout {
    grid-template-columns: 1fr;
  }

  .sidebar {
    width: 300px;
    max-width: 90vw;
  }

  .sidebar-right {
    display: none !important;
  }

  .app-header {
    min-height: 56px;
    padding: 6px 12px;
  }

  .app-header .hamburger {
    display: none;
    left: 12px;
    width: 40px;
    height: 40px;
  }

  .header-logo {
    width: 154px;
    height: 154px;
  }


  .bottom-nav {
    display: none;
  }

  .slider-controls {
    display: flex;
  }
}

@media (min-width: 1024px) {
  .app-layout {}

  .sidebar-right {
    display: flex;
  }


  .app-header .hamburger {
    display: none !important;
  }

  .header-logo {
    height: 140px;
  }


  .bottom-nav {
    display: none !important;
  }
}

.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  background-color: var(--bg-loading);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

@keyframes orbit7456 {
  0% {}

  80%,
  100% {
    transform: rotate(360deg);
  }
}

@media (min-width: 1024px) {
  .slider-controls {
    display: flex !important;
    gap: 8px;
  }

  .slider-viewport {
    overflow: hidden;
  }

  .slider-track {
    flex-wrap: nowrap;
    overflow-x: auto;
  }
}

.platform-tabs .tab-btn.active {
  background: color-mix(in srgb, var(--accent-2) 22%, transparent 78%);
  border-color: color-mix(in srgb, var(--accent-2) 45%, transparent 55%);
}

.install-modal.open {
  opacity: 1;
}

.install-modal.open .install-dialog {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.cb-card .side-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(245, 196, 59, 0.18);
}

@keyframes pulseDots {

  0%,
  100% {
    opacity: .4
  }

  50% {
    opacity: 1
  }
}

@media (min-width: 1024px) {
  .op-panel:not(.running) .op-right {
    grid-template-columns: repeat(2, 1fr);
  }
}

.op-step {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #bfeee0
}

.op-step.pending {
  opacity: .6
}

.op-panel .btn {
  width: 100%;
  min-width: unset
}

.cb-card .result-card .side-subtitle {
  margin: 0 0 4px;
  color: var(--color-text);
  opacity: .95;
  display: flex;
  align-items: center;
  gap: 8px;
}

.side-card .btn {
  width: 100%;
  min-width: unset;
}

@keyframes glitch-flash {

  0%,
  100% {
    background: var(--glitch-base) center/cover no-repeat;
    opacity: 1;
  }

  92.5% {
    background: var(--glitch-1) center/cover no-repeat;
    opacity: 1;
  }

  95% {
    background: var(--glitch-2) center/cover no-repeat;
    opacity: 0;
  }

  97.5% {
    background: var(--glitch-3) center/cover no-repeat;
    opacity: 1;
  }
}

@keyframes glitch-burst {

  0%,
  100% {
    opacity: 0;
    transform: translateX(0);
  }

  90% {
    opacity: .35;
    transform: translateX(calc(var(--glitch-shift) * -1));
  }

  93% {
    opacity: .75;
    transform: translateX(calc(var(--glitch-shift) * 1.4));
  }

  96% {
    opacity: .15;
    transform: translateX(calc(var(--glitch-shift) * -.6));
  }
}

@keyframes card-float {
  0% {
    transform: translateY(-2px);
  }

  50% {
    transform: translateY(-8px);
  }

  100% {
    transform: translateY(-2px);
  }
}
