* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Lato', sans-serif;
    scrollbar-width: thin;
    scrollbar-color: #ffffff #111;
}

@keyframes arrowPulse {
    0% { transform: scale(1) translateZ(0); }
    50% { transform: scale(1.15) translateZ(0); }
    100% { transform: scale(1) translateZ(0); }
}

@keyframes categoriesEntrance {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes categoryHeaderEntrance {
    from { opacity: 0; transform: translateX(-20px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes logoEntrance {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

.ad-container {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 468px;
    height: 60px;
}

body {
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
    overflow-y: auto;
    color: #eee;
    scroll-behavior: smooth;
    -ms-overflow-style: scrollbar;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -11;
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.3s ease-out;
}

.btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 148px;
    height: 125px;
    background: rgba(60, 60, 60, 0.185);
    border: 3px solid #3c3c3c00;
    border-radius: 20px;
    padding: 0;
    overflow: hidden;
    color: #ddd;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    vertical-align: top;
    flex-shrink: 0;
    opacity: 1;
    transform: scale(1);
    transition: opacity 0.3s ease-out,
                transform 0.3s ease-out,
                box-shadow 0.3s ease,
                border-color 0.3s ease,
                background 0.3s ease;
    will-change: opacity, transform;
    flex: 0 0 auto;
}

@media (max-width: 768px) {
    .btn {
        width: 89px;
        height: 75px;
        max-width: 89px;
    }
}

.btn .heart-icon {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 1.1rem;
    color: rgba(236, 235, 235, 0.733);
    background-color: rgba(0, 0, 0, 0.600);
    padding: 5px 5px;
    border-radius: 5px;
    transition: all 0.3s ease;
    z-index: 5;
    cursor: pointer;
    pointer-events: auto;
}

.btn .heart-icon.hearted {
    color: #ff1a1a;
    text-shadow: 0 0 4px #ff2600;
}

.btn .heart-icon.hearted:hover {
    color: #9e0000a1;
}

.btn .imgg {
    display: block;
    width: 100%;
    flex-grow: 1;
    object-fit: cover;
    border-bottom: 1px solid rgba(60, 60, 60, 0.185);
    background-color: rgba(60, 60, 60, 0.185);
    transition: transform 0.3s ease-in-out;
    transform-origin: center center;
}

.btn-container,
.favorite-container {
    display: flex;
    overflow: auto;
    gap: 15px;
    white-space: nowrap;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
    flex-wrap: nowrap;
    will-change: scroll-position;
    transform: translateZ(0);
    padding-bottom: 20px;
}


.btn-container-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
    padding: 10px 0;
}

.btn-container-grid .btn {
    width: auto;
    height: 150px;
}

.btn-container::-webkit-scrollbar,
.favorite-container::-webkit-scrollbar {
    display: none;
}

.btn-container-grid::-webkit-scrollbar {
    display: none;
}

.btn.hidden {
    display: none !important;
}

.btn:hover {
    border-color: rgb(255, 255, 255);
    background: linear-gradient(135deg, rgba(55, 55, 55, 0.75), rgba(70, 70, 70, 0.85));
}

.btn:hover .imgg {
    transform: scale(1.4);
}

.btn:hover .game-info-bar {
    transform: translateY(0);
}

.btn:hover .heart-icon {
    background-color: rgba(0, 0, 0, 0.664);
}

.categories-wrapper {
    opacity: 0;
    transform: translateY(20px);
    animation: categoriesEntrance 0.6s ease-out forwards 0.9s;
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.category-header h6 {
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
    color: #eee;
    -webkit-text-fill-color: initial;
    font-size: 1.4rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .category-header h6 {
        font-size: 1.2rem;
    }
}

.category-header h6 i {
    font-size: 0.9em;
    text-shadow: none;
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    color: initial !important;
    -webkit-text-fill-color: initial !important;
}

#cookieConsent {
  position: fixed;
  bottom: 20px;
  left: 20px;
  max-width: 400px;
  background: #000000;
  color: #f8f8f8;  
  padding: 16px 24px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
  font-family: Arial, sans-serif;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  z-index: 9999;
}
#cookieConsent button {
  background: #f8f8f8; 
  border: none;
  border-radius: 6px;
  color: #000000; 
  font-weight: bold;
  padding: 8px 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}
#cookieConsent button:hover {
  background: #d4d4d4;
}

.color-btn {
  width: 65px;
  height: 65px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.color-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.color-btn.black {
  background: black;
}

.color-btn.white {
  background: white;
}

.color-btn.red {
  background: linear-gradient(135deg, #ff5f6d, #ffc371);
}

.color-btn.blue {
  background: linear-gradient(135deg, #0c1254, #1f2f7a, #3a5588);
}

.color-btn.green {
  background: linear-gradient(135deg, #11998e, #4cff90);
}

.color-btn.yellow {
  background: linear-gradient(135deg, #f8b500, #fceabb);
}

.color-btn.purple {
  background: linear-gradient(135deg, #412483, #c93fff);
}

.color-btn.orange {
  background: linear-gradient(135deg, #f12711, #f5af19);
}

.color-btn.pink {
  background: linear-gradient(135deg, #ff00dd, #f82c8f);
}

.color-btn.teal {
  background: linear-gradient(135deg, #185a9d, #43cea2);
}

.Customization {
    display: none;
}

#downloadBtn {
    background: rgba(255, 255, 255, 0.1);
    border: 0px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: #e0e0e0;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: bold;
    padding: 10px 10px;
    transition: all 0.3s ease;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}

#downloadBtn:hover {
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 8px rgba(206, 206, 206, 0.692);
    color: #fff;
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    #downloadBtn {
        visibility: none;
        display: none;
    }

    #downloadBtn:hover {
        transform: translateY(-0.5px);
    }
}

.DMCA {
    font-weight: bold;
    background: transparent;
    font-size:0.8rem;
}

@media (max-width: 768px) {
    .DMCA {
        font-size: 0.7rem;
    }
}
.game-category {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.game-category .category-header h6 {
    opacity: 0;
    transform: translateX(-20px);
    animation: categoryHeaderEntrance 0.5s ease-out forwards;
    animation-delay: 1.2s;
}

.game-info-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.7);
    color: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    box-sizing: border-box;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transform: translateY(100%);
    transition: transform 0.3s ease-out;
    z-index: 2;
}

.game-info-bar .game-name {
    display: block;
    font-size: 0.95rem;
    font-weight: bold;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    text-align: center;
}

.fade-out {
  opacity: 0;
  pointer-events: none;
}

.favorites-section {
    background: rgba(30, 30, 30, 0.5);
    padding: 20px;
    border-radius: 8px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    margin-bottom: 10px;
    margin-top: 20px;
    padding-bottom: 20px;
}

.hub-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    background: #111;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    gap: 20px;
    flex-wrap: wrap;
    width: 100%;
    position: fixed;
    z-index: 999999999;
    border-bottom: 1px solid #e5e5e5;
}

@media (max-width: 1200px) {
    .hub-controls {
        padding: 5px;
        gap: 5px;
    }
}
    
input:checked + .slider {
    background-color: #2196F3;
}

input:checked + .slider:before {
    transform: translateX(32px);
}

#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999999999999999999 !important;
  flex-direction: column;
  color: white;
  transition: opacity 0.6s ease;
}
.loading-bar {
  width: 80%;
  height: 20px;
  background: #333;
  border-radius: 10px;
  overflow: hidden;
  margin-top: 10px;
}

main.hub-container,
.hub-container {
    width: 100%;
    margin: 0 auto;
    padding: 5vh 3vw 2vh 3vw;
    position: relative;
    z-index: 10;
    padding-top: 20vh;
    padding-left: 125px;
    padding-right: 125px;
}

@media (max-width: 768px) {
    main.hub-container,
    .hub-container {
        padding-top: 15vh;
        padding-left: 15vw;
        padding-right: 8vw;
    }
}

nav ul {
    display: flex;
    list-style: none;
    gap: 15px;
    align-items: center;
}

nav ul li a {
    text-decoration: none;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    padding: 8px 15px;
    transition: all 0.3s ease;
    position: relative;
}

nav ul li a.active {
    color: white;
    background: rgba(255, 255, 255, 0.15);
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
}

nav ul li a:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

nav ul li .discord-btn {
    display: inline-block;
    background: linear-gradient(90deg, #6d84d8, #546ab9);
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    box-shadow: 0 0 10px rgba(114, 137, 218, 0.4);
    transition: all 0.3s ease;
}

#myInput {
    flex-grow: 1;
    padding: 10px;
    border: none;
    background: transparent;
    color: #fff;
    font-size: 1rem;
    outline: none;
    min-width: 0;
}

#myInput::placeholder {
    color: #aaa;
}

@media (max-width: 768px) {
    #myInput {
        font-size: 0.65rem;
        padding: 10px 0px 10px 0px;
    }
}


.noResultsMessage {
    text-align: center;
    margin-top: 30px;
    font-size: 1.3em;
    color: #ccc;
    opacity: 0;
    transform: translateY(20px);
    animation: noResultsEntrance 0.5s ease-out forwards;
    animation-delay: 1.5s;
}

.progress {
  height: 100%;
  width: 0;
  background: linear-gradient(-80deg, #ff9900, #ff5e00);
  transition: width 0.2s linear;
}

.scroll-arrow {
    align-items: center;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    color: #ccc;
    cursor: pointer;
    display: flex;
    font-size: 1rem;
    height: 40px;
    justify-content: center;
    opacity: 1;
    pointer-events: auto;
    transition: all 0.3s ease;
    transform: scale(1) translateZ(0);
    user-select: none;
    width: 40px;
    will-change: opacity, transform;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}

@media (max-width: 768px) {
    .scroll-arrow {
        height: 28px;
        width: 28px;
        font-size: 0.8rem;
    }
}

.scroll-arrow.hidden {
    display: none;
    opacity: 0;
    pointer-events: none;
    transform: scale(0.8) translateZ(0);
}

.scroll-arrow:hover {
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    transform: scale(1.1) translateZ(0);
    border: visible;
    border: solid white 3px;
}

.scroll-arrow:active {
    transform: scale(0.95) translateZ(0);
    transition: transform 0.1s ease;
}

.scroll-arrow.show-pulse {
    animation: arrowPulse 0.4s ease;
}

.scroll-arrows {
    align-items: center;
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.scroll-arrows button {
    align-items: center;
    background: rgba(30, 30, 30, 0.5);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    justify-content: center;
    padding: 10px;
    position: relative;
    z-index: 1;
}

.right-side {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    margin-left: auto; 
}

.Title {
    font-family: 'Comic Sans MS', 'Comic Sans', cursive, sans-serif !important;
    font-size: 32px;
    font-weight: bold;
    position: absolute;
    top: 50%;
    left: 1.5px;
    transform: translateY(-50%);
    height: 64px;
    line-height: 64px;
    margin: 0;
    white-space: nowrap;
}

.TitleImg {
    width: 60px;
    height: auto;
    vertical-align: middle;
}

@media (max-width: 768px) {
    .Title {
        font-size: 0px;
        width: 20px;
    }

    .TitleImg {
        width: 40px;
    }
}

.toggle-all-btn {
    background: rgba(87, 87, 87, 0);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 6px;
    color: #ffffff;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    padding: 7.5px 15px;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .toggle-all-btn {
        font-size: 0.7rem;
        padding: 5px 10px;
        border-radius: 8px;
    }
}

.toggle-all-btn:hover {
    background: rgba(72, 72, 72, 0.363);
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.15);
    color: #fff;
    top: -1px;
}

.toggle-categories-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 0px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: #e0e0e0;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: bold;
    padding: 10px 10px;
    transition: all 0.3s ease;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}

.toggle-categories-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 8px rgba(206, 206, 206, 0.692);
    color: #fff;
    transform: translateY(-1px);
}
@media (max-width: 768px) {
    .toggle-categories-btn {
        font-size: 0.7rem;
        padding: 4px 4px;
        border-radius: 8px;
    }

    .toggle-categories-btn:hover {
        transform: translateY(-0.5px);
    }
}



.btnnn-container {
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 10px 0;
    scrollbar-width: none;
    width: 100%;
}

::-webkit-scrollbar {
    width: 25px;
}

::-webkit-scrollbar-thumb {
    background: #ffffff;
    border-radius: 10px;
    transition: background 0.3s;
}

::-webkit-scrollbar-thumb:hover {
    background: #ffffff;
}

::-webkit-scrollbar-track {
    background: #000000;
    border-radius: 20px;
}

header h1 {
    color: white;
    font-size: 2rem;
    margin-left: 15px;
}
.main-menu {
    -webkit-backdrop-filter: blur(18px);
    background: #111111;
    backdrop-filter: blur(12px);
    border-right: 1px solid #e5e5e5;
    border-top: 1px solid #e5e5e5;
    bottom: 0;
    left: 0;
    margin-top: 72px;
    max-height: 100vh;
    overflow: hidden;
    overflow-y: auto;
    position: fixed;
    scrollbar-width: none;
    top: 0;
    transition: width 0.2s ease;
    width: 58px;
    z-index: 1000;
    -ms-overflow-style: none;
}

.main-menu::-webkit-scrollbar {
    width: 0;
}

.main-menu:hover {
    scrollbar-color: #ffffff #111111;
    scrollbar-width: thin;
    width: 175px;
}

.main-menu:hover::-webkit-scrollbar {
    width: 8px;
}

.main-menu:hover::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 10px;
}

.main-menu:hover .nav-text {
    opacity: 1;
}

.main-menu li {
    width: 100%;
}

.main-menu li a {
    align-items: center;
    color: #999;
    display: flex;
    font-family: 'Titillium Web', sans-serif;
    height: 50px;
    padding: 0 10px;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.main-menu li:hover a {
    background-color: #000;
    color: #fff;
}

.main-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-menu .nav-icon {
    font-size: 20px;
    text-align: center;
    width: 60px;
}

.main-menu .nav-text {
    margin-left: 10px;
    opacity: 0;
    transition: opacity 0.2s ease;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .main-menu {
        width: 45px;
        margin-top: 60px;
        border-right: 1px solid #333;
    }

    .main-menu:hover {
        width: 120px;
    }

    .main-menu li a {
        height: 45px;
        font-size: 0.9rem;
        padding: 0 6px;
    }

    .main-menu .nav-icon {
        font-size: 16px;
        width: 45px;
    }

    .main-menu .nav-text {
        margin-left: 6px;
    }
}


nav ul li:nth-child(1) { animation-delay: 0.4s !important; }
nav ul li:nth-child(2) { animation-delay: 0.45s !important; }
nav ul li:nth-child(3) { animation-delay: 0.5s !important; }
nav ul li:nth-child(4) { animation-delay: 0.55s !important; }
nav ul li:nth-child(5) { animation-delay: 0.6s !important; }
nav ul li:nth-child(6) { animation-delay: 0.65s !important; }

@media (max-width: 768px) {
    .categories-wrapper {
        animation-delay: 1s !important;
    }

    .game-category .category-header h6 {
        animation-delay: 1.3s !important;
    }

    .noResultsMessage {
        animation-delay: 1.6s !important;
    }

    .hub-container {
        padding-left: 10px;
        padding-right: 10px;
        padding-top: 100px;
    }

    header {
        align-items: flex-start;
        animation-delay: 0s !important;
        flex-direction: column;
        padding: 10px 20px;
    }

    header h1 {
        font-size: 1.6rem;
        margin-left: 0;
    }

    header img.header-logo {
        animation-delay: 0.1s !important;
        height: 40px;
        margin-bottom: 10px;
    }

    nav ul {
        flex-wrap: wrap;
        gap: 8px;
        justify-content: center;
        margin-top: 10px;
    }

    nav ul li a,
    nav ul li .discord-btn {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
}

#particles-js {
    height: 100%;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: -10;
}

.quick-buttons {
    position: fixed;
    top: 100px;
    display: flex;
    gap: 40px;
    right: 18.5%;
    z-index: 11111111111111111111;
}


@media (max-width: 1200px) {
  .quick-buttons {
    gap: 40px;
    right: 10%; 
  }
}

@media (max-width: 768px) {
  .quick-buttons {
    gap: 20px;
    right: 5%;
  }
}


.search-icon-btn {
    background: transparent;
    border: none;
    color: #ddd;
    cursor: pointer;
    font-size: 1.1rem;
    padding: 10px;
    transition: color 0.3s ease;
}

.search-icon-btn:hover {
    color: #fff;
}

.search-wrapper {
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    flex-grow: 1;
    width: clamp(100px, 25vw, 325px);
    padding: 0px 5px 0px 15px;
    margin-left: 300px;
}

@media (max-width: 768px) {
    .search-icon-btn {
        color: transparent;
        display: none;
        visibility: none;
    }

    .search-wrapper {
        width: 100px;
        padding: 0 12px 0 10px;
        margin-left: 50px;
        box-sizing: border-box;
    }
}


#switchContainer {
    position: fixed;
    top: 100px; 
    right: 3%;
    transform: none; 
    z-index: 111111111111111111111111;
    background: rgba(0,0,0,0.7);
    padding: 12px 20px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}


  .switch {
    position: relative;
    display: inline-block;
    width: 70px;
    height: 40px;
  }

  .switch input {
    opacity: 0;
    width: 0;
    height: 0;
  }

  .slider {
    position: absolute;
    cursor: pointer;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 38px;
  }

  .slider:before {
    position: absolute;
    content: "";
    height: 34px;
    width: 34px;
    left: 2px;
    bottom: 2px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
  }

  #toggleLabel {
    font-size: 20px;
    user-select: none;
  }

.updrop-button {
    background: rgba(255, 255, 255, 0);
    color: rgb(255, 255, 255);
    font-size: 32px;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    align-self: center;
}

#uploadBtn {
    background: rgba(255, 255, 255, 0.1);
    border: 0px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: #e0e0e0;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: bold;
    padding: 10px 10px;
    transition: all 0.3s ease;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}

#uploadBtn:hover {
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 8px rgba(206, 206, 206, 0.692);
    color: #fff;
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    #uploadBtn {
        visibility: none;
        display: none;
    }

    #uploadBtn:hover {
        transform: translateY(-0.5px);
    }
}



