@font-face {
    font-family: "inter";
    src: url("Inter-VariableFont_opsz,wght.ttf")
}

:root {
    --primary: #5d55eb;
    --background-el: #080808;
}

.tab-content {
    display: none; 
}

.tab-content.active {
    display: block;
    height: calc(100%);
}

html, body {
    height: 100%;
    background-color: dimgray;
}

body {
    background-color: #292929;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    border-radius: 10px;
}

.background-circles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.circle {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0;
    animation: float 16s infinite ease-in-out;
    transform-origin: center;
}

.circle-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle at center, #271adb 0%, #5d1cd4 100%);
    top: 25%;
    left: 25%;
    animation-delay: 0s;
}

.circle-2 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle at center, #0f1788 0%, #650fc7 100%);
    top: 30%;
    left: 70%;
    animation-delay: 2s;
}


@keyframes float {
    0% {
        opacity: 0.6;
        transform: translate(0, 0) scale(1);
    }
    25% {
        opacity: 0.7;
        transform: translate(calc(10vw - 150px), calc(-5vh - 50px)) scale(1.1);
    }
    50% {
        opacity: 0.4;
        transform: translate(calc(-8vw - 80px), calc(8vh - 20px)) scale(0.9);
    }
    75% {
        opacity: 0.8;
        transform: translate(calc(-12vw + 30px), calc(-3vh + 40px)) scale(1.05);
    }
    100% {
        opacity: 0.6;
        transform: translate(0, 0) scale(1);
    }
}

@keyframes float-random {
    0% {
        opacity: 0.6;
        transform: translate(0, 0) scale(1);
    }
    20% {
        opacity: 0.6;
        transform: translate(calc(15vw - 80px), calc(-8vh + 20px)) scale(1.15);
    }
    40% {
        opacity: 0.8;
        transform: translate(calc(-10vw + 50px), calc(12vh - 60px)) scale(0.85);
    }
    60% {
        opacity: 0.8;
        transform: translate(calc(8vw - 120px), calc(10vh - 40px)) scale(1.2);
    }
    80% {
        opacity: 0.4;
        transform: translate(calc(-15vw + 70px), calc(-6vh + 30px)) scale(0.9);
    }
    100% {
        opacity: 0.6;
        transform: translate(0, 0) scale(1);
    }
}

.circle-2 {
    animation-name: float-random;
}


.circle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.3) 0%, transparent 50%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

* {
    margin: 0;
    padding: 0;
    font-family: 'inter';
    font-size: 1.3rem;
    box-sizing: border-box;
    font-weight: 500;
    color: #e3e3e3;
}

/**/
header {
    padding-left: 30px;
    display: flex;
    position: relative;
    justify-content: stretch;
    align-items: center;
    background-color: var(--background-el);
    height: 66px;
    z-index: 2;
}


.logo {
    position: relative;
    user-select: none;
    cursor: pointer;
    top: 1px;
    width: 140px;
}

.navbar {
    margin-left: 10px;
    z-index: 4;
}

.navbar a {
    font-size: 0.75rem;
    margin-left: 15px;
    line-height: 40px;
    text-decoration: none;
    user-select: none;
    padding-left: 15px;
    padding-right: 15px;
    font-weight: 600;
}

.navbar a:hover {
    background-color: #212121;
    border-radius: 5px;
    transition: 150ms;

}
#menu-icon {
    font-size: 1.6em;
    color: var(--primary);
    margin-bottom: 18px;
    display: none;
    margin-right: 0px;
    margin: 0 22px 18px 0

}


.sign-up {
    position: relative;
    width: 130px; 
    height: 46px; 
    background-color: #151515;
    border-radius: 8px; 
    margin-left: auto; 
    margin-right: 28px;
    cursor: pointer;
    font-size: 0.88rem;
    padding-top: 1px;
    padding-left: 14px;
    border: solid 2px rgba(0, 0, 0, 0)
}

.sign-up:hover {
    transition: 100ms;
    background-color: #1c1c1c;
}

.sign-up svg {
    position: relative;
    top: 6px;
    margin-right: 7px;
    
}
/**/

@media (min-width: 935px) {
    .navbar {
       display: flex !important
    }
}

@media (max-width: 934px) {
    .navbar {
        position: fixed;
        flex-direction: column;
        top: 63px;
        left: -10px;
        width: 100%;
        padding-top: 10px;
        padding-bottom: 10px;
        background-color: var(--background-el);
        border-bottom: 3px solid #222222;
        display: none;
        z-index: 3;
    }

    .sign-up {
        margin-right: 68px;
    }
    
    .navbar a {
        display: block;
        margin-bottom: 10px;
        padding-left: 20px;
        margin-left: 40px;
        margin-right: 20px;
        font-size: 0.9rem;
        z-index: 3;
    }
    
    #menu-icon {
        display: block;
        position: absolute;
        right: 0;
        top: 4px;
        cursor: pointer;
        user-select: none;
        font-weight: 600;
    }

}

@media (max-width: 934px) {
    .operations {
        display: none !important;

    }
    .content {
        width: 100% !important;
        margin-left: 0 !important;
    }
}

@keyframes shake {
    0% { transform: translateX(0); }
    25% { transform: translateX(-10px); }
    50% { transform: translateX(10px); }
    75% { transform: translateX(-5px); }
    100% { transform: translateX(0); }
}

.note {
    width: 290px;
    padding: 12px;
    margin-top: 20px;
    display: none;
    animation: shake 0.5s ease forwards;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    border: 2px solid rgb(163, 0, 41);
    background-color: black;
    border-radius: 8px;
    position: absolute;
    margin-left: auto;
    right: 27px;
}

.note__icon {
    width: 26px;
    height: 26px;
    margin-right: 8px;
}

.note__icon path {
    fill: #fff;
}

.note__title {
    font-weight: 500;
    font-size: 0.84rem;
    color: #fff;
}

.note__close {
    width: 25px;
    height: 28px;
    cursor: pointer;
    margin-left: auto;
}

.note__close path {
    fill: #fff;
}

.loader-1 {
    position: relative;
    width: 20px;
    height: 20px;
    border: 3px solid #FFF;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
    }

    @keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.loader-2 {
    position: relative;
    width: 20px;
    height: 20px;
    border: 3px solid #FFF;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
    }

    @keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
} 


/**/
.operations {
    background-color: var(--background-el);
    position: absolute;
    display: grid;
    width: 325px;
    row-gap: 0;
    grid-template-rows: 90px;
    z-index: 1;
    height: calc(100% - 66px);
    overflow-y: hidden;
    padding: 0;
}

.operation_subj {
    color: #ffffff;
    position: relative;
    display: flex;
    user-select: none;
    max-height: 90px;
    cursor: pointer;
}

.operation_subj:hover {
    background-color: #424242;
}

.operation_subj img {
    border-radius: 6px;
    position: relative;
    background: var(--primary);
    user-select: none;
    top: 14px;
    left: 17px;
    width: 64px;
    height: 64px;
    margin-right: 33px;
}

.info {
    display: flex;
    flex-direction: column;
}

.info #name {
    position: relative;
    font-size: 0.8rem;
    line-height: 2rem;
    font-weight: 700;
    top: 4px;
}

.info #price {
    position: relative;
    line-height: 2.2rem;
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 700;
}


/**/

main {
    height: calc(100% - 66px);
    background-color: #080809;
    width: 100%;
    overflow-x: hidden;
}

.content {
    position: relative;
    width: calc(100dvw);
    padding-top: 20px;
}

a:hover {
    cursor: pointer;
}

#centering {
    align-items: center;
    display: flex;
    flex-direction: column;
}

#exploits p {
    color: rgb(194, 69, 69);
    padding: 12px;
}

#player-checker-header {
    color: var(--primary);
    text-align: center;
    margin-top: 15px;
    font-size: 1.2rem;
    font-weight: 700;
}

.checker-input {
    background-color: rgb(33, 34, 36);
    border: 1px solid rgb(44, 49, 58);
    font-weight: 600;
    color: white;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 12px;
    padding-top: 12px;
    margin-top: 60px;
    border-bottom-left-radius: 7px;
    border-top-left-radius: 7px;
    outline: none;
    width: 295px;
    margin-left: 24px;
    font-size: 0.95rem;
}

#player-checker button {
    position: relative;
    padding-bottom: 15px;
    padding-left: 16px;
    padding-top: 3px;
    padding-right: 15px;
    border-style: none;
    border-top-right-radius: 7px;
    border-bottom-right-radius: 7px;
    margin-left: -7px;
    background-color: var(--primary);
    top:-3px;
    cursor: pointer;
}

#player-checker button:hover {
    background-color: #4338ca;
    transition-duration: 100ms;
}

.item {
    height: 190px;
    background-color: #0d0d0d;
    border-radius: 14px;
    padding: 15px;
    font-weight: 700;
    border: #202020cc solid 2px;
    user-select: none;
}

.content-box {
    background-color: #161616d7;
    border-radius: 14px;
    font-weight: 700;
    border: #202020 solid 2px;
    z-index: 1;
}


.item-info {
    position: relative;
    width: 270px;
}

.item-img {
    position: relative;
    width: 75px;
    margin-bottom: 5px;
    margin-right: 15px;
    image-rendering: pixelated;
    padding: 0px;
    bottom: 3px;
}

.img-smaller {
    padding: 4px;
}


.item-name {
    position: absolute;
    font-weight: 700;
    font-size: 20px;
    left: 90px;
    color: #d6d6d6;
}

.item-rarity {
    position: absolute;
    font-weight: 700;
    top: 34px;
    font-size: 16px;
    border-radius: 4px;
    padding-left: 5px;
    padding-right: 7px;
    padding-top: 2px;
    padding-bottom: 2px;
    text-wrap: nowrap;
}

.mythic {
    background-color: #c019d6;
}

.legendary {
    background-color: #d46a06;
}

.coins {
    background-color: #cf2020;
}

.divine {
    background-color: #0dbad8;
}

.rare {
    background-color: #1e3a97;
}

.epic {
    background-color: #8920b9;
}

.item-price {
    width: 150px;
    margin-top: 10px;
    position: relative;
    display: inline-flex;
    flex-direction: column;
    line-height: 1.5rem;
    
}

.item-ig {
    position: relative;
    font-weight: 700;
    color: #b6b6b6;
    font-size: 22px;
}

.item-irl {
    position: relative;
    font-weight: 700;
    color: #2ad680;
    font-size: 22px;
}


.item-hot {
    position: relative;
    font-weight: 700;
    font-size: 16px;
    padding: 2px 7px 2px 5px;
    background-color: #cc4915;
    border: #771d06 solid 2px;
    border-radius: 7px;
    text-wrap: nowrap;
    left: 52px;
    top: 30px;
    user-select: none;
}


.item-wrapper-b {
    margin-top: 20px;
    border-radius: 10px;
    height: 235px;
    display: flex;
    justify-content:start;
    gap: 14px;
}


.item-wrapper-f {
    margin-top: 20px;
    border-radius: 10px;
    display: flex;
    justify-content:end;
    gap: 14px;
}

.item-wrapper-f:hover .item-lane {
    animation-play-state: paused;
}

.item-wrapper-b:hover .item-lane {
    animation-play-state: paused;
}

.item-wrapper::-webkit-scrollbar {
    display: none;
}

.item-lane {
    flex-shrink: 0;
    display: flex; 
    overflow: hidden; 
    border-radius: 10px;
    gap: 14px;
}

.scroll-b {
    animation: scroll-b 60s linear infinite;
}

.scroll-f {
    animation: scroll-f 60s linear infinite;
}

@keyframes scroll-b {
    to {
        transform: translate(calc(-100% - 14px));
    }
}

@keyframes scroll-f {
    to {
        transform: translate(calc(100% + 14px));
    }
}

.load {
    display: flex;
    justify-content: center;
    cursor: pointer;
}

.giveaway{
    display: flex;
    margin: auto;
    margin-bottom: 30px;
    min-width: 400px;
    max-width: 600px;
    height: 200px;
    background-color: #111111;
    border-radius: 10px;
    border: solid 2px white
}

.browse-button {
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.05rem;
    border: 0;
    cursor: pointer; 
    padding: 10px 50px 14px 50px; 
    border-radius: 10px; 
    background-color: rgb(79 70 229);
    color: #d6d6d6;
    margin-bottom: 20px;
}

.data-form {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    margin-bottom: 0.85rem;
}

.browse-button:hover {
    transition: 150ms;
    background-color: #4338ca;
}

.input-group {
    margin-top: 0;
}

.input-group label {
    font-size: 0.65rem;
    font-weight: 500;
    color: #616161;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.data-input {
    background: #060606;
    border: 1px solid #202020;
    padding: 0.43rem 0.45rem;
    color: #e2e2e2;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    outline: none;
    border-radius: 0.18rem;
    width: 100%;
    caret-color: #777;
    transition: border-color 0.2s, background 0.2s;
}

.input-group input:focus {
    border-color: #2c2c2c;
    background: #0c0c0c;
}


.sign {
    display: block;
    height: 47px;
    width: 100%;
    background-color: #4f46e5;
    padding: 0.55rem;
    text-align: center;
    font-size: 0.88rem; /* NAZI GERMANY */
    color: rgb(230, 230, 230);
    border: none;
    border-radius: 0.18rem;
    font-weight: 600;
    margin-top: 1.2rem;
    cursor: pointer;
}

.sign:hover {
    transition: 150ms;
    background-color: #4338ca;
}

.footer {
    margin-top: 0.1rem;
    text-align: center;
    font-size: 0.58rem;
    font-weight: 300;
    color: #424242;
}

.footer a {
    font-size: inherit;
    color: #575757;
    text-decoration: none;
    transition: color 0.2s;
}

.footer a:hover {
    color: #888;
}

.sign-pop-up {
    position: absolute;
    width: 348px;
    padding: 1.8rem 1.8rem 1.8rem;
    background-color: #0a0a0a;
    top: 30dvh;
    left: 0; 
    right: 0; 
    margin: auto;
    border-radius: 0.45rem;
    z-index: 5;
}


.sign-pop-up::before {
    --angle: 0deg;
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: conic-gradient(from var(--angle), #202020);
    border-radius: calc(0.45rem + 2px);
    z-index: -2;
}

.sign-pop-up::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #0a0a0a; 
    border-radius: 0.45rem;
    z-index: -1;
}


@keyframes rotateConic {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.sign-up-wrapper {
    position: fixed;
    width: 100%;
    height: calc(100% + 66px);
    z-index: 4;
    background-color: #000000ce;
    top: -66px;
}


.form-logo {
    position: relative;
    user-select: none;
    top: 1px;
    width: 150px;
}

.close-sign {
    position: absolute;
    height: 36px;
    right: 8px;
    top: 8px;
    cursor: pointer;
}

.code-form {
    display: flex; 
    flex-direction: column; 
    align-items: center;
}

.sign-2 {
    display: block;
    width: 97%;
    height: 47px;
    background-color: #4f46e5;
    padding: 0.65rem;
    text-align: center;
    font-size: 0.9rem;
    color: rgb(255, 255, 255);
    border: none;
    border-radius: 0.18rem;
    font-weight: 600;
    margin-top: 1.8rem;
    cursor: pointer;
    padding: auto;
}

.sign-2:hover {
    transition: 150ms;
    background-color: #4338ca;
}

.go-back {
    position: absolute;
    cursor: pointer;
    height: 36px;
    left: 7px;
    top: 7px;
}

.input-container {
    display: flex;
    margin-top: 20px;
    gap: 8px;
}

.digit-input {
    width: 37px;
    height: 51px;
    text-align: center;
    margin: 0;
}

.input-container input {
    background: #0f0f0f;
    border: 1px solid #252525;
    font-weight: 600;
    color: white;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 12px;
    padding-top: 12px;
    border-radius: 5px;
    outline: none;
    font-size: 1.3rem;
}
