@import url('https://fonts.googleapis.com/css2?family=Lalezar&display=swap');

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(5px);
    background-color: rgba(0, 0, 0, 0.25);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    z-index: 99999;
    font-family: 'Lalezar';
}

.loader {
    --path: rgb(150, 150, 150);
    --dot: #25D366;
    --duration: 3s;
    width: 44px;
    height: 44px;
    position: relative;
}

.loader:before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    position: absolute;
    display: block;
    background: var(--dot);
    top: 37px;
    left: 19px;
    transform: translate(-18px, -18px);
    animation: dotRect var(--duration) cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
}

.loader svg {
    display: block;
    width: 100%;
    height: 100%;
}

.loader svg rect {
    fill: none;
    stroke: var(--path);
    stroke-width: 10px;
    stroke-linejoin: round;
    stroke-linecap: round;
    stroke-dasharray: 192 64 192 64;
    stroke-dashoffset: 0;
    animation: pathRect var(--duration) cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
}

@keyframes pathRect {
    25% {
        stroke-dashoffset: 64;
    }

    50% {
        stroke-dashoffset: 128;
    }

    75% {
        stroke-dashoffset: 192;
    }

    100% {
        stroke-dashoffset: 256;
    }
}

@keyframes dotRect {
    25% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(18px, -18px);
    }

    75% {
        transform: translate(0, -36px);
    }

    100% {
        transform: translate(-18px, -18px);
    }
}

* {
    cursor: none;
}

.circle {
    --circle-size: 40px;
    position: fixed;
    height: var(--circle-size);
    width: var(--circle-size);
    border: 2px solid #25D366;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    top: calc(var(--circle-size)/-2);
    left: calc(var(--circle-size)/-2);
    pointer-events: none;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.circle-dot {
    width: 6px;
    height: 6px;
    background-color: #25D366;
    border-radius: 50%;
    position: absolute;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.5);
    transition: background-color 0.3s, box-shadow 0.3s;
}

body {
    background-color: #0a0a0a;
}

.background {
    background-color: #25D366;
    width: 100%;
    height: 130px;
    margin: auto;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    box-shadow: 0px 0px 6px 0px #25D366;
    z-index: 2;
}

.logo-div {
    height: 125px;
    width: 125px;
    border-radius: 100%;
    margin: auto;
    margin-top: -65px;
    transition: 0.2s;
    animation: logo-div 0.3s linear;
}

@media screen and (max-width: 149px) {
    .logo-div {
        display: none;
    }
}

@keyframes logo-div {
    0% {
        transform: scale(0.75, 0.75);
    }

    100% {
        transform: scale(1, 1);
    }
}

.logo-div:active {
    transform: scale(0.93, 0.93);
}

.logo {
    width: 100%;
    box-shadow: 0px 0px 10px 0px #3E3E3E;
    border-radius: 100%;
    outline: 3px solid rgba(255, 255, 255, 0.75);
    transition: 0.5s;
    color: #f5f5f5;
    text-align: center;
    z-index: 1;
}

.logo:hover {
    box-shadow: 0px 0px 10px 3px #3E3E3E;
    outline-color: white;
    transform: scale(1.02, 1.02);
}

.background2 {
    background-color: #f2f3f515;
    width: 100%;
    margin-top: -96px;
    padding-bottom: 25px;
    border-radius: 10px;
    border-top-right-radius: 0;
    border-top-left-radius: 0;
    box-shadow: 0px 0px 5px 0px #f2f3f515;
    transition: 0.5s;
    z-index: 3;
}

.background2:hover {
    box-shadow: 0px 0px 7px 0px #f2f3f535;
}

.bio {
    width: fit-content;
    margin: auto;
}

h1 {
    color: white;
    font-family: 'Lalezar';
    line-height: 30px;
    font-size: 30px;
    text-align: center;
    margin-top: 45px;
    margin-left: 30px;
    padding-top: 80px;
    font-weight: 1;
    animation: h1 1s linear;
    z-index: 1;
}

@keyframes h1 {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.name-icon {
    width: 20px;
    height: 20px;
    vertical-align: baseline;
    border-radius: 50%;
    filter: drop-shadow(0px 0px 2px #17843f);
    animation: name-icon 1s linear;
    transition: 0.5s;

}

.name-icon:hover {
    transform: rotate(360deg);
    filter: drop-shadow(0px 0px 5px #17843f);
}

h1:hover .name-icon {
    transform: rotate(360deg);
    filter: drop-shadow(0px 0px 5px #17843f);
}

@keyframes name-icon {
    0% {
        opacity: 0;
        transform: rotate(0deg);
    }

    100% {
        opacity: 1;
        transform: rotate(360deg);
    }
}

.add {
    width: fit-content;
    line-height: 30px;
    margin: auto;
    text-align: center;
}

.add a {
    color: white;
}

h2 {
    font-size: 25px;
    font-family: 'Lalezar';
    opacity: 0.7;
    margin: auto;
    margin-top: -18px;
    transition: 0.5s;
    font-weight: 1;
    animation: h2 1s linear;
    z-index: 1;
}

@keyframes h2 {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 0.7;
    }
}

h2:hover {
    opacity: 0.9;
    text-shadow: 0px 0px 10px #3E3E3E;
}

h2:active {
    transform: scale(0.95, 0.95);
}

nav {
    width: fit-content;
    margin: auto;
    z-index: 1;
}

ul {
    margin: auto;
    list-style: none;
    display: flex;
    justify-content: center;
    padding: 10px;
    margin-top: 12px;
}

li {
    padding-right: 7px;
    padding-left: 7px;
    margin-top: -5px;
}

a {
    text-decoration: none;
}

.social-media {
    width: 25px;
    padding: 6px;
    border-radius: 100%;
    color: #f5f5f5;
    animation: social-media 1s linear;
}

@keyframes social-media {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@media screen and (max-width: 270px) {
    ul {
        display: grid;

    }
}

.social-media:hover {
    box-shadow: 0px 0px 5px 1px #444444;
}

.instagram {
    transition: 0.2s;
}

.instagram:hover {
    background: radial-gradient(circle farthest-corner at 35% 90%, #fec564, transparent 50%), radial-gradient(circle farthest-corner at 0 140%, #fec564, transparent 50%), radial-gradient(ellipse farthest-corner at 0 -25%, #5258cf, transparent 50%), radial-gradient(ellipse farthest-corner at 20% -50%, #5258cf, transparent 50%), radial-gradient(ellipse farthest-corner at 100% 0, #893dc2, transparent 50%), radial-gradient(ellipse farthest-corner at 60% -20%, #893dc2, transparent 50%), radial-gradient(ellipse farthest-corner at 100% 100%, #d9317a, transparent), linear-gradient(#6559ca, #bc318f 30%, #e33f5f 50%, #f77638 70%, #fec66d 100%);
    transform: scale(1.1, 1.1);
}

.instagram-button:hover .instagram {
    background: radial-gradient(circle farthest-corner at 35% 90%, #fec564, transparent 50%), radial-gradient(circle farthest-corner at 0 140%, #fec564, transparent 50%), radial-gradient(ellipse farthest-corner at 0 -25%, #5258cf, transparent 50%), radial-gradient(ellipse farthest-corner at 20% -50%, #5258cf, transparent 50%), radial-gradient(ellipse farthest-corner at 100% 0, #893dc2, transparent 50%), radial-gradient(ellipse farthest-corner at 60% -20%, #893dc2, transparent 50%), radial-gradient(ellipse farthest-corner at 100% 100%, #d9317a, transparent), linear-gradient(#6559ca, #bc318f 30%, #e33f5f 50%, #f77638 70%, #fec66d 100%);
    transform: scale(1.1, 1.1);
}

.instagram:active {
    transform: scale(0.98, 0.98);
}

.instagram-button {
    border-radius: 25px;
}

.dropdown {
    z-index: 1;
    display: none;
    margin-top: -6.5px;
    position: absolute;
    border-radius: 15px;
    background-color: #1B1B1B;
    box-shadow: 0px 0px 2px 1px #17843f;
    border: 1px solid #25D366;
    font-family: 'Lalezar';
}

.triangle {
    opacity: 0;
    width: 0;
    border-color: transparent transparent #25D366 transparent;
    border-width: 5px 5px 5px 5px;
    border-style: solid;
    left: 12px;
    bottom: 6px;
    position: relative;
}

.dropdown a {
    display: block;
    max-height: 26px;
    max-width: 120px;
    color: #f5f5f5;
    padding: 12px 16px;
}

.instagram-button:hover .dropdown {
    display: block;
}

.instagram-button:hover .triangle {
    opacity: 1;
}

.dropdown-button1 {
    border-bottom: 0.5px solid #25D366;
    border-top-right-radius: 15px;
    border-top-left-radius: 15px;
    box-shadow: 0px 0px 2px 1px #17843f;
    transition: 0.4s;
}

.dropdown-button2 {
    border-top: 0.5px solid #25D366;
    border-bottom-right-radius: 15px;
    border-bottom-left-radius: 15px;
    box-shadow: 0px 0px 2px 1px #17843f;
    transition: 0.4s;
}

.dropdown-button1:hover {
    background-color: #2b2b2b;
    box-shadow: 0px 0px 2px 1px #25D366;
    transform: scale(1.025, 1.025);
}

.dropdown-button2:hover {
    background-color: #2b2b2b;
    box-shadow: 0px 0px 2px 1px #25D366;
    transform: scale(1.025, 1.025);
}

.dropdown-button1:active {
    transform: scale(0.995, 0.995);
}

.dropdown-button2:active {
    transform: scale(0.995, 0.995);
}

.dropdown-icons {
    float: left;
    width: 40px;
    margin-top: -7px;
    margin-left: -11px;
    border-radius: 15px;
    color: #f5f5f5;
    background-color: #3E3E3E;
    font-family: 'Lalezar';
    transform: scale(1.025, 1.025);
}

.dropdown-txt {
    margin-top: -3px;
    margin-left: 40px;
    font-size: 85%;
    transform: scale(1.025, 1.025);
}

.dropdown-txt2 {
    margin-top: -17px;
    margin-left: 40px;
    color: #f5f5f5c5;
    font-size: 67%;
    transform: scale(1.025, 1.025);
}

.telegram {
    transition: 0.2s;
}

.telegram:hover {
    background-color: #0088CC;
    transform: scale(1.1, 1.1);
}

.telegram:active {
    transform: scale(0.98, 0.98);
}

.whatsapp {
    transition: 0.2s;
}

.whatsapp:hover {
    background-color: #25D366;
    transform: scale(1.1, 1.1);
}

.whatsapp:active {
    transform: scale(0.98, 0.98);
}

.discord {
    transition: 0.2s;
}

.discord:hover {
    background-color: #7289d9;
    transform: scale(1.1, 1.1);
}

.discord:active {
    transform: scale(0.98, 0.98);
}

.x {
    transition: 0.2s;
}

.x:hover {
    background-color: black;
    transform: scale(1.1, 1.1);
}

.x:active {
    transform: scale(0.98, 0.98);
}

@media screen and (max-width: 270px) {
    .instagram-button:hover .dropdown {
        left: 50%;
        transform: translate(-50%);
    }

    .dropdown-txt {
        opacity: 0;
    }

    .dropdown-txt2 {
        margin-top: -48px;
        color: white;
        text-align: center;
        font-size: 85%;
    }

    .telegram {
        margin-top: -11px;
    }
}

.buttons {
    width: 90%;
    margin: auto;
    z-index: 2;
}

.button {
    height: 60px;
    width: 100%;
    margin-top: 10px;
    border-radius: 15px;
    background-color: #1B1B1B;
    box-shadow: 0px 0px 2px 1px #17843f;
    transition: 0.4s;
    border: 1px solid #25D366;
    animation: button 0.6s linear;
}

.btn {
    margin-top: 5px;
}

.button2 {
    animation: button2 0.8s linear;
}

.button3 {
    animation: button3 1s linear;
}

@media screen and (min-width: 750px) {
    @keyframes button {
        0% {
            width: 25%;
            opacity: 0;
        }

        100% {
            width: 90%;
            opacity: 1;
        }
    }

    @keyframes button2 {
        0% {
            width: 25%;
            opacity: 0;
        }

        100% {
            width: 90%;
            opacity: 1;
        }
    }

    @keyframes button3 {
        0% {
            width: 25%;
            opacity: 0;
        }

        100% {
            width: 90%;
            opacity: 1;
        }
    }
}

@media screen and (max-width: 750px) {

    @keyframes button {
        0% {
            opacity: 0;
            transform: scale(0, 0);
        }

        100% {
            opacity: 1;
            transform: scale(1, 1);
        }
    }

    @keyframes button2 {
        0% {
            opacity: 0;
            transform: scale(0, 0);
        }

        100% {
            opacity: 1;
            transform: scale(1, 1);
        }
    }

    @keyframes button3 {
        0% {
            opacity: 0;
            transform: scale(0, 0);
        }

        100% {
            opacity: 1;
            transform: scale(1, 1);
        }
    }

}

.button:hover {
    box-shadow: 0px 0px 2.5px 2px #17843f;
    transform: scale(1.007, 1.007);
}

.button:active {
    transform: scale(0.995, 0.995);
}

.button-icon {
    float: left;
    width: 50px;
    margin-top: 5px;
    margin-left: 5px;
    border-radius: 15px;
    color: #f5f5f5;
    background-color: #3E3E3E;
    font-family: 'Lalezar';
}

@media screen and (max-width: 81px) {
    .button-icon {
        display: none;
    }
}

.button-txt {
    float: left;
    margin-top: 10px;
    margin-left: 15px;
    font-size: 100%;
    color: #f5f5f5;
    font-family: 'Lalezar';
    transform: scale(1.007, 1.007);
}

.button-txt2 {
    float: left;
    margin-top: 13px;
    margin-left: -43px;
    font-size: 82%;
    color: #f5f5f5c5;
    font-family: 'Lalezar';
    transform: scale(1.007, 1.007);
}

.button-txt3 {
    float: left;
    margin-top: 13px;
    margin-left: -37px;
    font-size: 82%;
    color: #f5f5f5c5;
    font-family: 'Lalezar';
    transform: scale(1.007, 1.007);
}

@media screen and (max-width: 319px) {
    .button-txt2 {
        display: none;
    }

    .button-txt3 {
        display: none;
    }

    .button-txt {
        margin-top: 18.5px;
    }
}

.button-txt4 {
    float: left;
    margin-top: 18px;
    margin-left: 15px;
    font-size: 100%;
    color: #f5f5f5;
    font-family: 'Lalezar';
}

@media screen and (max-width: 215px) {
    .button-txt {
        display: none;
    }

    .button-txt4 {
        display: none;
    }
}

.button-Chevron {
    float: right;
    width: 45px;
    margin-top: -10px;
    font-size: 32px;
    color: #f5f5f5;
    font-family: 'Lalezar';
}

.button-Chevrons {
    float: right;
    width: 45px;
    margin-top: 7px;
    font-size: 32px;
    color: #f5f5f5;
    font-family: 'Lalezar';
}

@media screen and (max-width: 127px) {
    .button-Chevron {
        display: none;
    }

    .button-Chevrons {
        display: none;
    }
}

.footer {
    /* width: fit-content; */
    margin: auto;
    opacity: 0.8;
    transition: 0.5s;
    animation: footer 1s linear;
    z-index: 1;
}

@keyframes footer {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.footer:hover {
    opacity: 1;
    text-shadow: 0px 0px 10px #3E3E3E;
}

.footer1 {
    text-align: center;
    font-size: 20px;
    color: #a4a4a4;
    font-family: 'Lalezar';
    font-weight: 1;
    line-height: 15px;
}

.footer2 {
    text-align: center;
    margin-top: -17px;
    font-size: 13px;
    color: #eeeeee;
    font-weight: 1;
    font-family: 'Lalezar';
    line-height: 15px;
}

.terminal-div {
    position: absolute;
    height: 25px;
    width: 25px;
    border-radius: 7px;
    background-color: #1B1B1B;
    box-shadow: 0px 0px 5px 0px #f2f3f515;
    transition: 0.4s;
    animation: terminal 0.6s linear;
}

.terminal-div:hover {
    transform: scale(1.1);
    box-shadow: 0px 0px 7px #f2f3f555;
}

.terminal-div:active {
    transform: scale(0.95);
}

.terminal {
    width: 100%;
    height: 100%;
    display: block;
    cursor: pointer;
}

@keyframes terminal {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.custom-terminal {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 90%;
    max-width: 450px;
    height: 330px;
    background: rgba(27, 27, 27, 0.95);
    border: 2px solid #25D366;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.8);
    display: flex;
    flex-direction: column;
    font-family: monospace;
    color: #fff;
    transform: scale(0.8);
    opacity: 0;
    transition: transform 0.25s ease, opacity 0.25s ease, width 0.25s ease, height 0.25s ease;
    z-index: 10000;
    overflow: hidden;
}

.custom-terminal.show {
    transform: scale(1);
    opacity: 1;
}

.terminal-top-bar {
    height: 28px;
    background: #111;
    display: flex;
    align-items: center;
    padding: 0 10px;
    border-bottom: 1px solid #25D366;
    border-radius: 6px 6px 0 0;
    cursor: move;
    position: relative;
}

.terminal-buttons {
    display: flex;
    gap: 6px;
    z-index: 2;
}

.terminal-btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

.terminal-btn.close {
    background: #ff5f56;
}

.terminal-btn.minimize {
    background: #ffbd2e;
}

.terminal-btn.maximize {
    background: #27c93f;
}

.terminal-btn:hover {
    cursor: pointer;
}

.terminal-title {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    color: #ccc;
    pointer-events: none;
}

.terminal-output {
    flex: 1;
    padding: 8px 10px;
    overflow-y: auto;
    line-height: 1.4;
    word-break: break-word;
}

.terminal-input-container {
    position: relative;
    width: 100%;
}

.terminal-input {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    color: #fff;
    font-family: monospace;
    font-size: 16px;
    padding: 8px 10px;
    border-top: 1px solid #25D366;
    caret-color: #25D366;
    cursor: text;
}

.terminal-input-suggest {
    position: absolute;
    top: 8px;
    left: 10px;
    font-family: monospace;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.3);
    pointer-events: none;
    white-space: pre;
}

@media (max-width: 480px) {
    .custom-terminal {
        width: 95%;
        height: 300px;
        bottom: 20px;
        left: 2.5%;
    }
}