* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    -webkit-user-select: none;
    /* Safari/Chrome */
    -moz-user-select: none;
    /* Firefox */
    -ms-user-select: none;
    /* IE10+ */
}

:focus {
    outline: none;
}

input,
textarea {
    user-select: text;
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
}

body {
    font-family: Arial;

    --primary-color: #9b3ce8;
    --secondary-color: #414141;
    --primary-background: linear-gradient(to left bottom, #9b3ce8, #3386ef, #13bcec);
}

h1 {
    margin: 20px 0;
    text-align: center;
    background: linear-gradient(215deg, #9b3ce8 30%, #3386ef, #13bcec);
    color: transparent;
    background-clip: text;
    font-size: 40px;
}



#createTab {
    max-width: 600px;
    width: 90vw;
    display: flex;
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
    flex-direction: column;
    gap: 15px;
    text-align: center;
}

textarea {
    width: 100%;
    padding: 10px 10px;
    border-radius: 8px;
    resize: none;
    color: #000000;
    height: 126px;
    border: 1px solid #414141;
    background-color: transparent;
    font-family: inherit;
    font-size: 16px;
    margin-bottom: 10px;
}

textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

#charCount {
    position: relative;
    top: -50px;
    height: 1px;
    text-align: right;
    margin-right: 5px;
    font-size: 12px;
    margin-top: 5px;
    color: #5e5e5e;
}


#pdfInput {
    display: none;
}

.Documents-btn {
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    /* width: 180px; */
    height: 55px;
    border: none;
    padding: 0px 17px;
    border-radius: 5px;
    background: linear-gradient(to left bottom, #9b3ce8, #3386ef, #13bcec);
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

#fileName {
    margin-left: 30px;
    font-size: 10px;
    color: #ffffff80;
    font-weight: 400;
}

.folderContainer {
    width: 40px;
    height: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    position: relative;
}

.fileBack {
    z-index: 1;
    width: 80%;
    height: auto;
}

.filePage {
    width: 50%;
    height: auto;
    position: absolute;
    z-index: 2;
    transition: all 0.3s ease-out;
}

.fileFront {
    width: 85%;
    height: auto;
    position: absolute;
    z-index: 3;
    opacity: 0.95;
    transform-origin: bottom;
    transition: all 0.3s ease-out;
}

.text {
    color: white;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.Documents-btn:hover .filePage {
    transform: translateY(-5px);
}

.Documents-btn:hover {
    background-color: rgb(58, 58, 94);
}

.Documents-btn:hover .fileFront {
    transform: rotateX(30deg);
}




.btn {
    margin-left: auto;
    margin-right: auto;
    border: none;
    width: 100%;
    height: 5em;
    border-radius: 3em;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background: #1C1A1C;
    cursor: pointer;
    transition: all 450ms ease-in-out;
}

.sparkle {
    fill: #AAAAAA;
    transition: all 800ms ease;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 0px 10px rgba(173, 173, 173, 0.795));
}

@keyframes float {
    0% {
        transform: translateY(0);
        filter: drop-shadow(0 0px 10px rgba(173, 173, 173, 0.795));
    }

    30% {
        transform: translateY(-2px);
        filter: drop-shadow(0 0px 10px rgba(173, 173, 173, 0.795));
    }

    50% {
        filter: drop-shadow(0 0px 10px rgb(235, 235, 235));
    }

    70% {
        transform: translateY(2px);
        filter: drop-shadow(0 0px 10px rgba(173, 173, 173, 0.795));
    }

    100% {
        transform: translateY(0);
        filter: drop-shadow(0 0px 10px rgb(235, 235, 235));
    }
}

.btn .text {
    font-weight: 600;
    color: #cacaca;
    font-size: x-large;
}

.btn:hover {
    /* background: linear-gradient(0deg,#A47CF3,#683FEA); */
    background: linear-gradient(to left bottom, #9b3ce8, #3386ef, #13bcec);
}

.btn:hover .text {
    color: white;
}

.btn:hover .sparkle {
    fill: white;
    transform: scale(1.2);
}


.btn-shine {
    /* position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); */
    /* padding: 12px 48px; */
    color: #fff;
    background: linear-gradient(to right, #9f9f9f 0, #fff 10%, #868686 20%);
    background-position: 0;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 5s infinite linear;
    animation-fill-mode: forwards;
    -webkit-text-size-adjust: none;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    white-space: nowrap;
    font-family: "Poppins", sans-serif;
}

@keyframes shine {
    0% {
        background-position: 0;
    }

    /* 60% {
    background-position: 180px;
  } */
    100% {
        background-position: 180px;
    }
}

.btn:hover .btn-shine {
    color: transparent;
    -webkit-text-fill-color: transparent;
    background: linear-gradient(to right, #ffffff 0%, #9f9f9f 10%, #ffffff 20%);
    background-clip: text;
}




#savedTab {
    margin-top: 30px;
    margin-bottom: 150px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bin {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.bin:hover {
    transform: scale(1.1);
}

#savedTab button {
    width: 90%;
    min-height: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ccc;
    justify-content: space-between;
    font-size: 14px;
    padding: 0.5em 2em;
    border: transparent;
    color: white;
    cursor: pointer;
    opacity: 0.9;
}

#savedTab button:nth-child(2n) {
    background: #1e90ff;
}

#savedTab button:nth-child(2n-1) {
    background: #256dbe;
}



.glass-radio-group {
    --bg: rgba(255, 255, 255, 0.76);
    --text: #161515;

    display: flex;
    position: fixed;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg);
    border-radius: 1rem;
    backdrop-filter: blur(12px);
    /* box-shadow:
        inset 1px 1px 4px rgba(255, 255, 255, 0.2),
        inset -1px -1px 6px rgba(0, 0, 0, 0.3),
        0 4px 12px rgba(0, 0, 0, 0.15); */
    /* border: 1px solid rgba(16, 1, 104, 0.068); */
    background-color: rgba(212, 212, 212, 0.829);
    overflow: hidden;
    width: fit-content;


}

.glass-radio-group input {
    display: none;
}

.glass-radio-group label {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    font-size: 20px;
    padding: 0.8rem 1.6rem;
    cursor: pointer;
    font-weight: 600;
    letter-spacing: 0.3px;
    color: var(--text);
    position: relative;
    z-index: 2;
    transition: color 0.3s ease-in-out;
}

.glass-radio-group label:hover {
    color: rgb(34, 138, 179);
}

.glass-radio-group input:checked+label {
    color: #fff;
}

.glass-glider {
    position: absolute;
    top: 0;
    bottom: 0;
    width: calc(100% / 2);
    border-radius: 1rem;
    z-index: 1;
    transition:
        transform 0.5s cubic-bezier(0.37, 1.95, 0.66, 0.56),
        background 0.4s ease-in-out,
        box-shadow 0.4s ease-in-out;
}

/* Silver */
#glass-silver:checked~.glass-glider {
    transform: translateX(0%);
    background: linear-gradient(212deg, #0f23fac7 0%, #0f85fa 24%, #0fe7fa 100%);

}

/* Gold */
#glass-gold:checked~.glass-glider {
    transform: translateX(100%);
    background: linear-gradient(212deg, #9b3ce8 0%, #0f85faeb 100%);

}


.credit {
    position: fixed;
    bottom: 10px;
    right: 10px;
    font-size: 12px;
    color: #07070780;
    font-weight: 400;
}





.button {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    /* gap: 8px; */
    height: 36px;
    width: 36px;
    border: none;
    background: linear-gradient(212deg, #9b3ce8 0%, #0f85faeb 100%);
    border-radius: 50px;
    cursor: pointer;

    position: fixed;
    top: 20px;
    left: 10px;
}



.button .svg-icon {
    animation: spin 8s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.sidebar-close-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #00000080;
    z-index: 9;
    backdrop-filter: blur(5px);
    display: none;
}

.sidebar {
    display: none;

    position: fixed;
    top: 10px;
    left: 8px;
    z-index: 10;
    width: 70vw;
    max-width: 400px;
    height: fit-content;
    border-radius: 20px;
    background-color: rgb(255, 255, 255);
    box-shadow: 5px 0px 20px rgba(0, 0, 0, 0.521);
    animation: zoomIn 0.5s ease-out;
    transform-origin: top left;
}

.sidebar h3 {
    font-size: 35px;
    font-weight: 600;
    color: transparent;
    background: linear-gradient(215deg, #9b3ce8 3%, #3386ef, #13bcec);
    background-clip: text;
    margin-top: 20px;
    text-align: center;
}

@keyframes zoomIn {
    0% {
        transform: scale(0.2);
        opacity: 0;
    }

    60% {
        transform: scale(1.05) translate(0, 0);
        opacity: 1;
    }

    100% {
        transform: scale(1) translate(0, 0);
    }
}

.menu-btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 30px;
    justify-content: center;
    text-align: center;
    margin-bottom: 50px;
}

.menu-btns button {
    margin-left: auto;
    margin-right: auto;
    border-radius: 50px;
    background: linear-gradient(215deg, #9b3ce8 5%, #3386ef, #13bcec);
    border: none;
    width: 70%;
    height: 45px;
    padding: 10px 20px;
    font-size: 18px;
    color: #faf5f5;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.sidebar span {
    font-size: 30px;
    color: #00000000;
    background: linear-gradient(215deg, #dd00ff 10%, #ff0000 62%);
    background-clip: text;
    font-weight: 800;
    position: absolute;
    top: 15px;
    left: 15px;
    font-family: Arial, Helvetica, sans-serif;
    cursor: pointer;
}




/* ---------------------------LOGIN----------------------------- */

#cross {
    top: -25px;
    left: 95%;
    /* position: fixed; */
    position: relative;
    font-size: 48px;
    height: 0px;
    margin: 0;
    padding: 0;
    cursor: pointer;
    z-index: 120;
    color: rgb(255, 0, 0);
    background: transparent;
    /* background: black; */
    /* display: flex; */
    display: none;
}



#login {
    display: flex;
    position: absolute;
    z-index: 99;
    background-color: rgba(0, 0, 0, 0.719);
    width: 100%;
    height: 100%;
    top: 0;
}

#login h1 {
    font-size: 35px;
}


.loginbox {
    margin: auto;
    background-color: white;
    padding: 30px;
    border-radius: 20px;
    width: 90%;
    max-width: 400px;
    height: 300px;
    text-align: center;
}

.loginbox input {
    width: 100%;
    padding: 15px;
    border-radius: 15px;
    border: 1px solid #00394bcb;
    background-color: #00394b33;
    margin-top: 10px;
    font-size: 16px;
}

.loginbox input::placeholder {
    color: #00394b;
    font-weight: 600;
}

.loginbox input:focus {
    outline: none;
    border-color: #007aff;
}

.loginbox p {
    font-size: 13px;
}

.loginbox a {
    color: #007aff;
    font-weight: 600;
}

.loginbox button {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 15px;
    background: linear-gradient(215deg, #9b3ce8 3%, #3386ef, #13bcec);
    color: white;
    font-weight: 600;
    margin-top: 20px;
    font-size: 16px;
    margin-bottom: 10px;
}

.loginbox button:hover {
    background: linear-gradient(215deg, #9b3ce8 15%, #3386ef, #13bcec);
    cursor: pointer;
}






.popup {
    font-size: medium;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.55);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999;
    /* padding: 20px; */
}

.popup-box {
    width: 100%;
    max-width: 700px;
    background: white;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .25);
    position: relative;
    overflow-y: auto;
    max-height: 100vh;
}

.popup-box h1 {
    margin-top: 0;
    font-size: 26px;
}

.intro {
    color: #555;
    margin-bottom: 20px;
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    border-radius: 10px;
    background: linear-gradient(135deg, #007bff8e, #00aeff94);
    color: white;
}

.step span {
    font-weight: bold;
    font-size: 18px;
    background: rgba(255, 255, 255, .25);
    padding: 6px 10px;
    border-radius: 8px;
}

.step p {
    margin: 0;
}

.step a {
    color: white;
    text-decoration: underline;
}

.video {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    /* 16:9 ratio */
    margin-bottom: 100px;
}

.video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.close-btn {
    width: auto;
    position: absolute;
    top: 10px;
    right: 10px;
    border: none;
    background: linear-gradient(135deg, #007bff8e, #00aeff94);
    color: white;
    font-size: 16px;
    padding: 6px 10px;
    border-radius: 8px;
    cursor: pointer;
}





#about {
    display: none;
    /* display: flex; */
    position: absolute;
    top: 0;
    justify-content: center;
    align-items: center;
    /* min-height: 100vh; */
    z-index: 100;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(-150px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.about-box {
    width: 100%;
    /* max-width:650px; */
    background: white;
    color: white;
    padding: 30px;
    /* border-radius:18px;
box-shadow:0 10px 30px rgba(0,0,0,.08); */
    border-top: 6px solid transparent;
    background-image: linear-gradient(rgb(0, 0, 0), rgb(0, 0, 0)),
        var(--primary-background);
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.about-box h1 {
    margin-top: 0;
    font-size: 30px;
    /* text-align: right; */
    font-family: monospace;
    /* word-spacing: -12px; */
    /* background: linear-gradient(135deg, #007bff8e, #00aeff94); */
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;

}

.about-box p {
    line-height: 1.6;
    color: #ffffff;
}

.info {
    margin-top: 20px;
    padding: 15px;
    border-radius: 12px;
    background: var(--primary-background);
    color: white;
}

.info div {
    margin: 6px 0;
    font-size: 14px;
}

.features {
    margin-top: 20px;
}

.features li {
    margin: 6px 0;
}

.footer {
    margin-top: 20px;
    font-size: 13px;
    opacity: .7;
    text-align: right;
}


.back-circle {
    display: flex;
    position: absolute;
    top: 25px;
    left: 20px;
    width: 42px;
    height: 42px;
    border: none;
    /* border-radius: 50%; */
    font-size: 35px;
    cursor: pointer;

    outline: none;
    /* padding: 4px; */
    padding-left: 4px;
    background: var(--primary-background);
    transform: rotate(180deg);
    /* box-shadow: 0 6px 15px rgba(0, 0, 0, .15); */
    transition: .25s;

    background-clip: text;
    color: transparent;
}

.back-circle:hover {
    transform: scale(1.1) rotate(180deg);
}










#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.884);
    display: none;
    /* display: flex; */
    align-items: center;
    justify-content: center;
    font-size: 30px;
    z-index: 999;
    backdrop-filter: blur(10px);
    color: white;
}

#overlay p {
    position: fixed;
    bottom: 30%;
    text-align: center;

}



.loader {
    --fill-color: #5c3d99;
    --shine-color: #5c3d9933;
    transform: scale(0.5);
    /* You can change the size */
    width: 100px;
    height: auto;
    position: relative;
    filter: drop-shadow(0 0 10px var(--shine-color));
}

.loader #pegtopone {
    position: absolute;
    animation: flowe-one 1s linear infinite;
}

.loader #pegtoptwo {
    position: absolute;
    opacity: 0;
    transform: scale(0) translateY(-200px) translateX(-100px);
    animation: flowe-two 1s linear infinite;
    animation-delay: 0.3s;
}

.loader #pegtopthree {
    position: absolute;
    opacity: 0;
    transform: scale(0) translateY(-200px) translateX(100px);
    animation: flowe-three 1s linear infinite;
    animation-delay: 0.6s;
}

.loader svg g path:first-child {
    fill: var(--fill-color);
}

@keyframes flowe-one {
    0% {
        transform: scale(0.5) translateY(-200px);
        opacity: 0;
    }

    25% {
        transform: scale(0.75) translateY(-100px);
        opacity: 1;
    }

    50% {
        transform: scale(1) translateY(0px);
        opacity: 1;
    }

    75% {
        transform: scale(0.5) translateY(50px);
        opacity: 1;
    }

    100% {
        transform: scale(0) translateY(100px);
        opacity: 0;
    }
}

@keyframes flowe-two {
    0% {
        transform: scale(0.5) rotateZ(-10deg) translateY(-200px) translateX(-100px);
        opacity: 0;
    }

    25% {
        transform: scale(1) rotateZ(-5deg) translateY(-100px) translateX(-50px);
        opacity: 1;
    }

    50% {
        transform: scale(1) rotateZ(0deg) translateY(0px) translateX(-25px);
        opacity: 1;
    }

    75% {
        transform: scale(0.5) rotateZ(5deg) translateY(50px) translateX(0px);
        opacity: 1;
    }

    100% {
        transform: scale(0) rotateZ(10deg) translateY(100px) translateX(25px);
        opacity: 0;
    }
}

@keyframes flowe-three {
    0% {
        transform: scale(0.5) rotateZ(10deg) translateY(-200px) translateX(100px);
        opacity: 0;
    }

    25% {
        transform: scale(1) rotateZ(5deg) translateY(-100px) translateX(50px);
        opacity: 1;
    }

    50% {
        transform: scale(1) rotateZ(0deg) translateY(0px) translateX(25px);
        opacity: 1;
    }

    75% {
        transform: scale(0.5) rotateZ(-5deg) translateY(50px) translateX(0px);
        opacity: 1;
    }

    100% {
        transform: scale(0) rotateZ(-10deg) translateY(100px) translateX(-25px);
        opacity: 0;
    }
}


#alert-box {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    pointer-events: visible;
    cursor: none;
    /* Allow clicks to pass through */
    backdrop-filter: blur(5px);
    background-color: #00000098;
}

#alert-box p {
    background: var(--primary-background);
    color: white;
    font-size: x-large;
    padding: 10px 20px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    min-height: 100px;
    margin: 0;
    max-width: 85vw;
}



#delete-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.61);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
    backdrop-filter: blur(5px);
}

#delete-box {
    background: linear-gradient(48deg, #9b1af7 29%, #fa0f0f 100%);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 80%;
    max-width: 400px;
    height: 200px;
    padding: 20px;
    font-size: larger;
    font-weight: bold;
    text-align: center;
    border-radius: 20px;
}

.delete-options {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.delete-options button {

    padding: 10px 20px;
    font-size: medium;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100px;
    /* color: white; */
}

#confirm-delete {
    background-color: #fa0f0f;
    color: white;
}

#cancel-delete {
    background-color: #ffffff;
    color: #333;
}


#main-loading {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    z-index: 15000;
    background-color: #f7f6f669;
    backdrop-filter: blur(20px);
    transform: scale(1);
}

.spinner {
    width: 70.4px;
    height: 70.4px;
    --clr: #13bdec4f;
    --clr-alpha: rgba(143, 131, 250, 0.151);
    animation: spinner 1.6s infinite ease;
    transform-style: preserve-3d;

}

/* .spinner>div {
    background: linear-gradient(215deg, rgba(155, 60, 232, 0.1) 30%, rgba(51, 132, 239, 0.1), rgba(19, 189, 236, 0.1));
    height: 100%;
    position: absolute;
    width: 100%;
    border: 1.5px solid var(--clr);
} */

.spinner>div {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 12px;

    background: linear-gradient(215deg,
            rgba(155, 60, 232, 0.6) 30%,
            rgba(51, 132, 239, 0.6),
            rgba(19, 189, 236, 0.6));

    padding: 2.5px;


    mask: linear-gradient(#be0a0a 0 0) content-box,
        linear-gradient(#bb0c0c 0 0);

    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.301);
}




.spinner div:nth-of-type(1) {
    transform: translateZ(-35.2px) rotateY(180deg);
}

.spinner div:nth-of-type(2) {
    transform: rotateY(-270deg) translateX(50%);
    transform-origin: top right;
}

.spinner div:nth-of-type(3) {
    transform: rotateY(270deg) translateX(-50%);
    transform-origin: center left;
}

.spinner div:nth-of-type(4) {
    transform: rotateX(90deg) translateY(-50%);
    transform-origin: top center;
}

.spinner div:nth-of-type(5) {
    transform: rotateX(-90deg) translateY(50%);
    transform-origin: bottom center;
}

.spinner div:nth-of-type(6) {
    transform: translateZ(35.2px);
}

@keyframes spinner {
    0% {
        transform: rotate(45deg) rotateX(-25deg) rotateY(25deg);
    }

    50% {
        transform: rotate(45deg) rotateX(-385deg) rotateY(25deg);
    }

    100% {
        transform: rotate(45deg) rotateX(-385deg) rotateY(385deg);
    }
}


#help {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100vh;
    height: fit-content;
    background-color: #121212;
    color: #eee;
    padding: 40px 20px;
    display: none;
    z-index: 20000;
    overflow-y: auto;
    margin-bottom: 50px;

    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* Internet Explorer 10+ */
}

::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera */
}



h1 {
    text-align: center;
    margin-bottom: 20px;
}

/* Question Box */
.faq {
    max-width: 600px;
    margin: auto;
    display: flex;
    flex-direction: column;
}

.question {
    background: #1c1c1c;
    padding: 15px;
    margin: 10px 0;
    border-radius: 10px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: 0.3s;
    font-weight: 600;
}

.question:hover {
    background: #2a2a2a;
}

/* Answer hidden */
.answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    font-size: 14px;
    color: #ccc;
    font-weight: 400;

}

.answer ul li {
    margin: 6px 0;
    list-style: inside square;

}

/* Active (open) */
.question.active .answer {
    max-height: 200px;
    padding-top: 15px;
    background-color: #1c1c1c0c;
    border-top: 1px solid #585757;
    margin-top: 10px;

}

/* Bottom slide effect */
.question::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    transition: 0.3s;
    z-index: -1;
}

.question.active::after {
    height: 100%;
    padding-top: 15px;
}

.question .q {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.question .q img {
    width: 27px;
    transition: 0.2s;
}

.help-back-btn {
    position: fixed;
    top: 20px;
    left: 20px;
    background-color: transparent;
}

.help-back-btn svg {
    fill: white;
    transition: 0.3s;
}

.help-back-btn:hover svg {
    fill: #13bcec;
    transform: scale(1.2);
}

.or-box {
    display: flex;
    align-items: center;
    justify-content: center;
}

.divider-or {
    position: absolute;
    width: 90%;
    max-width: 600px;
    display: flex;
    align-items: center;
    gap: 10px;
    /* margin: 20px 0; */
    /* left: 5%; */

    top: 237.5px;
}

.line {
    flex: 1;
    height: 1px;
    background-color: #333333cc;
}

.or {
    font-weight: 600;
    color: #0c0c0c;
    border-radius: 50%;
    /* padding: 5px 5px; */
    height: 35px;
    width: 35px;
    font-size: small;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.534);
}


.selector {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    transform: scale(0.99);
}

.wrapper {
    font-family: 'Segoe UI', sans-serif;
    background: #f4f6fb00;
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
    /* height: 100vh; */
    /* gap: 30px; */
    width: 90vw;
    max-width: 600px;

}

/* Card Style */
.card {
    background: #faf6ef;
    padding: 10px;
    border-radius: 15px;
    width: 100%;
    height: 120px;
    /* width: 280px; */
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.38);
}

/* Title */
.card h3 {
    margin-bottom: 15px;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Counter Box */
.counter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.counter button {
    width: 25px;
    height: 25px;
    border: none;
    border-radius: 8px;
    font-size: 20px;
    cursor: pointer;
    /* background: #e9ecf7; */
    background: linear-gradient(215deg,rgba(255, 34, 255, 0.7),rgba(112, 198, 255, 0.911));
    transition: 0.2s;
}

.counter button:hover {
    background: linear-gradient(215deg,rgba(255, 34, 255, 0.8),rgba(112, 198, 255, 0.911));
}

.count {
    font-size: 24px;
    font-weight: bold;
    width: 30px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Range text */
.range {
    text-align: center;
    margin-top: 8px;
    font-size: 12px;
    color: gray;
}

.card svg{
    fill: var(--primary-color);
}

.arrow svg {
    fill: black;
}


.dropdown {
    position: relative;
    width: 100%;
    min-width: 200px;
    font-family: sans-serif;
}

.dropdown-selected {
    /* background: linear-gradient(to left bottom, rgba(155, 60, 232, 0.8), rgba(51, 132, 239, 0.808), rgba(19, 189, 236, 0.8)); */
    background: linear-gradient(215deg,rgba(253, 56, 253, 0.7),rgba(62, 178, 255, 0.911));
    /* border: 1px solid #6a5cff; */
    padding: 12px;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    backdrop-filter: blur(10px);
    transition: 0.3s;
}

#selected-text {
    font-size: 14px;
    overflow: hidden;
}


.arrow {
    font-size: 12px;
    opacity: 0.7;
}

.dropdown-options {
    position: absolute;
    top: 110%;
    width: 100%;
    background: rgba(0, 0, 0, 0.63);
    backdrop-filter: blur(10px);
    /* border: 1px solid #6a5cff; */
    border-radius: 10px;
    overflow: hidden;
    display: none;
    animation: fadeIn 0.2s ease;
    z-index: 1000;
}

.option {
    padding: 12px;
    cursor: pointer;
    color: white;
    transition: 0.2s;
}

.option:hover {
    background: #6a5cff;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}