@import url('https://fonts.googleapis.com/css2?family=Chakra+Petch:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oxanium:wght@200..800&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #131217;
}

.bg-decoration-logo {
    position: absolute;
    top: -400px;
    left: -450px;
    width: 1200px;
    z-index: -5;
    opacity: 0.2;
}

.blue-blur {
    left: 0;
    background-color: #24C1C176;
    width: 200px;
    position: absolute;
    height: 100%;
    filter: blur(200px);
    z-index: -8;
}

.slider-red-blur {
    right: 0;
    background-color: #C15D2476;
    width: 200px;
    position: absolute;
    height: 100%;
    filter: blur(200px);
    z-index: -1;
}

.red-blur {
    right: 0;
    background-color: #C15D2426;
    width: 200px;
    position: absolute;
    height: 100%;
    filter: blur(200px);
    z-index: -1;
}


a {
    text-decoration: none;
}


.sidebar {
    display: none;
    margin: 8px;
    border-radius: 5px;
    width: 50px;
    height: 50px;
    position: relative;
    padding: 10px;
    cursor: pointer;
}

.side-menu {
    width: 300px;
    padding: 20px;
    background-color: #17171D;
    position: absolute;
    top: 60px;
    left: 0;
    border-radius: 10px;
    box-shadow: -5px 5px 4px #17171D70;
    transform: translateY(-50px);
    opacity: 0;
    transition: transform 0.5s ease, opacity 0.5s ease;
    pointer-events: none;
    cursor: default;
}

.side-menu .wrapper {
    display: flex;
    justify-content: space-between;

}

.side-menu .login-btn {
    padding: 8px 24px;
    background: #17171D;
    border: 1px solid #28303F;
    border-radius: 50px;
    font-family: "DM Sans", serif;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: 0.4s ease all;
    width: 100%;
    height: max-content;
    margin-top: 16px;
    text-align: center;
    display: none;
    color: #fff;

}


.side-menu .login-btn:hover {
    background: #D08800;
}

.side-menu .icons {
    display: flex;
    flex-direction: column;
    display: none;
}

.side-menu .icons .icon-box {
    cursor: pointer;
    margin-bottom: 10px;
}

.side-menu .icons .icon-box:nth-last-child(1) {
    margin-bottom: 0;
}

.side-menu.open {
    transform: translateY(0px);
    opacity: 1;
    pointer-events: auto;
}

.side-menu .left {
    display: flex;
    flex-direction: column;
    gap: 20px;

}

.side-menu .left a {
    color: #FFFFFF69;
    font-family: Chakra Petch;
    position: relative;
    width: max-content;
    transition: 0.4s ease all;
}

.side-menu .left a:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 1px;
    width: 0%;
    background: #3EBFF6;
    box-shadow: 0px 0px 29px 0px #3EBFF6C2;
    transition: 0.4s ease all;

}

.side-menu .left a:hover {
    color: #fff;
}

.side-menu .left a:hover:before {
    width: 100%;

}

.sidebar span {
    background-color: #fff;
    width: 80%;
    height: 8%;
    border-radius: 5px;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.5s, width 0.5s;
}

.sidebar .line-1 {
    transform: translate(-50%, -16px);
}

.sidebar .line-3 {
    transform: translate(-50%, 13px);
}

.openmenu .line-1 {
    transform: translate(-50%, -16%) rotate(-45deg);
}

.openmenu .line-3 {
    transform: translate(-50%, -16%) rotate(45deg);
}

.openmenu .line-2 {
    width: 0;
}

header {
    width: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.045) 100%);
    height: max-content;
    border-bottom: 1px solid #FFFFFF30;
    position: relative;
    backdrop-filter: blur(10px);
    z-index: 999;
}

header marquee {
    color: #fff;
    font-family: "chakra petch", serif;
    background: linear-gradient(90deg, #34A4FF 0%, #1F6299 100%);
    /*background: linear-gradient(90deg, #ff1919 0%, #ff2727 100%);*/
    padding: 10px;
    font-size: 16px;
}

header nav {
    width: 90%;
    margin: auto;
    display: grid;
    grid-template-columns: 0.4fr 2fr 0.9fr 1fr;
    color: #fff;
    align-items: center;
    height: 80px;

}

header nav .logo {
    width: 45px;
    height: 55px;
}

header nav .logo img {
    width: 100%;
    height: 100%;
}

header nav .menu {
    height: 100%;
    align-content: center;
}

header nav .menu a {
    color: #FFFFFF69;

    font-family: Chakra Petch;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    height: 100%;

    position: relative;
    padding: 28px 0;
    margin: 0 8px;
    transition: 0.4s ease all;
}

header nav .menu a:hover {
    color: #fff;
}

header nav .menu a:hover::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: #3EBFF6;
    box-shadow: 0px 0px 29px 0px #3EBFF6C2;

}



header nav .icons {
    display: flex;
    gap: 10px;
    justify-content: left;
    align-items: center;
}

header nav .icons .icon-box {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #28303F;
    background: #17171D;
    border-radius: 100%;
    transition: 0.4s ease all;
    cursor: pointer;

}

header nav .icons .icon-box svg {
    width: 22px;
    height: auto;
    transition: 0.4s ease all;
}

header nav .menu-discord:hover {
    background: #7289DA;
}

header nav .menu-youtube:hover {
    background: #FF0000;
}

header nav .menu-instagram:hover {
    background: #E1306C;
}

header nav .menu-book:hover {
    background: #CFCFCF;
}



header nav .menu-discord:hover .menu-discrod-svg {
    fill: #fff;
}

header nav .menu-youtube:hover .menu-youtube-svg {
    fill: #fff;
}

header nav .menu-instagram:hover .menu-instagram-svg {
    fill: #fff;
}

header nav .menu-book:hover .menu-book-svg {
    fill: #3D3D3D;
}

header nav .right {
    display: flex;
    gap: 10px;
}

header nav .right .login-btn {
    padding: 8px 24px;
    background: #17171D;
    border: 1px solid #28303F;
    border-radius: 50px;

    font-family: "DM Sans", serif;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: 0.4s ease all;
    width: max-content;
    height: max-content;
    color: #fff;

}

header nav .right .login-btn:hover {
    background: #D08800;
}

header nav .right .login-btn.active:hover {
    background: #D1383A;
}

header nav .right .user-icon .icon-box {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #28303F;
    background: #17171D;
    border-radius: 100%;
    transition: 0.4s ease all;
    cursor: pointer;
}

header nav .right .user-icon .icon-box:hover {
    background-color: #706f6f;
}



header nav .right .currency {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

header nav .right .currency .selected-currency {
    padding: 8px 24px;
    background: #17171D;
    border: 1px solid #28303F;
    border-radius: 50px;

    font-family: "DM Sans", serif;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: 0.4s ease all;
    cursor: pointer;
    position: relative;

}

header nav .right .currency .all-currency {
    display: none;
    position: absolute;
    bottom: -384px;
    width: max-content;
    background: #17171D;
    padding: 20px 50px 20px 20px;
    border-radius: 10px;
}

header nav .right .currency .all-currency ul li {
    list-style: none;
    font-family: "chakra petch", serif;
    color: #514f5a;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 5px;
    transition: 0.2s ease all;
}


header nav .right .currency .all-currency ul li:hover {
    color: #838288;

}
header nav .right .currency:hover .all-currency {
    display: block;
}










/* ?FOOTER FOOTER FOOTER */
/* ?FOOTER FOOTER FOOTER */
/* ?FOOTER FOOTER FOOTER */

footer {
    width: 100%;
    height: max-content;
    background-image: radial-gradient(circle farthest-side at center bottom, hsl(0, 0%, 15%) 2%, hsl(252, 12%, 8%) 35%);
    padding: 20px 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 100px;
}

footer .container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
}


footer .container .left .logo {
    display: flex;
    align-items: center;
    justify-content: left;
    gap: 20px;
    font-family: "poppins", serif;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 40px;

}

footer .container .left p {
    color: #ADB9C7;
    font-family: "poppins", serif;
    font-weight: 400;
    width: 80%;
    font-size: 14px;
}

footer .container .left .logo img {
    width: 30px;
    height: 40px;
}

footer .container .left .text {
    color: #fff;
    margin-top: 100px;
}

footer .container .middle h2 {
    color: #fff;
    font-family: "poppins", serif;
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 10px;
}

footer .container .middle {
    display: flex;
    flex-direction: column;
}

footer .container .middle a {
    color: #fff;
    font-family: "poppins", serif;
    font-weight: 400;
    font-size: 16px;
    color: #ADB9C7;
    margin-bottom: 10px;
}

footer .container .middle p:nth-last-child(1) {
    margin-bottom: 0;
}

footer .container .right h2 {
    color: #fff;
    font-family: "poppins", serif;
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 10px;
}

footer .container .right p {
    color: #fff;
    font-family: "poppins", serif;
    font-weight: 400;
    font-size: 16px;
    color: #ADB9C7;
    margin-bottom: 10px;
}

footer .container .right .icon-box {
    display: flex;
    gap: 20px;

}

footer .container .right .icon-box .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    width: 30px;
    height: 30px;
}

footer .container .right .icon-box .icon img {
    width: 100%;
    height: 100%;
}

/* ?FOOTER FOOTER FOOTER */
/* ?FOOTER FOOTER FOOTER */
/* ?FOOTER FOOTER FOOTER */