@import url('https://fonts.googleapis.com/css2?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');

* {
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
}

::-webkit-scrollbar {
    width: 0px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(
        180deg,
        #1f1f1f,
        #3a3a3a
    );
    border-radius: 10px;
    border: 2px solid rgba(0, 0, 0, 0.4);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(
        180deg,
        #2a2a2a,
        #5a5a5a
    );
}

.fade-up {
    opacity: 0;
    transform: translateY(12px);
    animation: fadeUp 0.6s ease forwards;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#keychain-canvas {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
}

.mobile-menu-btn {
    display: none;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    padding: 10px;
    z-index: 9999;
}

.right-btns-mobile {
    width: 100%;
    height: 100vh;
    display: none;
    align-items: center;
    justify-content: right;
    position: absolute;
    z-index: 999;
}

.right-btns-mobile.active {
    display: flex;
}

.box-right-btns-mobile {
    background-color: rgb(0, 0, 0);
    width: 70%;
    height: 100vh;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 1%;
}

.box-right-btns-mobile button {
    text-align: left;
    background-color: rgba(255, 255, 255, 0);
    border: 0;
    color: rgb(212, 212, 212);
    font-weight: 500;
    font-size: 70%;
    width: 90%;
}

.pending-message {
    opacity: 0;
    margin-bottom: 24px;
    padding: 16px 20px;
    border-radius: 14px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    color: #ddd;
    align-items: center;
    gap: 12px;
    position: absolute;
    margin-top: 40%;
    margin-left: 35%;
    display: flex;
    transform: translateY(8px);
    transition: opacity .4s ease, transform .4s ease;
}

.pending-message i { 
    color: #f0c36d; 
    font-size: 20px; 
} 

.pending-message h1 { 
    font-size: 14px; 
    font-weight: 600; 
    margin: 0; 
} 

.pending-message p { 
    font-size: 12px; 
    opacity: 0.7; 
    margin: 0; 
}

.pending-message.show {
    opacity: 1;
    transform: translateY(0);
}

.pending-message.hide {
    opacity: 0;
    pointer-events: none;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.home {
    width: 100%;
    height: 90.5%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.box-home {
    width: 90%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.box-home h1 {
    font-size: 80%;
    font-weight: 500;
    color: rgb(131, 131, 131);
    animation: fadeUp 1.5s ease forwards;
}

.box-home img {
    width: 35%;
    animation: fadeUp 0.6s ease forwards;
}

.box-api {
    position: relative;
    cursor: pointer;
}

.box-api.loading .box-api-one,
.box-api.loading .box-api-two {
    opacity: 0;
}

.card-loading {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .5s;
}

.box-api.loading .card-loading {
    opacity: 1;
}

.card-loading i {
    font-size: 20px;
    color: #fff;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

#iframe-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.123);
    backdrop-filter: blur(6px);
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity .4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

#iframe-modal.active {
    opacity: 1;
    pointer-events: all;
    display: flex;
}

#iframe-view {
    width: 90%;
    height: 90%;
    border: none;
    border-radius: 12px;
    background: #000;
}

#close-iframe {
    position: absolute;
    top: 39px;
    right: 5.5%;
    box-shadow: rgba(255, 255, 255, 0.089) 0px 0px 0px 1px;
    background: rgb(255 255 255 / 3%);
    color: #fff;
    border: none;
    font-size: 120%;
    padding: 8px 12px;
    cursor: pointer;
    border-radius: 6px;
    height: 7%;
    width: 3.5%;
}

.page {
    display: none;
}

.page.active {
    display: flex;
}

.body {
    background-color: rgb(15, 15, 15);
    width: 100%;
    height: 100vh;
}

.footer-top {
    background-color: rgb(10, 10, 10);
    width: 100%;
    height: 9vh;
    display: flex;
}

.left-footer-top {
    width: 20%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.left-footer-top img {
    height: 50%;
}

.right-footer-top {
    width: 80%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: left;
    gap: 1%;
}

.right-footer-top button.select {
    width: 10%;
    height: 60%;
    background-color: rgba(134, 146, 150, 0.055);
    box-shadow: rgba(255, 255, 255, 0.089) 0px 0px 0px 1px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    cursor: default;
    transition: 0.5s;
}

.right-footer-top button.select h1 {
    color: rgb(221, 218, 218);
    font-weight: 600;
    font-size: 95%;
}

.right-footer-top button.select i {
    color: rgb(221, 218, 218);
    margin-right: 8%;
    font-size: 90%;
}

.right-footer-top button.unselect {
    width: 10%;
    height: 60%;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(134, 146, 150, 0);
    border: 0;
    transition: 0.5s;
    cursor: pointer;
}

.right-footer-top button.unselect:hover {
    background-color: rgba(134, 146, 150, 0.034);
}

.right-footer-top button.unselect h1 {
    color: rgb(133, 133, 133);
    font-weight: 600;
    font-size: 95%;
}

.right-footer-top button.unselect i {
    color: rgb(133, 133, 133);
    margin-right: 8%;
    font-size: 90%;
}

.separator-btn {
    background-color: rgba(255, 255, 255, 0.034);
    width: 1px;
    height: 50%;
}

.footer-separator {
    background-color: rgba(255, 255, 255, 0.034);
    width: 100%;
    height: 1px;
    animation: fadeIn 0.7s ease forwards;
}

.panels {
    height: 90.5%;
    align-items: center;
    justify-content: center;
}

.box-panels {
    width: 89%;
    height: 100%;
}

.box-panels-one {
    width: 100%;
    height: 20%;
    display: flex;
    align-items: center;
    color: white;
    gap: 2%;
    animation: fadeIn 0.8s ease forwards;
}

.box-panels-one h1 {
    font-weight: 500;
}

.icon-border i {
    animation: fadeUp 0.5s ease forwards;
}

.icon-border {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.055);
}

.total {
    width: 5%;
    height: 30%;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40%;
    color: rgb(131, 131, 131);
    box-shadow: rgba(255, 255, 255, 0.089) 0px 0px 0px 1px;
    background-color: rgba(255, 255, 255, 0.055);
}

.box-panels-two {
    width: 100%;
    height: 70%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1%;
}

.box-panels-api {
    width: 100%;
    height: 90%;
    gap: 1%;
    row-gap: 3%;
    display: flex;
    flex-wrap: wrap;
    scroll-behavior: smooth;
    overflow-y: auto;
    padding: 1px;
}

.box-api {
    box-shadow: rgba(255, 255, 255, 0.089) 0px 0px 0px 1px;
    background-color: rgba(255, 255, 255, 0.055);
    width: 32.65%;
    height: 47.5%;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    opacity: 1;
    transition: 0.5s;
    animation: fadeUp 0.6s ease forwards;
}

.box-api:hover {
    transform: translateY(-4px);
    box-shadow: rgba(255, 255, 255, 0.212) 0px 0px 0px 1px;
}

.status-box-api {
    position: absolute;
    z-index: 90;
    width: 100%;
    height: 30%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2%;
    gap: 50%;
}

.views-stats {
    width: 16%;
    height: 100%;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(131, 131, 131);
    background-color: rgba(0, 0, 0, 0.815);
}

.views-stats h1 {
    font-size: 60%;
    margin-left: 10px;
}

.views-stats i {
    font-size: 50%;
}

.verify-stats {
    width: 23%;
    height: 100%;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(155, 155, 155);
    box-shadow: rgba(255, 255, 255, 0.363) 0px 0px 0px 1px;
    background-color: rgba(255, 255, 255, 0.281);
    gap: 5%;
}

.verify-stats h1 {
    font-size: 60%;
    margin-left: 10px;
}

.verify-stats i {
    font-size: 50%;
}

.box-api-one {
    position: relative;
    width: 100%;
    height: 50%;
    overflow: hidden;
}

.box-api-one img {
    width: 100%;
}

.box-api-two {
    width: 100%;
    height: 50%;
}

.box-api-two-title {
    width: 100%;
    height: 50%;
    display: flex;
    align-items: end;
    font-size: 60%;
}

.box-api-two-title h1 {
    color: rgb(224, 224, 224);
    margin-left: 5%;
    text-transform: lowercase;
}

.box-api-two-desc {
    width: 100%;
    height: 50%;
    display: flex;
    align-items: start;
    font-size: 40%;
}

.box-api-two-desc h1 {
    color: rgb(146, 146, 146);
    margin-left: 5%;
    text-transform: lowercase;
}

.contact {
    width: 100%;
    height: 90.5%;
    align-items: center;
    justify-content: center;
}

.box-contact-two {
    width: 100%;
    height: 70%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1%;
}

.box-contact {
    width: 89%;
    height: 100%;
}

.box-contact-profile {
    background-color: rgba(255, 255, 255, 0.027);
    border-radius: 10px;
    width: 32%;
    height: 90%;
    box-shadow: rgba(255, 255, 255, 0.13) 0px 0px 0px 1px;
    transition: 0.5s;
    animation: fadeUp 1.2s ease forwards;
}

.box-contact-profile:hover {
    box-shadow: rgba(255, 255, 255, 0.322) 0px 0px 0px 1px;
}

.box-contact-profile-one {
    width: 100%;
    height: 70%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.box-contact-profile-one img {
    height: 70%;
    border-radius: 100%;
}

.box-contact-profile-two {
    width: 100%;
    height: 30%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
}

.socialmedias {
    font-size: 150%;
}

.socialmedias a {
    color: rgb(72, 212, 255);
}

.box-contact-profile-two h1 {
    font-size: 120%;
    font-weight: 700;
    color: rgb(167, 167, 167);
}

.box-contact-separator {
    height: 50%;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.048);
}

.upload {
    height: 90.5%;
    align-items: center;
    justify-content: center;
}

.box-upload {
    width: 89%;
    height: 100%;
}


.box-chk-two {
    width: 100%;
    height: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1%;
}

.upload-task {
    width: 100%;
    height: 90%;
    display: flex;
    flex-direction: column;
    gap: 2%;
}

.upload-task h1 {
    font-size: 120%;
    color: rgb(190, 190, 190);
    font-weight: 500;
    animation: fadeUp 1.5s ease forwards;
}

.upload-task h3 {
    font-size: 80%;
    color: rgb(49, 49, 49);
    font-weight: 500;
    animation: fadeUp 3s ease forwards;
}

.upload-task input {
    width: 50%;
    border: 0;
    height: 15vh;
    border-radius: 7px;
    background-color: rgba(255, 255, 255, 0.062);
    box-shadow: rgba(255, 255, 255, 0.212) 0px 0px 0px 1px;
    padding-left: 1%;
    transition: 0.5s;
    color: rgb(136, 136, 136);
    animation: fadeUp 2s ease forwards;
}

.upload-task input:focus-visible {
    outline: 0;
    box-shadow: rgba(255, 255, 255, 0.521) 0px 0px 0px 1px;
}

.upload-task button {
    width: 51%;
    border: 0;
    height: 20vh;
    border-radius: 5px;
    background-color: rgb(255, 255, 255);
    color: black;
    margin-top: 1%;
    transition: 0.5s;
    cursor: pointer;
    animation: fadeUp 2.3s ease forwards;
}

.upload-task button:hover {
    background-color: rgb(192, 192, 192);
}

.upload-task button h1 {
    color: rgb(15, 15, 15);
    font-weight: 600;
    font-size: 95%;
}