/* =========================
   REMOVE EMOJI + MIC
   ========================= */
.crs-input-emoji,
.crs-input-mic {
  display: none !important;
}

/* =========================
   INPUT WRAP BASE LAYOUT
   ========================= */
.crs-input-wrap {
  position: relative !important;

  display: flex !important;
  align-items: center !important;
  gap: 8px !important;

  padding: 8px !important;

  background: rgba(10,11,20,0.95) !important;
  border-top: 1px solid rgba(57,255,255,0.18) !important;

  backdrop-filter: blur(14px);
  box-sizing: border-box;
}

/* =========================
   FILE INPUT HIDE
   ========================= */
.crs-input-file {
  display: none !important;
}

/* =========================
   INPUT FIELD AREA
   ========================= */
.crs-input-field-wrap {
  flex: 1 !important;
  display: flex !important;
  align-items: center !important;

  background: rgba(31,46,61,0.85) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;

  border-radius: 14px !important;
  padding: 6px 8px !important;

  min-width: 0;
}

/* textarea */
.crs-input-field {
  flex: 1 !important;
  width: 100% !important;

  background: transparent !important;
  border: none !important;

  color: #fff !important;
  font-size: 14px !important;

  outline: none !important;
  resize: none !important;
}

/* =========================
   ICON BUTTON BASE
   ========================= */
.crs-input-upload,
.crs-input-send {
  flex-shrink: 0 !important;

  width: 40px !important;
  height: 40px !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  border-radius: 12px !important;

  cursor: pointer !important;
  transition: 0.2s ease !important;

  box-sizing: border-box;
}

/* upload button */
.crs-input-upload {
  background: rgba(255,255,255,0.04) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  color: #fff !important;
}

/* send button */
.crs-input-send {
  background: linear-gradient(135deg, #39ffff, #7df9ff) !important;
  border: none !important;

  box-shadow: 0 0 16px rgba(57,255,255,0.4) !important;
  color: #000 !important;
}

/* =========================
   ICON FIX
   ========================= */
.crs-input-wrap svg {
  width: 18px !important;
  height: 18px !important;

  stroke: currentColor !important;
  fill: currentColor !important;
}

/* send icon override */
.crs-input-send svg {
  fill: #000 !important;
  stroke: #000 !important;
}

/* =========================
   HOVER / ACTIVE
   ========================= */
.crs-input-upload:hover {
  border-color: #39ffff !important;
  box-shadow: 0 0 12px rgba(57,255,255,0.35) !important;
  transform: translateY(-1px);
}

.crs-input-send:hover {
  transform: scale(1.06);
  box-shadow: 0 0 26px rgba(57,255,255,0.55) !important;
}

.crs-input-upload:active,
.crs-input-send:active {
  transform: scale(0.92);
}

/* =========================
   REMOVE BLACK / BLUE FOCUS BUG
   ========================= */
button,
textarea,
input {
  outline: none !important;
  box-shadow: none !important;
  -webkit-tap-highlight-color: transparent;
}

/* =========================
   EMOJI PICKER POSITION FIX
   ========================= */
.crs-emoji-picker {
  position: absolute !important;

  bottom: calc(100% + 8px) !important;
  right: 10px !important;

  width: 300px !important;
  max-width: 90vw !important;

  z-index: 99999 !important;
}

/* =========================
   EMOJI TABS
   ========================= */
.crs-emoji-picker-tabs {
  display: flex !important;
  gap: 4px;

  padding: 6px !important;

  overflow-x: auto;
  scrollbar-width: none;
}

.crs-emoji-picker-tabs::-webkit-scrollbar {
  display: none;
}

.crs-emoji-picker-tab {
  min-width: 34px !important;
  height: 34px !important;

  border-radius: 10px !important;

  background: rgba(255,255,255,0.04) !important;
  border: 1px solid rgba(255,255,255,0.06) !important;

  display: flex;
  align-items: center;
  justify-content: center;
}

.crs-emoji-picker-tab-active {
  background: rgba(57,255,255,0.15) !important;
  border-color: #39ffff !important;
  box-shadow: 0 0 10px rgba(57,255,255,0.25);
}

/* =========================
   EMOJI GRID
   ========================= */
.crs-emoji-picker-grid {
  display: grid !important;
  grid-template-columns: repeat(8, 1fr);
  gap: 4px;

  padding: 8px !important;

  max-height: 220px;
  overflow-y: auto;
}

.crs-emoji-picker-btn {
  width: 34px !important;
  height: 34px !important;

  border-radius: 8px !important;

  background: rgba(255,255,255,0.03) !important;
  border: 1px solid rgba(255,255,255,0.05) !important;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 16px !important;
}

.crs-emoji-picker-btn:hover {
  background: rgba(57,255,255,0.12) !important;
  border-color: rgba(57,255,255,0.3) !important;
  transform: scale(1.08);
}

/* =========================
   MOBILE
   ========================= */
@media (max-width: 768px) {
  .crs-emoji-picker {
    width: 95% !important;
    left: 2.5% !important;
    right: auto !important;
  }

  .crs-emoji-picker-grid {
    grid-template-columns: repeat(7, 1fr);
  }

  .crs-input-upload,
  .crs-input-send {
    width: 36px !important;
    height: 36px !important;
  }

  .crs-input-field {
    font-size: 13px !important;
  }
}







/* =========================
   🎯 SINGLE DESIGN TOKENS ONLY
   ========================= */
:root {
  --bg: #0a0b14;
  --card: #1f2e3d;

  --primary: #39ffff;
  --primary-glow: rgba(57,255,255,0.35);

  --text: #ffffff;
  --muted: rgba(255,255,255,0.6);

  --danger: #ff4d4f;
  --warning: #ffc107;

  --radius: 12px;
}

/* =========================
   GLOBAL RESET
   ========================= */
body,
#body-main,
#app {
  background: var(--bg) !important;
  color: var(--text) !important;
  font-family: Inter, system-ui, sans-serif;
}

/* =========================
   BALANCE PANEL
   ========================= */
#history-bet-header {
  background: rgba(31, 46, 61, 0.95) !important;
  color: #39ffff !important;

  border: 1px solid rgba(57,255,255,0.15) !important;

  padding: 10px 12px;
  border-radius: 10px;

  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3px;

  text-align: center;

  box-shadow: 0 0 10px rgba(57,255,255,0.08);
}

#history-balance-wrapper {
  background: transparent !important;
  box-shadow: none !important;
  padding: 10px 0;
  text-align: center;
}

#history-balance-wrapper .fw-bold.text18 {
  font-size: 18px;
}

#history-balance-wrapper .icon130 {
  font-size: 13px;
  opacity: 0.7;
  margin: 6px 0;
}

#history-balance-wrapper .fw-bold.text18:last-child {
  font-size: 22px;
  color: var(--primary) !important;
}

/* =========================
   TAB BUTTONS
   ========================= */
#btn-history-transaction,
#btn-history-bet {
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 600;
  transition: 0.2s ease;
  border: 1px solid rgba(255,255,255,0.1);
  text-decoration: none;
  color: #aaa;
  background: #2d2d2d;
}

/* active state */
#btn-history-transaction.selected,
#btn-history-bet.selected {
  background: #39ffff !important;
  color: #000 !important;
  box-shadow: 0 0 12px rgba(57,255,255,0.4);
  border-color: #39ffff !important;
}

/* inactive */
#btn-history-bet {
  background: #2d2d2d !important;
  color: #aaa !important;
}

/* =========================
   LOADING
   ========================= */
.loading-spinner {
  filter: drop-shadow(0 0 10px var(--primary-glow));
}

.loading-spinner circle {
  stroke-width: 3 !important;
}

/* =========================
   TABLE (CLEAN CARD STYLE)
   ========================= */
.live-transaction-wrapper table {
  width: 100%;
  border-collapse: separate !important;
  border-spacing: 0 8px;
}

.live-transaction-wrapper table td {
  padding: 10px;
  border: none !important;
  background: rgba(255,255,255,0.03);
  color: #e5e7eb;
}

/* rows */
table tr:not(:first-child) td {
  background: rgba(255,255,255,0.03) !important;
  border: none !important;
  padding: 12px;
  color: #e5e7eb !important;
}

.live-transaction-wrapper table tr td {
  background: transparent !important;
  color: #fff !important;
}

.live-transaction-wrapper table tr:first-child td {
  background: rgba(57,255,255,0.12) !important;
  color: #39ffff !important;
  font-weight: 800;
  border-bottom: 1px solid rgba(57,255,255,0.25) !important;
}


/* 表头线条 */
table tr:first-child td {
  border-bottom: 1px solid rgba(57,255,255,0.25) !important;
}

/* row 之间的线条感 */
table tr:not(:first-child) td {
  border-bottom: 1px solid rgba(255,255,255,0.15) !important;
}

/* hover 强化线条 */
table tr:not(:first-child):hover td {
  border-bottom: 1px solid rgba(57,255,255,0.25) !important;
}

/* =========================
   STATUS DOTS
   ========================= */
.custom-amber {
  background: var(--warning) !important;
  box-shadow: 0 0 8px rgba(255,193,7,0.4);
}

.custom-red {
  background: var(--danger) !important;
  box-shadow: 0 0 8px rgba(255,77,79,0.4);
}

/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 768px) {

  #history-balance-wrapper {
    padding: 12px;
  }

  table tr td {
    font-size: 12px;
    padding: 10px !important;
  }

  #btn-history-transaction,
  #btn-history-bet {
    font-size: 12px;
    padding: 8px 10px;
  }
}

/* =========================
   SCROLLBAR
   ========================= */
::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-thumb {
  background: rgba(57,255,255,0.25);
  border-radius: 10px;
}






/* =========================
   SWEETALERT2 - NEON THEME
   ========================= */

.swal2-popup {
    background: rgba(20, 32, 47, 0.98) !important;
    border: 1px solid rgba(57,255,255,0.25);
    border-radius: 16px !important;

    box-shadow:
        0 0 25px rgba(57,255,255,0.15),
        0 20px 60px rgba(0,0,0,0.6);
    
    backdrop-filter: blur(10px);
    color: #fff;
}

/* TITLE */
.swal2-title {
    color: #39ffff !important;
    font-weight: 800;
    letter-spacing: 1px;
    text-shadow: 0 0 8px rgba(57,255,255,0.25);
}

/* SUCCESS ICON RING */
.swal2-success-ring {
    border: 0.25em solid rgba(57,255,255,0.5) !important;
}

/* CHECK ICON */
.swal2-success-line-tip,
.swal2-success-line-long {
    background-color: #39ffff !important;
    box-shadow: 0 0 10px rgba(57,255,255,0.5);
}

/* BACK CIRCLES */
.swal2-success-fix,
.swal2-success-circular-line-left,
.swal2-success-circular-line-right {
    background-color: rgba(20,32,47,0.98) !important;
}

/* BUTTON */
.swal2-confirm {
    background: linear-gradient(135deg, #39ffff, #7df9ff) !important;
    color: #000 !important;

    border-radius: 10px !important;
    font-weight: 700;

    box-shadow: 0 0 15px rgba(57,255,255,0.3);
}

.swal2-confirm:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(57,255,255,0.4);
}

/* OPTIONAL CANCEL */
.swal2-cancel {
    background: rgba(255,255,255,0.05) !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
    color: #fff !important;
}

/* ANIMATION SMOOTH */
.swal2-popup.swal2-show {
    animation: swalPop 0.25s ease-out;
}

@keyframes swalPop {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@media (max-width: 768px) {

    .swal2-popup {
        width: 92% !important;
        max-width: 92% !important;

        padding: 18px 14px !important;

        border-radius: 14px !important;
    }

    .swal2-title {
        font-size: 18px !important;
        line-height: 1.3;
    }

    .swal2-html-container {
        font-size: 13px !important;
    }

    /* success icon 缩小 */
    .swal2-icon {
        transform: scale(0.85);
        margin: 10px auto 0 auto !important;
    }

    /* buttons 变紧凑 */
    .swal2-actions {
        gap: 8px !important;
        flex-direction: column !important;
    }

    .swal2-confirm,
    .swal2-cancel {
        width: 100% !important;
        font-size: 14px !important;
        padding: 10px 12px !important;
    }
}








/* ========= 核心变量重定义 ========= */
:root {
  --bg-dark: #0a0b14;
  --glass: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(57, 255, 255, 0.15);
  --text-main: #ffffff;
  --text-soft: #b0b3c1;
  
  /* 你的主题色 #39FFFF */
  --primary: #39FFFF; 
  --primary-glow: rgba(57, 255, 255, 0.4);
  --accent: #FFB84D;
  
  --radius-lg: 16px;
  --radius-md: 10px;
  --card-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

/* ====== 全局优化 ====== */
* { box-sizing: border-box; }
body, #body-main, #app {
  background: var(--bg-dark);
  color: var(--text-main);
  font-family: 'Inter', -apple-system, sans-serif;
  letter-spacing: -0.2px;
}



/* =========================
   LEADERBOARD — #39FFFF 主题
   ========================= */

/* ===== 标题 ===== */
#body-main #leaderboard-title { 
    color: var(--primary);
    border-bottom: 1px solid rgba(57, 255, 255, 0.25); 
    padding-bottom: 8px; 
    font-weight: 800; 
    font-size: 20px;
    letter-spacing: 1px;
    text-shadow: 0 0 4px rgba(57, 255, 255, 0.15);
    opacity: 0.9;
}

/* ===== 按钮 ===== */
#body-main #btn-leaderboard { 
    background: rgba(255,255,255,0.05); 
    color: var(--text-soft); 
    padding: 10px 16px; 
    border-radius: 12px; 
    border: 1px solid rgba(57,255,255,0.1); 
    transition: all 0.3s ease;
    font-weight: 600;
}

#body-main #btn-leaderboard.selected { 
    background: linear-gradient(135deg, rgba(57,255,255,0.25), rgba(57,255,255,0.1)); 
    color: #fff;
    border-color: var(--primary);
    box-shadow: 0 0 15px var(--primary-glow);
    transform: translateY(-1px);
}

/* ===== 容器 ===== */
#body-main #leaderboard-table-container { 
    padding: 10px; 
    background: rgba(0,0,0,0.2);
    border-radius: 16px;
}

/* ===== 表格 ===== */
#body-main #leaderboard-table { 
    border-collapse: separate !important; 
    border-spacing: 0 6px;
    width: 100%;
}

/* 表头 */
#body-main #leaderboard-table .table-head-item { 
    background: rgba(57,255,255,0.1) !important;
    color: var(--primary) !important; 
    font-weight: 800; 
    text-transform: uppercase;
    font-size: 12px;
    padding: 12px 8px;
    border: none !important;
}

#body-main #leaderboard-table .table-head-item:first-child { border-radius: 8px 0 0 8px; }
#body-main #leaderboard-table .table-head-item:last-child  { border-radius: 0 8px 8px 0; }

/* 默认行 */
#body-main #leaderboard-table td { 
    padding: 14px 8px; 
    border: none !important; 
    color: #e0e0e0 !important;
    background: rgba(255,255,255,0.03) !important;
    font-size: 13px;
    transition: background 0.2s;
}

/* 圆角 */
#body-main #leaderboard-table tr td:first-child { 
    border-radius: 10px 0 0 10px; 
    border-left: 2px solid transparent !important; 
}
#body-main #leaderboard-table tr td:last-child { 
    border-radius: 0 10px 10px 0; 
}

/* ===== 前三名（统一写法） ===== */
#body-main #leaderboard-table tr:nth-child(2) td { background: rgba(57,255,255,0.10) !important; color:#fff !important; }
#body-main #leaderboard-table tr:nth-child(3) td { background: rgba(57,255,255,0.06) !important; color:#fff !important; }
#body-main #leaderboard-table tr:nth-child(4) td { background: rgba(57,255,255,0.04) !important; color:#fff !important; }

/* 左边排名色 */
#body-main #leaderboard-table tr:nth-child(2) td:first-child { border-left:2px solid #FFD700 !important; color:#FFD700 !important; font-weight:900; }
#body-main #leaderboard-table tr:nth-child(3) td:first-child { border-left:2px solid #C0C0C0 !important; color:#C0C0C0 !important; font-weight:900; }
#body-main #leaderboard-table tr:nth-child(4) td:first-child { border-left:2px solid #CD7F32 !important; color:#CD7F32 !important; font-weight:900; }

/* ===== Ratio（关键优化点） ===== */

/* 默认 */
#body-main #leaderboard-table td:last-child {
    color: var(--primary) !important;
    font-weight: 700;
}

/* 前三名覆盖（用金银铜，而不是再用 primary） */
#body-main #leaderboard-table tr:nth-child(2) td:last-child { color:#FFD700 !important; font-weight:900; }
#body-main #leaderboard-table tr:nth-child(3) td:last-child { color:#C0C0C0 !important; font-weight:900; }
#body-main #leaderboard-table tr:nth-child(4) td:last-child { color:#CD7F32 !important; font-weight:900; }

/* ===== Hover ===== */
#body-main #leaderboard-table tr:hover td {
    background: rgba(57,255,255,0.12) !important;
}




:root {
    --primary: #39ffff;
    --primary-glow: rgba(57,255,255,0.35);
    --bg: rgb(20, 32, 47);
    --card: rgb(31, 46, 61);
}

/* =========================
   SIDEMENU ROOT
   ========================= */
#sidemenu {
    background: var(--bg) !important;
    display: flex;
    flex-direction: column;
}

/* =========================
   HEADER FULL WIDTH FIX
   ========================= */
#sidemenu .d-grid.align-items-center {
    position: relative;
    width: calc(100% + 20px);
    margin: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 30px 16px;

    background: linear-gradient(
        180deg,
        rgba(20,32,47,0.98),
        rgba(20,32,47,0.85)
    );

    border-bottom: 1px solid rgba(57,255,255,0.18);
    box-shadow: 0 0px 0px rgba(0,0,0,0.35);
}

/* =========================
   LOGO CENTER
   ========================= */
#sidemenu .d-grid > div:nth-child(2) {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);

    display: flex;
    align-items: center;
    justify-content: center;
}

#sidemenu .d-grid > div:nth-child(2) img {
    width: 150px;
    filter: drop-shadow(0 0 8px rgba(57,255,255,0.25));
}

/* =========================
   CLOSE BUTTON
   ========================= */
#sidemenu .d-grid > div:last-child {
    position: absolute;
    right: 12px;
    top: 13px;
}

#sidemenu .d-grid a.button {
    width: 42px;
    height: 42px;

    border-radius: 12px;

    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(57,255,255,0.15);

    display: flex;
    align-items: center;
    justify-content: center;

    transition: all 0.25s ease;
}

#sidemenu .d-grid a.button img {
    width: 18px;
    height: 18px;
    transition: transform 0.25s ease;
}

#sidemenu .d-grid a.button:hover {
    background: rgba(57,255,255,0.12);
    border-color: rgba(57,255,255,0.5);
    box-shadow: 0 0 14px rgba(57,255,255,0.25);
}

#sidemenu .d-grid a.button:hover img {
    transform: rotate(90deg) scale(1.15);
}

/* hide left placeholder */
#sidemenu .d-grid > div:first-child {
    display: none;
}

/* =========================
   MENU BUTTON BASE（统一防溢出核心）
   ========================= */
#sidemenu .menu_button {
    position: relative;
    overflow: hidden;

    height: 48px;
    max-height: 48px;

    padding: 0 14px;

    display: flex;
    align-items: center;

    border-radius: 10px;

    background: var(--card) !important;
    border-left: 2px solid transparent;

    box-sizing: border-box;

    transition: all 0.2s ease;

    z-index: 0;
}

/* icon */
#sidemenu .icon32 {
    width: 20px;
    height: 20px;
    filter: drop-shadow(0 0 4px rgba(57,255,255,0.2));
}

/* text */
#sidemenu span {
    color: #fff !important;
    line-height: 1;
    font-size: 14px;
}

/* hover */
#sidemenu .menu_button:hover {
    background: rgba(57,255,255,0.08) !important;
    border-left: 2px solid rgba(57,255,255,0.8) !important;
    transform: translateX(3px);
    box-shadow: 0 0 12px rgba(57,255,255,0.1);
}

/* active */
#sidemenu .menu_button.active {
    background: rgba(57,255,255,0.12) !important;
    border-left: 2px solid var(--primary) !important;
    box-shadow: 0 0 10px rgba(57,255,255,0.2);
}

/* spacing */
#sidemenu .mb-3 {
    margin-bottom: 10px !important;
}

/* =========================
   LOGOUT
   ========================= */
#sidemenu-logout {
    background: var(--card) !important;
    border: 1px solid rgba(255,80,80,0.3) !important;
    color: #ff6b6b !important;

    text-align: center;
    font-weight: 700;
    border-radius: 10px;

    transition: all 0.2s ease;
}

#sidemenu-logout:hover {
    background: rgba(255,80,80,0.1) !important;
    border-color: rgba(255,80,80,0.6) !important;
    transform: translateX(3px);
}

/* =========================
   FOOTER
   ========================= */
#sidemenu footer {
    opacity: 0.6;
    font-size: 11px;
    text-align: center;
}

/* =========================
   SCROLLBAR
   ========================= */
#sidemenu ::-webkit-scrollbar {
    width: 4px;
}

#sidemenu ::-webkit-scrollbar-thumb {
    background: rgba(57,255,255,0.3);
    border-radius: 10px;
}

/* =========================
   ⭐ 6TH MENU - FEATURED (AUS96 STYLE)
   ========================= */
#sidemenu .mb-3:nth-of-type(6) .menu_button {
    background: linear-gradient(
        135deg,
        rgba(18, 26, 38, 0.98),
        rgba(12, 18, 28, 0.98)
    ) !important;

    border-left: 3px solid rgba(57,255,255,0.9) !important;

    box-shadow:
        inset 0 0 0 1px rgba(255,255,255,0.02),
        0 0px 14px rgba(0,0,0,0.25);
}

/* glow layer */
#sidemenu .mb-3:nth-of-type(6) .menu_button::before {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(
        120deg,
        transparent 0%,
        rgba(57,255,255,0.06) 40%,
        transparent 70%
    );

    transform: translateX(-100%);
    animation: shineMove 3s infinite;

    z-index: 0;
}

/* HOT tag */
#sidemenu .mb-3:nth-of-type(6) .menu_button::after {
    content: "HOT";
    position: absolute;

    right: 12px;
    top: 50%;
    transform: translateY(-50%);

    font-size: 10px;
    font-weight: 700;

    padding: 3px 6px;
    border-radius: 6px;

    color: #000;
    background: linear-gradient(135deg, #39ffff, #7df9ff);

    box-shadow: 0 0 8px rgba(57,255,255,0.25);

    animation: hotPulse 1.8s infinite ease-in-out;

    z-index: 2;
}

/* content layer */
#sidemenu .mb-3:nth-of-type(6) .menu_button span,
#sidemenu .mb-3:nth-of-type(6) .icon32 {
    position: relative;
    z-index: 3;
}

/* hover */
#sidemenu .mb-3:nth-of-type(6) .menu_button:hover {
    transform: translateX(6px);
    background: linear-gradient(
        135deg,
        rgba(25, 40, 60, 0.98),
        rgba(18, 28, 40, 0.98)
    ) !important;

    border-left: 3px solid #39ffff !important;

    box-shadow:
        0 0 14px rgba(57,255,255,0.15),
        inset 0 0 0 1px rgba(57,255,255,0.06);
}

/* animations */
@keyframes shineMove {
    0% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
    100% { transform: translateX(100%); }
}

@keyframes hotPulse {
    0% { transform: translateY(-50%) scale(1); }
    50% { transform: translateY(-50%) scale(1.08); }
    100% { transform: translateY(-50%) scale(1); }
}