html {
    touch-action: manipulation;
}

body {
    margin: 0;
    padding-bottom: 200px;
    background-color: #0c0c0c;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
    -webkit-tap-highlight-color: transparent;
}

header {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    height: 100px;
    background-color: #000000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 4;
    transition-duration: 0.5s;
    padding: 0px 20px;
    column-gap: 10px;
}

.header-transparent {
    background-color: #000000c2;
}

.header-logo {
    aspect-ratio: 2.8/1;
    height: 95px;
    object-fit: cover;
    cursor: pointer;
    flex-shrink: 2;
    min-width: 0;
    min-height: 0;
}

.header-logo-inner {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.login-button {
    background-color: #5865F2;
    border: none;
    border-radius: 200px;
    display: flex;
    align-items: center;
    padding: 8px 13px;
    column-gap: 5px;
    color: rgb(255, 255, 255);
    font-family: poppins, Arial;
    font-size: 1.1rem;
    font-weight: 700;
    transition-duration: 0.1s;
    cursor: pointer;
    position: relative;
    text-decoration: none;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.login-button img {
    width: 25px;
}

.header-left {
    display: flex;
    align-items: center;
    column-gap: 30px;
    flex-shrink: 1;
    min-width: 0;
}

.dropdown-wrapper {
    width: 300px;
    position: relative;
}

.default-dropdown-wrapper {
    width: 200px;
    position: relative;
}

.dropdown {
    color: white;
    font-family: poppins;
    font-weight: 500;
    display: flex;
    column-gap: 10px;
    align-items: center;
    background-color: #ffffff18;
    padding: 0px 10px;
    border-radius: 16px;
    cursor: pointer;
    transition-duration: 0.2s;
    position: relative;
    width: calc(100% - 20px);
    justify-content: space-between;
    max-height: 90vh;
    overflow-y: auto;
}

.default-dropdown {
    color: white;
    font-family: poppins;
    font-weight: 500;
    display: flex;
    column-gap: 10px;
    align-items: center;
    background-color: #ffffff18;
    padding: 0px 10px;
    border-radius: 10px;
    cursor: pointer;
    transition-duration: 0.2s;
    position: relative;
    width: calc(100% - 20px);
    justify-content: space-between;
    overflow-y: auto;
    height: 40px;
}

.dropdown-image {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
    margin: 4px 0px;
}

.dropdown-arrow {
    width: 20px;
}

.default-dropdown-arrow {
    width: 20px;
}

.dropdown-menu {
    position: absolute;
    background-color: #000000c4;
    width: calc(100% - 20px);
    padding: 10px;
    left: 0;
    top: 65px;
    cursor: default;
    border-radius: 15px;
    animation: fadeIn 0.5s ease-out forwards;
    box-shadow: rgba(0, 0, 0, 0.288) 0px 3px 10px 2px;
}

.default-dropdown-menu {
    position: absolute;
    background-color: #000000c4;
    width: calc(100% - 20px);
    padding: 5px;
    left: 0;
    top: 45px;
    cursor: default;
    border-radius: 10px;
    animation: fadeIn 0.5s ease-out forwards;
    box-shadow: rgba(0, 0, 0, 0.288) 0px 3px 10px 2px;
    z-index: 1;
}

.default-dropdown-default {
    margin: 0;
}

@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}

.fade-out-animation {
    animation: fadeOut 0.3s ease-in forwards;
}

.top-menu-item-dropdown {
    display: flex;
    column-gap: 10px;
    align-items: center;
}

.menu-item-dropdown {
    width: 100%;
    display: flex;
    align-items: center;
    background-color: transparent;
    border: none;
    color: white;
    font-family: poppins;
    font-weight: 500;
    font-size: 1rem;
    column-gap: 10px;
    border-radius: 9px;
    padding-left: 10px;
    transition-duration: 0.1s;
    cursor: pointer;
}

.default-menu-item-dropdown {
    width: 100%;
    display: flex;
    align-items: center;
    background-color: transparent;
    border: none;
    color: white;
    font-family: poppins;
    font-weight: 500;
    font-size: 1rem;
    border-radius: 9px;
    padding-left: 10px;
    transition-duration: 0.1s;
    cursor: pointer;
    column-gap: 5px;
}

.menu-item-dropdown-selected {
    pointer-events: none;
    transition: none !important;
    background-color: white;
    color: black;
    box-shadow: rgba(255, 255, 255, 0.171) 0px 3px 10px 2px;
}

.default-menu-item-dropdown-selected {
    background-color: white;
    color: black;
    box-shadow: rgba(255, 255, 255, 0.171) 0px 3px 10px 2px;
    transition: none !important;
    pointer-events: none;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0px); }
  }

@keyframes flip2 {
    from { transform: rotate(0deg); }
    to { transform: rotate(180deg); }
  }

  @keyframes flip2Reverse {
    from { transform: rotate(180deg); }
    to { transform: rotate(0deg); }
  }

.background-video {
    height:  100vh;
    width: 100vw;
    object-fit: cover;
    pointer-events: none;
}

.background-wrapper {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
}

.h1one {
    color: white;
    font-family: poppins;
    font-size: 6rem;
    font-weight: 600;
    margin: 0;
    line-height: 100px;
    animation: makeBigger 1s forwards;
    animation-delay: 1s;
    animation-duration: 1s;
    transform: scale(0.9); 
    text-align: center;
    padding: 0 20px;
}

@keyframes makeBigger {
    0% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
    }
}

.h1two {
    margin: 0px;
    text-align: center;
    color: white;
    font-family: poppins, Arial;
    z-index: 2;
    font-size: clamp(1rem, 4rem, 4rem);
    text-shadow: 0px 3px 10px #00000062;
    background-color: rgba(0, 0, 0, 0.603);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    font-weight: 700;
    display: inline-block;
    padding: 0px 30px;
    border-radius: 30px 30px 0px 0px;
    white-space: nowrap;
}

.h1three {
    color: white;
    font-family: poppins;
    font-size: 4rem;
    font-weight: 600;
    margin: 0;
    line-height: 100px;
    animation: makeBigger 1s forwards;
    animation-delay: 1s;
    animation-duration: 1s;
    transform: scale(0.9); 
    text-align: center;
    padding: 0 20px;
}

.value-list-header-wrapper {
    position: absolute;
    bottom: 3px;
    width: 100vw;
    display: flex;
    justify-content: center;
}

.background-wrapper p {
    color: white;
    font-family: poppins;
    font-weight: 400;
    margin-top: 0;
    font-size: 1.3rem;
}

.background-content-center {
    z-index: 2;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.background-content-center p {
    text-align: center;
    animation: makeSmaller 1s forwards;
    animation-delay: 1s;
    animation-duration: 1s;
    transform: scale(1.1); 
    padding: 10px;
}

@keyframes makeSmaller {
    0% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.background-gradient {
    background: linear-gradient(to bottom, #f0f0f000, #0c0c0c);
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    height: 100px;
}

.value-list-item-image {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 20px;
    margin: 0px 0px 10px 0px;
    box-shadow: rgba(0, 0, 0, 0.329) 0px 3px 10px 2px;
    background-color: #111;
    position: relative;
    z-index: 1;
}

.value-list-items {
    display: flex;
    justify-content: center;
    width: 100vw;
}

.value-list-item {
    background-color: #1c1c1c;
    width: 100%;
    max-width: 200px;
    padding: 10px;
    display: flex;
    align-items: center;
    flex-direction: column;
    color: white;
    font-family: poppins;
    border-radius: 20px;
    box-shadow: rgba(0, 0, 0, 0.315) 0px 3px 10px 2px;
    transition-duration: 0.5s;
    position: relative;
    justify-self: center;
    cursor: pointer;
}

.value-list-item-decoration-top-left {
    position: absolute;
    width: 50%;
    left: 0;
    top: 0;
}

.value-list-item-decoration-bottom-right {
    position: absolute;
    width: 50%;
    right: 0;
    bottom: 0;
    transform: scaleY(-1) scaleX(-1);
}

.value-list-item-title {
    font-weight: 600;
    font-size: 1.3rem;
    margin: 0px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.value-list-item-category {
    font-size: 1.2rem;
    margin: 0px 0px 10px 0px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.value-list-item-information-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    border-bottom: white 1px solid;
    position: relative;
    z-index: 1;
}

.value-list-item-info {
    margin: 3px 0px 3px 0px;
}

.value-list-items-inner {
    width: 60vw;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(175px, 1fr));
    -ms-grid-column-align: center;
    column-gap: 50px;
    row-gap: 30px;
}

.value-list-items-inner-small-icons {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    column-gap: 10px;
    row-gap: 15px;
}

.value-list-scroller {
    margin-top: -100px;
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    padding: 0;
}

.value-list-scroller-item {
    width: 350px;
    height: 500px;
    background-image: linear-gradient(#222, #0f0f0f);
    border-radius: 30px;
    box-shadow: rgba(0, 0, 0, 0.596) 0px 3px 20px 2px;
    position: relative;
    font-family: poppins;
    color: white;
    transition-duration: 0.2s;
    overflow-x: hidden;
    cursor: pointer;
}

.value-list-scroller-segment {
    display: flex;
    align-items: center;
    column-gap: 35px;
    animation: 15s slide infinite linear;
    padding: 0px 35px 0px 0px;
    transform: scale(1);
    overflow-y:visible;
}

.value-list-scroller-item-image {
    width: 100%;
    height: 200px;
    border-radius: 30px;
    object-fit: cover;
    object-position: center;
    position: relative;
    z-index: 1;
}

.value-list-scroller-item-image-shadow {
    height: 200px;
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    filter: blur(40px);
}

.value-list-scroller-decoration {
    position: absolute;
    right: 20px;
    bottom: 20px;
    width: 150px;
    height: 150px;
}

.value-list-scroller-title {
    font-weight: 600;
    font-size: 2rem;
    margin: 10px 0px 0px 25px;
    line-height: 40px;
    position: relative;
    z-index: 1;
}

.value-list-scroller-description {
    width: 300px;
    margin: 8px 0px 0px 25px;
    position: relative;
}

.discover-button {
    background-color: white;
    margin: 15px 0px 0px 25px;
    border: none;
    border-radius: 200px;
    display: flex;
    align-items: center;
    padding: 4px 10px 4px 4px;
    column-gap: 10px;
    color: black;
    font-family: poppins;
    font-size: 1.1rem;
    font-weight: 600;
    transition-duration: 0.1s;
    cursor: pointer;
}

.discover-button img {
    width: 30px;
}

@keyframes slide {
    from {
        transform: translateX(0%) scale(1);
    }
    to {
        transform: translateX(-100%) scale(1);
    }
}

@keyframes smallSlide {
    from {
        transform: translateX(0%) scale(0.6);
    }
    to {
        transform: translateX(-100%) scale(0.6);
    }
}

.value-list-banner-image {
    width: 100vw;
    height: 450px;
    object-fit: cover;
    object-position: center;
    position: relative;
    z-index: 1;
}

.value-list-banner-image-shadow {
    width: 100vw;
    height: 450px;
    position: absolute;
    top: 110px;
    left: 0;
    right: 0;
    filter: blur(61px);
}

.header-translucent {
    background-color: #000000c2;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.banner-error-fallback {
    object-fit: contain;
}

.value-list-filter-button {
    background-color: white;
    border: none;
    border-radius: 200px;
    display: flex;
    align-items: center;
    padding: 5px 10px;
    column-gap: 5px;
    color: black;
    font-family: poppins, Arial;
    font-size: 1.1rem;
    font-weight: 500;
    box-shadow: rgba(255, 255, 255, 0.308) 0px 1.5px 4px 1px;
    transition-duration: 0.1s;
    cursor: pointer;
    color: black;
    position: relative;
}

.value-list-filter-button img {
    width: 25px;
}

.value-list-searchbar {
    background-color: #00000059;
    border: none;
    font-family: poppins, Arial;
    color: white;
    padding: 5px 12px;
    font-size: 1.1rem;
    border-radius: 100px;
    outline: none;
    width: 300px;
    transition-duration: 0.2s;
    scroll-margin-top: 10px;
}

.value-list-searchbar:focus {
    background-color: #11111159;
}

.value-list-searchbar::placeholder {
    color: white;
}

fieldset {
    border: none;
}

.filter-area-value-list {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 20px;
    padding: 0px;
    flex-wrap: wrap;
    row-gap: 20px;
}

.filter-area-trade-calculator {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 20px;
    flex-wrap: wrap;
    row-gap: 10px;
    background-color: #1b1b1b;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    height: fit-content;
    z-index: 2;
    padding: 10px 0px;
}

.background-tint {
    background-color: rgba(0, 0, 0, 0.664);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.background-tint-filter {
    z-index: 6;
}

.filter-popup {
    background-image: linear-gradient(53deg, #111, #222);
    color: white;
    font-family: poppins, Arial;
    padding: 20px;
    border-radius: 20px;
    box-shadow: rgba(0, 0, 0, 0.596) 0px 3px 20px 2px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    animation: fadeIn 0.5s ease-out forwards;
    max-width: 60vw;
    max-height: 90vh;
    overflow-y: scroll;
}

.item-settings-popup {
    background-image: linear-gradient(53deg, #111, #222);
    color: white;
    font-family: poppins, Arial;
    padding: 20px;
    border-radius: 20px;
    box-shadow: rgba(0, 0, 0, 0.596) 0px 3px 20px 2px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    animation: fadeIn 0.5s ease-out forwards;
    max-width: 100vw;
    max-height: 90vh;
    overflow-y:visible;
}

.add-item-popup {
    background-image: linear-gradient(53deg, #111, #222);
    color: white;
    font-family: poppins, Arial;
    border-radius: 20px;
    box-shadow: rgba(0, 0, 0, 0.596) 0px 3px 20px 2px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    animation: fadeIn 0.5s ease-out forwards;
    max-width: 100vw;
    overflow: hidden;
    height: 70vh;
}

.category-popup-trade-calculator {
    background-image: linear-gradient(53deg, #111, #222);
    color: white;
    font-family: poppins, Arial;
    border-radius: 20px;
    box-shadow: rgba(0, 0, 0, 0.596) 0px 3px 20px 2px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    animation: fadeIn 0.5s ease-out forwards;
    overflow: hidden;
    height: 70vh;
}

.popup-decoration {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 35%;
    height: 35%;
    object-fit: contain;
    object-position: bottom right;
    transform: scaleX(-1);
    opacity: 0.4;
}

.close-button {
    width: 35px;
    height: 35px;
    object-fit: contain;
    position: fixed;
    right: 10px;
    top: 10px;
    cursor: pointer;
    transition-duration: 0.2s;
}

.close-button2 {
    width: 35px;
    height: 35px;
    object-fit: contain;
    cursor: pointer;
    transition-duration: 0.2s;
}

.small-icon-button {
    width: 35px;
    height: 35px;
    object-fit: contain;
    cursor: pointer;
}

.h2one img {
    filter: brightness(10000%);
    width: 50px;
    height: 50px;
    padding: 0px 15px;
}

.h2one {
    margin: 0;
    display: flex;
    align-items: center;
    column-gap: 10px;
    font-size: 2rem;
    font-weight: 500;
}

.filter-text-bold {
    text-align: center;
    font-weight: 500;
    font-size: 1.2rem;
    margin-bottom: 0px;
    position: relative;
    z-index: 1;
}

.filter-text {
    display: flex;
    align-items: center;
    justify-content: left;
    column-gap: 10px;
    margin-top: 8px;
    position: relative;
}

.filter-text p {
    text-align:left;
    display: block;
    margin: 0;
    white-space: nowrap;
}

.small-input {
    background-color: #222;
    border: none;
    width: 80px;
    font-family: poppins, Arial;
    font-size: 1.1rem;
    color: white;
    outline: none;
    padding: 4px;
    border-radius: 8px;
    box-shadow: rgba(0, 0, 0, 0.322) 0px 3px 20px 2px;
    transition-duration: 0.1s;
}

.small-input:focus {
    box-shadow: rgba(172, 172, 172, 0.322) 0px 0px 7px 2px;
}

.error-text {
    color: #ff1111;
    font-size: 0.8rem;
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 5px;
    margin-top: 0;
    position: relative;
    z-index: 1;
}

.error-text img {
    width: 15px;
    height: 15px;
    margin-bottom: 2px;
    object-fit: contain;
}

.checkbox-lists {
    display: flex;
    justify-content: center;
    column-gap: 30px;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}

.checkbox-list {
    display: grid;
    grid-template-columns: min-content min-content;
    column-gap: 10px;
}

.filter-checkbox {
    width: 20px;
    height: 20px;
    z-index: 1;
    opacity: 0;
}

.checkbox-overlay {
    position: absolute;
    top: 3px;
    left: 6px;
    width: 20px;
    height: 20px;
    background-color: #222;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.322) 0px 3px 20px 2px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.checkbox-overlay-selected {
    background-color: white;
}

.checkbox-overlay img {
    width: 15px;
    height: 15px;
}

.category-filter-button-area {
    display: flex;
    justify-content: center;
    column-gap: 10px;
    flex-wrap: wrap;
    row-gap: 10px;
    width: 60vw;
}

.category-filter-button-area-filter-popup {
    display: flex;
    justify-content: center;
    column-gap: 10px;
    flex-wrap: wrap;
    row-gap: 10px;
    width: 60vw;
}

.misc-button-area {
    display: flex;
    justify-content: center;
    column-gap: 10px;
    flex-wrap: wrap;
    row-gap: 10px;
    width: 60vw;
}

.category-filter-button {
    background-color: #00000059;
    border: none;
    border-radius: 18px;
    display: flex;
    align-items: center;
    padding: 5px 10px;
    column-gap: 5px;
    color: white;
    font-family: poppins, Arial;
    font-size: 1.1rem;
    font-weight: 500;
    transition-duration: 0.3s;
    cursor: pointer;
    justify-content: center;
}

.section-button {
    background-color: #00000059;
    border: none;
    border-radius: 10px;
    display: flex;
    align-items: center;
    padding: 5px 10px;
    column-gap: 5px;
    color: white;
    font-family: poppins, Arial;
    font-size: 1.1rem;
    font-weight: 500;
    transition-duration: 0.3s;
    cursor: pointer;
}

.section-button:hover {
    background-color: #00000094;
}

.section-button img {
    height: 25px;
}

.logout-button {
    background-color: #ff00001f;
    border: none;
    border-radius: 10px;
    display: flex;
    align-items: center;
    padding: 5px 10px;
    column-gap: 5px;
    color: rgb(255, 0, 0);
    font-family: poppins, Arial;
    font-size: 1.1rem;
    font-weight: 500;
    transition-duration: 0.3s;
    cursor: pointer;
    text-decoration: none;
}

.logout-button:hover {
    background-color: #00000094;
}

.logout-button img {
    height: 25px;
}

.report-button {
    background-color: #1a0000;
    border: none;
    border-radius: 10px;
    display: flex;
    align-items: center;
    padding: 5px 10px;
    column-gap: 5px;
    color: rgb(255, 0, 0);
    font-family: poppins, Arial;
    font-size: 1.1rem;
    font-weight: 500;
    transition-duration: 0.3s;
    cursor: pointer;
    text-decoration: none;
}

.report-button:hover {
    background-color: #00000094;
}

.report-button img {
    height: 25px;
}

.filter-area-value-list-outer {
    display: flex;
    align-items: center;
    flex-direction: column;
    row-gap: 20px;
    margin: 25px 0px;
    position: relative;
    z-index: 1;
}

.category-filter-button-selected {
    background-color: white;
    color: black;
    pointer-events: none;
}

.value-range-slider-background {
    background-color: #333;
    width: 200px;
    height: 6px;
    position: relative;
    border-radius: 10px;
}

.value-range-slider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.value-range-slider-highlighted {
    background-color: #DDD;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    box-shadow: rgba(255, 255, 255, 0.336) 0px 0px 10px 1px;
    border-radius: 10px;
}

.value-range-slider-knob {
    position: absolute;
    width: 16px;
    height: 16px;
    background-color: white;
    top: -5px;
    left: -5px;
    border-radius: 100px;
}

.value-range-slider-knob-right {
    position: absolute;
    width: 16px;
    height: 16px;
    background-color: white;
    top: -5px;
    right: -5px;
    border-radius: 100px;
}

.value-range-slider-hidden {
    -webkit-appearance: none;
    background: none;
    position: absolute;
    left: -8px;
    right: -8px;
    top: -7px;
    z-index: 1;
    pointer-events: none;
    outline: none;
}

::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    background-color: white;
    border-radius: 100px;
    pointer-events: auto;
    cursor: grab;
    touch-action: pan-y;
}

.loader {
  width: 60px;
  aspect-ratio: 1;
  color: white;
  background: repeating-conic-gradient(from -47deg,#0000 0deg, currentColor 1deg 91deg,#0000 94deg 180deg);
  display: flex;
  animation: l12-0 2s infinite linear;
}
.loader::before,
.loader::after {
  content: "";
  flex: 1;
  background: currentColor;
  clip-path: polygon(0 0,100% 50%, 0 100%);
  animation: l12 1s infinite alternate;
  transform-origin: bottom left;
}
.loader::after {
  clip-path: polygon(100% 0,100% 100%,0 50%);
  transform-origin: top right;
}
@keyframes l12-0 {
    0%,49.9% {transform:scaleX( 1)}
    50%,100% {transform:scaleX(-1)}
}
@keyframes l12 {
    0%, 20%  {transform:rotate(0deg)}
    80%,100% {transform:rotate(-270deg)}
}

.preload-display {
    background-color: #111;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    height: 100vh;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preload-text {
    font-family: poppins, Arial;
    color: white;
    display: flex;
    align-items: center;
    column-gap: 30px;
    font-size: 3rem;
    font-weight: 600;
}

footer {
    background-color: #1b1b1b;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    color: white;
    font-family: poppins, Arial;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.small-link {
    display: flex;
    align-items: center;
    text-decoration: underline;
    color: white;
    column-gap: 5px;
    line-height: 50px;
}

.small-link img {
    width: 18px;
}

.contact-button {
    background-color: white;
    border: none;
    border-radius: 200px;
    display: flex;
    align-items: center;
    padding: 4px 8px;
    column-gap: 10px;
    color: black;
    font-family: poppins;
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: rgba(255, 255, 255, 0.308) 0px 0px 8px 2px;
    transition-duration: 0.1s;
    cursor: pointer;
    text-decoration: none;
}

.contact-button img {
    width: 30px;
}

.privacy-policy-wrapper {
    display: flex;
    justify-content: center;
    width: 100vw;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.privacy-policy {
    color: white;
    font-family: poppins, Arial;
    width: 75%;
    max-width: 1000px;
}

.privacy-policy-header {
    font-size: 1.3rem;
    display: block;
    margin-bottom: 10px;
}

.privacy-policy a {
    color: white;
}

.privacy-policy a:link {
    color: white;
}

.privacy-policy a:visited {
    color: white;
}

.no-results {
    color: white;
    font-family: poppins, Arial;
    font-size: 1.2rem;
    text-align: center;
    font-weight: 500;
    width: 100%;
}

/* Trade Calculator Styles */
.trade-calculator-container {
    display: flex;
    justify-content: center;
    width: 100vw;
    position: relative;
    z-index: 1;
}

.trade-calculator-output {
    font-family: Poppins, Arial;
    color: white;
    font-weight: 500;
    text-align: center;
    margin: 0;
    font-size: 2rem;
}

.trade-calculator {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); 
    column-gap: 30px;
    row-gap: 20px;
    width: 60vw;
    color: white;
    font-family: poppins, Arial;
    justify-self: center;
    align-self: center;
}

.trade-calculator-trades {
    background-color: #ffffff0a;
    width: 100%;
    border-radius: 20px;
    box-shadow: rgba(0, 0, 0, 0.116) 0px 1.5px 15px 2px;
    padding-bottom: 10px;
    justify-self: center;
}

.trade-calculator-info {
    display: flex;
    justify-content: left;
    align-items: center;
    column-gap: 30px;
    padding: 20px;
    position: relative;
}

.trade-calculator-add-item {
    width: 30%;
    min-width: 100px;
    max-width: 250px;
    aspect-ratio: 1/1 !important;
    background-color: white;
    border: none;
    border-radius: 30px;
    box-shadow: rgba(255, 255, 255, 0.329) 0px 0px 15px 1px;   
    position: relative;
    transition-duration: 0.8s;
    cursor: pointer;
}

.trade-calculator-add-item img {
    width: 60%;
}

.trade-calculator-info-title {
    font-weight: 600;
    font-size: 2rem;
    margin: 0px;
}

.trade-calculator-info-inner {
    font-size: 1.2rem;
    margin: 0px;
}

.watermark {
    position: absolute;
    opacity: 0.2;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    right: 10px;
    bottom: 10px;
    flex-direction: column;
}

.watermark img {
    width: 100px;
    aspect-ratio: 2.8/1;
    object-fit: cover;
}

.watermark p {
    margin: 0;
}

.trade-side {
    flex: 1;
    background: var(--background-color-secondary);
    border-radius: 12px;
    padding: 1.5rem;
}

.trade-side h2 {
    margin-bottom: 1rem;
    color: var(--text-color);
}

.trade-items-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.trade-search {
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    background: var(--background-color);
    color: var(--text-color);
    width: 100%;
}

.selected-items {
    min-height: 100px;
    border: 1px dashed var(--border-color);
    border-radius: 6px;
    padding: 1rem;
}

.search-results {
    max-height: 300px;
    overflow-y: auto;
}

.trade-middle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.trade-arrow {
    font-size: 2rem;
    color: var(--text-color);
}

.calculate-button {
    padding: 0.75rem 1.5rem;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s;
}

.trade-total {
    margin-top: 1rem;
    font-weight: 600;
    color: var(--text-color);
}

.trade-result {
    text-align: center;
    padding: 1rem;
    border-radius: 6px;
    min-width: 200px;
}

.trade-calculator-item-value {
    background-color: rgba(0, 0, 0, 0.603);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: absolute;
    left: 0;
    right: 0;
    margin: 0;
    text-align: center;
    padding: 5px 0px;
    font-size: 1rem;
    font-weight: 500;
}

.trade-calculator-item {
    width: 90%;
    aspect-ratio: 1/1;
    align-self: center;
    justify-self: center;
    border-radius: 15px;
    max-width: 150px;
    position: relative;
    font-family: poppins, Arial;
    transition-duration: 0.1s;
    cursor: pointer;
    color: white;
    background-color: #202020;
}

.trade-calculator-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    row-gap: 15px;
}

.trade-calculator-item-amount {
    background-color: #000000b2;
    padding: 5px 10px;
    border-radius: 100px;
    position: absolute;
    right: 0;
    top: 0;
    transform: translateX(50%) translateY(-76%);
}

.value-display {
    font-weight: 600;
}

.our-games-section {
    font-family: poppins, Arial;
    color: white;
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 20px;
}

.our-games-section h2 {
    text-align: center;
    font-size: 1.8rem;
}

.our-games-card {
    display: grid;
    grid-template-columns: 2fr 3fr;
    border-radius: 30px;
    background-image: linear-gradient(to right, #222, #0c0c0c);
    box-shadow: rgba(0, 0, 0, 0.315) 0px 3px 10px 2px;
    width: 50vw;
    max-width: 800px;
    height: fit-content;
    overflow: hidden;
    column-gap: 30px;
    position: relative;
    transform: translateX(100%);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out, scale 0.3s;
    opacity: 0;
}

.our-games-card-left {
    grid-template-columns: 3fr 2fr;
    background-image: linear-gradient(to left, #222, #0c0c0c);
    transform: translateX(-100%);
}


.our-games-image {
    height: 100%;
    width: 40%;
    object-fit: cover;
    border-radius: 30px;
    position: absolute;
    z-index: 1;
}

.our-games-image-left {
    right: 0;
}

.our-games-image-shadow {
    object-fit: cover;
    position: absolute;
    width: 40%;
    top: 0px;
    bottom: 0;
    filter: blur(40px);
}

.our-games-image-shadow-left {
    right: 40px;
}

.our-games-buttons {
    display: flex;
    align-items: center;
    column-gap: 15px;
    position: relative;
    z-index: 1;
    margin-bottom: 15px;
    flex-wrap: wrap;
    row-gap: 10px;
}

.our-games-h3 {
    margin: 0;
    font-size: 2rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
    margin: 10px 0px;
    line-height: 40px;
}

.filter-button-number {
    background-color: rgb(255, 43, 43);
    color: white;
    font-family: poppins, Arial;
    font-size: 0.75rem;
    padding: 2px 8px;
    border-radius: 100px;
    position: absolute;
    right: 0;
    top: 0;
    transform: translateX(50%) translateY(-70%);
}

.slide-in {
    opacity: 1;
    transform: translateX(0); /* Move back to its original position */
}

.filter-popup::-webkit-scrollbar {
    height: 12px; 
    width: 5px;
}

/* Track */
.filter-popup::-webkit-scrollbar-track {
    background: #00000000; 
    border-radius: 10px;
    width: 5px;
}

/* Handle (Thumb) */
.filter-popup::-webkit-scrollbar-thumb {
    background: #ffffff; 
    border-radius: 10px;
    width: 5px;
}

/* Handle on hover */

.add-item-popup::-webkit-scrollbar {
    height: 12px; 
    width: 5px;
}

/* Track */
.add-item-popup::-webkit-scrollbar-track {
    background: #00000000; 
    border-radius: 10px;
    width: 5px;
}

/* Handle (Thumb) */
.add-item-popup::-webkit-scrollbar-thumb {
    background: #ffffff; 
    border-radius: 10px;
    width: 5px;
}

/* Handle on hover */

.error-alert {
    width: 40px;
    animation: makeSmaller 1s forwards;
    animation-delay: 1s;
    animation-duration: 1s;
    transform: scale(1.1); 
}

.trade-calculator-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.item-settings-title {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 500;
}

.our-games-description {
    margin-top: 0px;
    position: relative;
    z-index: 1;
}

.currency-symbol {
    height: 25px;
    object-fit: cover;
}

.additional-value {
    display: flex;
    align-items: center;
    column-gap: 5px;
    margin-bottom: 10px;
}

.discord-button {
    background-color: #5865F2;
    border: none;
    border-radius: 200px;
    display: flex;
    align-items: center;
    padding: 5px 10px;
    column-gap: 5px;
    color: rgb(255, 255, 255);
    font-family: poppins, Arial;
    font-size: 1.1rem;
    font-weight: 800;
    transition-duration: 0.1s;
    cursor: pointer;
    position: relative;
    text-decoration: none;
}

.discord-button img {
    width: 25px;
}

.value-team-button {
    background-color: #000000;
    border: none;
    border-radius: 200px;
    display: flex;
    align-items: center;
    padding: 5px 10px;
    color: rgb(255, 255, 255);
    font-family: poppins, Arial;
    font-size: 1.1rem;
    font-weight: 600;
    transition-duration: 0.1s;
    cursor: pointer;
    position: relative;
    text-decoration: none;
}

.value-team-button img {
    height: 18px;
}

.discord-button2 {
    background-color: #5865F2;
    border: none;
    border-radius: 200px;
    display: flex;
    align-items: center;
    padding: 5px 10px;
    column-gap: 5px;
    color: rgb(255, 255, 255);
    font-family: poppins, Arial;
    font-size: 1.1rem;
    font-weight: 800;
    transition-duration: 0.1s;
    cursor: pointer;
    position: relative;
    text-decoration: none;
}

.discord-button2 img {
    width: 25px;
}

.searchbar-and-filter-button {
    display: flex;
    align-items: center;
    column-gap: 20px;   
}

.particleCanvas {
    height: 100%;
}

.item-page-container-wrapper {
    display: flex;
    justify-content: center;
}

.item-page-container {
    width: 60vw;
    display: flex;
    align-items: stretch;
    justify-content: center;
    column-gap: 30px;
    row-gap: 20px;
    flex-wrap: wrap;
}

.item-page-description {
    color: white;
    font-family: poppins, Arial;
    background-color: #ffffff0a;
    box-shadow: rgba(0, 0, 0, 0.116) 0px 1.5px 15px 2px;
    border-radius: 30px;
    padding: 10px 10px 10px 25px;
    position: relative;
    z-index: 1;
    flex: 1;
    min-width: 200px;
}

.item-page-description-h1 {
    font-weight: 600;
    font-size: 1.7rem;
    margin: 0;
}

.default-menu-item-dropdown p {
        margin: 5px 0px;
}

.item-page-image {
    border-radius: 15px;
    width: 100%;
}

.menu-item-dropdown p {
    text-align: left;
    margin: 0;
}

.value-list-message {
    background-color: black;
    position: fixed;
    z-index: 5;
    top: 0;
    left: 0;
    right: 0;
    height: 40px;
    font-family: poppins, Arial;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 10px;
}

.value-list-message p {
    font-weight: 500;
}

.value-list-message a {
    color: white;
    text-decoration: underline;
    cursor: pointer;
}

.value-list-message a:focus {
    color: white;
    text-decoration: underline;
}

.value-list-message a:active {
    color: white;
    text-decoration: underline;
}

.value-list-message:visited {
    color: white;
    text-decoration: underline;
}

.value-list-message img {
    width: 20px;
    height: 20px;
    transition-duration: 0.2s;
    cursor: pointer;
}

.move-down-forty-px {
    top: 40px;
}

.user-profile-picture {
    width: 250px;
    height: 250px;
    border-radius: 150px;
    box-shadow: rgba(0, 0, 0, 0.26) 0px 8px 10px 2px;
}

.user-profile-info-wrapper {
    width: 100vw;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1;
}
.user-profile-info {
    position: absolute;
    top: -125px;
    width: 60vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: poppins, Arial;
    color: white;
}

.user-profile-global-name {
    font-size: 1.9rem;
    text-align: center;
    margin: 10px;
    line-height: 40px;
}

.user-profile-name {
    font-size: 1.1rem;
    font-weight: 400;
    margin: 0px 0px 5px 0px;
}

.user-profile-details {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    column-gap: 10px;
    row-gap: 10px;
}

.login-button p {
    margin: 0;
}

.trade-ad-field-wrapper {
    width: 100vw;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.trade-ad-field {
    color: white;
    font-family: poppins, Arial;
    width: 60vw;
}

.trade-ad-field p {
    margin: 3px 0px;
    font-weight: 600;
    font-size: 1.2rem;
}

.trade-ad-field-input {
    background-color: #2e2e2e59;
    border: none;
    border-radius: 10px;
    color: white;
    font-family: poppins, Arial;
    font-weight: 600;
    transition-duration: 0.3s;
    padding: 4px 7px;
    font-size: 1.2rem;
    outline: none;
    width: 100%;
}

.trade-ad-field-input:focus {
    background-color: #35353559;
}

.trade-ad-field-textarea {
    background-color: #2e2e2e59;
    border: none;
    border-radius: 10px;
    color: white;
    font-family: poppins, Arial;
    font-weight: 400;
    transition-duration: 0.3s;
    padding: 4px 7px;
    font-size: 1rem;
    outline: none;
    width: 100%;
    resize: none;
    height: 100px;
}

.trade-ad-field-textarea:focus {
    background-color: #35353559;
}

.trade-ads-container {
    width: 100vw;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.trade-ads {
    width: 60vw;
    display: grid;
    grid-template-columns: 1fr;
    color: white;
    font-family: poppins, Arial;
    row-gap: 40px;
}

.trade-ad-user img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 100px;
}

.trade-ad-user {
    display: flex;
    align-items: center;
    column-gap: 10px;
}

.trade-ad-user-text p {
    margin: 0px;
    color: grey;
    line-height: 20px;
    font-size: 0.8rem;
}

.trade-ad-global-name {
    font-weight: 600;
    color: white !important;
    font-size: 1rem !important;
}

.trade-ad-content {
    display: flex;
    align-items: top;
    margin-bottom: 10px;
    column-gap: 20px;
}

.trade-ad-title {
    font-size: 1.9rem;
    font-weight: 600;
    line-height: 35px;
    margin: 0;
}

.trade-ad-description {
    font-size: 1rem;
    margin: 5px 0px;
}

.trade-ad-duration {
    color: grey;
    font-size: 1rem;
    font-weight: 600;
    margin: 5px 0px 0px 0px;
}

.trade-ad-account-link {
    text-decoration: none;
    display: flex;
    align-items: center;
    column-gap: 10px;
}

.social-buttons {
    background: transparent;
    border: none;
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    transition-duration: 0.1s;
    cursor: pointer;
}

.social-buttons img {
    height: 30px;
    width: 30px;
    object-fit: contain;
}

.social-media-button {
    border: none;
    border-radius: 200px;
    display: flex;
    align-items: center;
    padding: 5px 10px;
    column-gap: 5px;
    font-family: poppins, Arial;
    font-size: 1.1rem;
    font-weight: 800;
    transition-duration: 0.1s;
    cursor: pointer;
    position: relative;
    text-decoration: none;
}

.social-media-button img {
    width: 25px;
}

@keyframes rainbow {
    0%   { color: red; }
    16%  { color: yellow; }
    33%  { color: rgb(0, 255, 0); }
    50%  { color: cyan; }
    66%  { color: blue; }
    83%  { color: magenta; }
    100% { color: red; }
}

.report-button-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.report-button {
    position: absolute;
    right: 50%;
    top: 50%;
    z-index: 1;
    opacity: 0;
    pointer-events: none;
}

.report-button-open {
   opacity: 1;
   pointer-events: all; 
}

.user-trade-ads-h2 {
    font-family: poppins, Arial;
    color: white;
    margin: 10px;
    font-weight: 600;
    font-size: 1.5rem;
}

.report-button {

}

.category-popup-trade-calculator {
    padding: 20px;
    margin-right: 20px;
    box-sizing: border-box;
}

.discord-decoration {
    width: 200px;
    position: absolute;
    left: -35px;
    bottom: -40px;
    opacity: 0.1;
    transform: rotate(-10deg);
}

.notice {
    background-color: rgba(255, 255, 255, 0.103);
    border-radius: 20px;
    padding: 15px;
    color: white;
    font-family: poppins, Arial;
    display: flex;
    align-items: top;
    column-gap: 10px;
    width: 100%;
    box-sizing: border-box;
}

.notice p {
    margin: 0px;
}

.notice-icon {
    filter: brightness(25500);
    width: 20px;
    height: 20px;
    margin-top: 4px;
}

.search-trade-ad-sides-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    column-gap: 10px;
}














@media (max-width: 768px) { /* size of the ad */
    .trade-ads {
        width: 90vw;
    }
    .value-list-items-inner {
        width: 90vw;
    }
    .trade-ad-field {
        width: 90vw;
    }
    .user-profile-info {
        width: 90vw;
    }
    .item-page-container {
        width: 90vw;
    }
    .our-games-card {
        width: 90vw;
    }
    .filter-popup {
        max-width: 100vw;
        position: absolute;
        left: 10px;
        top: 10px;
        right: 10px;
        height: 80vh;
    }
    .add-item-popup {
        max-width: 100vw;
        position: absolute;
        left: 10px;
        top: 10px;
        right: 10px;
        height: 85vh;
    }
    .trade-calculator-container {
        flex-direction: column;
    }
    
    .trade-middle {
        flex-direction: row;
        padding: 1rem 0;
    }
    
    .trade-arrow {
        transform: rotate(90deg);
    }
    .value-list-scroller {
        display: none;
    }
    .our-games-section {
        margin-top: -120px;
        position: relative;
        z-index: 2;
    }
    .trade-calculator {
        width: 90vw;
    }
    .trade-calculator-trades {
        max-width: 100%;
    }
}

.trade-calculator-container {
    width: 100vw;
    justify-content: center;
}

@media (max-width: 666px) {
    .trade-calculator-items {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)) !important;
    }
    .value-list-items-inner-small-icons {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)) !important;
        column-gap: 2px !important;
    }
    .trade-calculator-item {
        max-width: 110px;
    }
    .trade-calculator-item-value {
        font-size: 0.8rem;
    }
    .trade-calculator-item-amount {
        font-size: 0.8rem;
    }
    .value-list-items-inner {
        grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
        column-gap: 30px;
        row-gap: 10px;
        width: 90vw;
    }
    .value-list-item-information-wrapper {
        font-size: 0.9rem;
    }
    .category-filter-button-area {
        width: 90vw;
    }
    .misc-button-area {
        width: 90vw;
    }
    .preload-text {
        transform: scale(0.7);
    }
}



@media (max-width: 400px) {
    .watermark img {
        width: 60px;
    }

    .watermark p {
        font-size: 0.8rem;
    }
    .header-left {
        transform: scale(0.9);
    }
    header {
        height: 10vh;
    }
    .menu-item-dropdown p {
        font-size: 0.9rem;
    }
}

@media (max-width: 550px) {
    .value-list-message {
    background-color: rgba(0, 0, 0, 0.637);
    position: absolute;
    z-index: 3;
    top: 120px;
    left: 20px;
    right: 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 10px;
    flex-wrap: wrap;
    height: fit-content;
    padding: 10px 0px;
}

.value-list-message p {
    margin: 0px 0px 10px 0px;
    width: 80%;
    text-align: center;
}

.value-list-message a {
    color: rgb(0, 0, 0);
    text-decoration: none;
    cursor: pointer;
    background-color: white;
    width: 90%;
    padding: 5px 0px;
    font-weight: 1.1rem;
    text-align: center;
    border-radius: 100px;
    font-weight: 600;
}

.value-list-message:visited {
    color: rgb(0, 0, 0);
    text-decoration: none;
}

.value-list-message a:hover {
    color: rgb(0, 0, 0) !important;
    text-decoration: none !important;
}

.value-list-message a:focus {
    color: rgb(0, 0, 0);
    text-decoration: none;
}

.value-list-message a:active {
    color: rgb(0, 0, 0);
    text-decoration: none;
}

.value-list-message img {
    position: absolute;
    right: 10px;
    top: 10px;
    width: 30px;
    height: 30px;
}
    .login-button {
        width: 50px;
        height: 50px;
        padding: 0;
        box-sizing: border-box;
        justify-content: center;
        flex-shrink: 0;
    }
    .header-logo {
        width: 35px;
        height: 35px;
        object-fit: contain;
        flex-shrink: 0;
    }
    .header-left {
        flex-shrink: 1;
    }
}

@media (max-width: 500px) {
    .our-games-h3 {
        text-align: center;
    }
    .our-games-description {
        text-align: center;
    }
    .our-games-buttons {
        justify-content: center;
    }
    .trade-ad-title {
        font-size: 1.5rem;
    }

    .trade-ad-duration {
        font-size: 0.8rem;
    }
    .background-video {
        height: 800px;
    }
    .particleCanvas {
        height: 800px;
    }
    .filter-checkbox {
        width: 30px;
        height: 30px;
    }
    .checkbox-overlay {
        top: 3px;
        left: 6px;
        width: 30px;
        height: 30px;
        border-radius: 10px;
    }
    ::-webkit-slider-thumb {
        width: 24px;
        height: 24px;
    }
    .value-range-slider-hidden {
        left: -8px;
        right: -8px;
        top: -11px;
    }
    .our-games-card {
        grid-template-columns: 1fr;
        background-image: linear-gradient(to bottom, #222, #0c0c0c);
    }
    .value-range-slider {
        margin: 13px 0px;
    }
    .our-games-image {
        height: 170px;
        width: 100%;
        left: 0;
        right: 0;
    }
    .our-games-image-left {
        order: -1;
    }
    .our-games-info {
        padding: 0px 10px;
    }
    .our-games-image-shadow {
        top: 40;
        left: 0;
        right: 0;
        width: 100%;
        height: 170px;
    }
    .our-games-temp {
        height: 170px;
    }
    .our-games-temp-left {
        order: -1;
    }
    .trade-calculator-info-inner {
        font-size: 1rem;
    }
    .trade-calculator-info-title {
        font-size: 1.3rem;
    }
    .h1one {
        font-size: 3rem;
        line-height: 60px;
    }
    .h1three {
        font-size: 2rem;
        line-height: 40px;
    }
    .value-list-scroller {
        transform: scale(0.6);
        width: 166.666vw;
        margin-left: -33.333vw;
        margin-top: -20vh;
    }

    .value-list-searchbar {
        width: 90%;
    }
    body::-webkit-scrollbar {
            width: 0px;
        }

        /* Track */
        body::-webkit-scrollbar-track {
            width: 0px;
        }

        /* Handle (Thumb) */
        body::-webkit-scrollbar-thumb {
            width: 0px;
        }
}

@media (pointer: coarse) {
    .value-list-scroller {
        overflow: hidden;
    }
}

@media (max-width: 1500px) {
    .trade-calculator {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1000px) {
    .our-games-description {
        font-size: 0.8rem;
    }
}

::-webkit-scrollbar {
    height: 12px; 
    width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #00000000; 
    border-radius: 10px;
    width: 5px;
}

/* Handle (Thumb) */
::-webkit-scrollbar-thumb {
    background: #ffffff; 
    border-radius: 10px;
    width: 5px;
}

/* Handle on hover */

@media (hover: hover) {
    .social-buttons:hover {
        background-color: rgba(255, 255, 255, 0.123);
    }
    .value-list-message a:hover {
        color: white;
        text-decoration: underline;
    }
    .value-list-message img:hover {
        transform: rotate(90deg);
    }
    .menu-item-dropdown-selected:hover {
        background-color: white;
    }

    .default-menu-item-dropdown-selected:hover {
        background-color: white;
    }
    .default-menu-item-dropdown:hover {
        background-color: #ffffff2c;
    }
    .default-menu-item-dropdown p {
        margin: 0;
    }
    .menu-item-dropdown-selected {
        background-color: white;
    }
    .menu-item-dropdown:hover {
        background-color: #ffffff2c;
    }
    .default-dropdown:hover {
        background-color: #44444462;
        box-shadow: rgba(20, 20, 20, 0.308) 0px 3px 10px 2px;
    }
    .dropdown:hover {
        background-color: #44444462;
        box-shadow: rgba(20, 20, 20, 0.308) 0px 3px 10px 2px;
    }
    .login-button:hover {
        background-color: #5865f273;
        box-shadow: none;
        color: white;
    }
    .category-filter-button-selected:hover {
    background-color: rgb(224, 224, 224);
    color: white;
}
.category-filter-button:hover {
    background-color: #00000094;
}
.close-button:hover,
.close-button2:hover {
    transform: rotate(90deg);
}
.value-list-filter-button:hover img {
    filter: brightness(10000%)
}
.value-list-filter-button:hover {
    background-color: #00000059;
    box-shadow: none;
    color: white;
}
.discover-button:hover {
    transform: scale(110%);
}
.value-list-scroller-item:hover {
    transform: translateY(-20px);
}
.value-list-scroller:hover .value-list-scroller-segment {
  animation-play-state: paused;
}
.value-list-item:hover {
    transform: scale(1.05);
    background-color: #1e1e1e;
}
::-webkit-scrollbar-thumb:hover {
    background: #ffffff;
}
.discord-button:hover {
    background-color: #00000059;
    box-shadow: none;
    color: white;
}
.discord-button2:hover {
    background-color: #00000059;
    box-shadow: none;
    color: white;
}
.trade-calculator-item:hover {
    scale: 1.07;
}
.add-item-popup::-webkit-scrollbar-thumb:hover {
    background: #ffffff;
}
.filter-popup::-webkit-scrollbar-thumb:hover {
    background: #ffffff;
}
.our-games-card:hover {
    scale: 1.025;
}
.calculate-button:hover {
    background: var(--accent-color-hover);
}
.trade-calculator-add-item:hover {
    scale: 1.1;
}
.contact-button:hover {
    background-color: #222;
    box-shadow: none;
    color: white;
}
}

@media (max-width: 450px) {
    .filter-area-value-list-outer {
        margin: 10px 0px;
    }
    .discord-button {
        width: 100%;
        font-size: 1.3rem;
        justify-content: center;
    }
    .value-team-button {
        width: 100%;
        font-size: 1.3rem;
        justify-content: center;
    }
    .section-button {
        width: 100%;
        justify-content: center;
        font-size: 1.3rem
    }
    .logout-button {
        width: 90vw;
        justify-content: center;
        font-size: 1.3rem;
        box-sizing: border-box;
    }
}
