:root {
    --color-text: #fff;
    --color-bg: #000;
    --color-link: #f9d77e;
    --color-link-hover: #fff;
    --color-info: #efc453;
    --glitch-width: 100vw;
    --glitch-height: 100vh;
    --gap-horizontal: 10px;
    --gap-vertical: 5px;
    --time-anim: 4s;
    --time-anim-1: 4.5s;
    --delay-anim: 3.5s;
    --delay-anim-1: 7s;
    --blend-mode-1: none;
    --blend-mode-2: none;
    --blend-mode-3: none;
    --blend-mode-4: none;
    --blend-mode-5: overlay;
    --blend-color-1: transparent;
    --blend-color-2: transparent;
    --blend-color-3: transparent;
    --blend-color-4: transparent;
    --blend-color-5: #af4949;
}
@import url('https://fonts.googleapis.com/css2?family=DM+Mono:wght@300;400;500&display=swap');

@font-face {
    font-family: "PhelixBoomgartner";
    src: url("../fonts/PhelixBoomgartner.otf") format("opentype")
}

@font-face {
    font-family: "DoctorGlitch";
    src: url("../fonts/Doctor\ Glitch.otf") format("opentype")
}

* {
    transition: all 0.3s ease;
    letter-spacing: 0.125em;
}

.collapsing {
    position: relative;
    height: 0;
    overflow: hidden;
    -webkit-transition-property: height, visibility;
    transition-property: height, visibility;
    -webkit-transition-duration: 0.25s;
    transition-duration: 0.25s;
    -webkit-transition-timing-function: ease;
    transition-timing-function: ease;
}

body {
    /* background-image: url(../images/bg.png); */
    background-position: right;
    background-size: cover;
    background-repeat: no-repeat;
    background-position-x: 350px;
    background-color: #00040d;
}

.solved .badge {
    background-color: #17b06b94;
    border: 1px solid #17b06b;
    color: white;
}

.badge {
    border: 1px solid #87c4f2;
}

.solved {
    background-color: #FFFFFF14;
}

.solvers {
    color: #36a2eb;
    font-size: 1rem;
}

.solver_num {
    color: white;
}

.machine .solvers {
    font-size: 1rem !important;
}

.machine_page .solvers {
    font-size: 1.25rem !important;
}

.ip {
    padding-right: 20px;
}

.category_web {
    border-top: 4px solid #ef121b94;
}

.category_reversing {
    border-top: 4px solid #17b06b94;
}

.category_steg {
    border-top: 4px solid #f9751594;
}

.category_pwning {
    border-top: 4px solid #00a09994;
}

.category_machine {
    border-top: 4px solid #0f329894;
}

.category_machine a:hover {
    text-decoration: none;
    color: inherit;
}

.category_misc {
    border-top: 4px solid #ffce5694;
}

.category_crypt {
    border-top: 4px solid #9966FF94;
}

.hackerFont {
    font-family: Hack, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

.color_danger {
    color: #ef121b;
}

.color_white {
    color: white;
}

.bold {
    font-weight: bold;
}

h1,
h2 {
    font-family: 'PhelixBoomgartner' !important;
}

button.typewriter {
    max-width: 0%;
    overflow: hidden;
    /* Ensures the content is not revealed until the animation */
    white-space: nowrap;
    /* Keeps the content on a single line */
    /* margin: 0 auto; */
    /* Gives that scrolling effect as the typing happens */
    letter-spacing: .15em;
    /* Adjust as needed */
    animation: expand 1s steps(140, end), blink-caret .75s step-end infinite;
    animation-delay: 1s;
    animation-fill-mode: forwards;
}

.footer {
    left: 50%;
    margin: 6% auto;
    position: absolute;
    transform: translate(-50%, -50%);
}

.footer_title {
    font-size: 0.9rem;
}

.highlight {
    color: yellow;
}

.typewriter h4 {
    width: 0%;
    overflow: hidden;
    /* Ensures the content is not revealed until the animation */
    white-space: nowrap;
    /* Keeps the content on a single line */
    /* margin: 0 auto; */
    /* Gives that scrolling effect as the typing happens */
    letter-spacing: .15em;
    /* Adjust as needed */
    animation: typing 0.5s steps(140, end), blink-caret .75s step-end infinite;
    animation-delay: 1.5s;
    animation-fill-mode: forwards;
}

.toggle-yes {
    border-radius: 6px 0 0 6px !important;
}

.toggle-no {
    border-radius: 0 6px 6px;
}

input[type="radio"].toggle {
    display: none;
}

input[type="radio"].toggle:checked+label {
    background-color: #714cdf;
    color: #fff;
}


/* The typing effect */

@keyframes expand {
    0% {
        max-width: 0%
    }

    10% {
        max-width: 10%
    }

    15% {
        max-width: 0%
    }

    20% {
        max-width: 12%
    }

    30% {
        max-width: 15%
    }

    40% {
        max-width: 25%
    }

    50% {
        max-width: 30%
    }

    60% {
        max-width: 45%
    }

    70% {
        max-width: 65%
    }

    80% {
        max-width: 85%
    }

    100% {
        max-width: 100%;
    }
}


/* The typing effect */

@keyframes typing {
    0% {
        width: 0%
    }

    10% {
        width: 10%
    }

    15% {
        width: 0%
    }

    20% {
        width: 0%
    }

    30% {
        width: 15%
    }

    40% {
        width: 25%
    }

    45% {
        width: 15%
    }

    50% {
        width: 30%
    }

    60% {
        width: 45%
    }

    70% {
        width: 65%
    }

    80% {
        width: 85%
    }

    100% {
        width: 100%;
    }
}

.content__title {
    animation-name: glitch-anim-text;
    animation-duration: var(--time-anim);
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-delay: calc(var(--delay-anim) + var(--time-anim) * 0.2);
}

.content__title2 {
    animation-name: glitch-anim-text-2;
    animation-duration: var(--time-anim-1);
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-delay: calc(var(--delay-anim) + var(--time-anim) * 0.35);
}


/* glitch effect */

@keyframes glitch-anim-text {
    0% {
        /* transform: translate3d(calc(-1 * var(--gap-horizontal)), 0, 0) scale3d(-1, -1, 1); */
        -webkit-clip-path: polygon(0 20%, 100% 20%, 100% 21%, 0 21%);
        clip-path: polygon(0 20%, 100% 20%, 100% 21%, 0 21%);
    }

    2% {
        -webkit-clip-path: polygon(0 33%, 100% 33%, 100% 33%, 0 33%);
        clip-path: polygon(0 33%, 100% 33%, 100% 33%, 0 33%);
    }

    4% {
        -webkit-clip-path: polygon(0 44%, 100% 44%, 100% 44%, 0 44%);
        clip-path: polygon(0 44%, 100% 44%, 100% 44%, 0 44%);
    }

    5% {
        -webkit-clip-path: polygon(0 50%, 100% 50%, 100% 20%, 0 20%);
        clip-path: polygon(0 50%, 100% 50%, 100% 20%, 0 20%);
    }

    6% {
        -webkit-clip-path: polygon(0 70%, 100% 70%, 100% 70%, 0 70%);
        clip-path: polygon(0 70%, 100% 70%, 100% 70%, 0 70%);
    }

    7% {
        -webkit-clip-path: polygon(0 80%, 100% 80%, 100% 80%, 0 80%);
        clip-path: polygon(0 80%, 100% 80%, 100% 80%, 0 80%);
    }

    8% {
        -webkit-clip-path: polygon(0 50%, 100% 50%, 100% 55%, 0 55%);
        clip-path: polygon(0 50%, 100% 50%, 100% 55%, 0 55%);
    }

    9% {
        -webkit-clip-path: polygon(0 70%, 100% 70%, 100% 80%, 0 80%);
        clip-path: polygon(0 70%, 100% 70%, 100% 80%, 0 80%);
    }

    9.9% {
        /* transform: translate3d(calc(-1 * var(--gap-horizontal)), 0, 0) scale3d(-1, -1, 1); */
    }

    10%,
    100% {
        transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
        -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    }
}

@keyframes glitch-anim-text-2 {
    0% {
        -webkit-clip-path: polygon(0 40%, 100% 20%, 100% 21%, 0 21%);
        clip-path: polygon(0 40%, 100% 20%, 100% 21%, 0 21%);
    }

    2% {
        -webkit-clip-path: polygon(0 33%, 100% 33%, 100% 73%, 0 33%);
        clip-path: polygon(0 33%, 100% 33%, 100% 73%, 0 33%);
    }

    4% {
        -webkit-clip-path: polygon(0 44%, 100% 82%, 100% 44%, 0 0%);
        clip-path: polygon(0 44%, 100% 44%, 100% 82%, 0 0%);
    }

    5% {
        -webkit-clip-path: polygon(0 50%, 100% 50%, 100% 20%, 0 20%);
        clip-path: polygon(0 50%, 100% 50%, 100% 20%, 0 20%);
    }

    6% {
        -webkit-clip-path: polygon(0 70%, 100% 70%, 100% 70%, 0 70%);
        clip-path: polygon(0 70%, 100% 70%, 100% 70%, 0 70%);
    }

    7% {
        -webkit-clip-path: polygon(0 11%, 100% 80%, 100% 80%, 0 80%);
        clip-path: polygon(0 11%, 100% 80%, 100% 80%, 0 80%);
    }

    8% {
        -webkit-clip-path: polygon(0 50%, 100% 50%, 100% 55%, 0 55%);
        clip-path: polygon(0 50%, 100% 50%, 100% 55%, 0 55%);
    }

    9% {
        -webkit-clip-path: polygon(0 70%, 20% 70%, 100% 40%, 0 80%);
        clip-path: polygon(0 70%, 100% 70%, 20% 40%, 0 80%);
    }

    9.9% {}

    10%,
    100% {
        transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
        -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    }
}

.glitch {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.glitch__img {
    position: absolute;
    top: calc(-1 * var(--gap-vertical));
    left: calc(-1 * var(--gap-horizontal));
    width: calc(60% + var(--gap-horizontal) * 2);
    height: calc(60% + var(--gap-vertical) * 2);
    background: url(../images/bg.png);
    transform: translate3d(0, 0, 0);
    background-blend-mode: var(--blend-mode-1);
    background-position: right;
    background-size: cover;
    background-repeat: no-repeat;
    background-position-x: 350px;
}

.glitch__img_login {
    background: url(../images/bg--world.png) !important;
}

.glitch__img_404 {
    background: url(../images/404.gif) !important;
    background-repeat: no-repeat !important;
    background-size: contain !important;
    background-position: center !important;
}

.glitch__img_leaderboard {
    position: fixed !important;
    background: url(../images/bg--world.png) !important;
}

.glitch__img_register {
    position: fixed !important;
}

.glitch__img:nth-child(n+2) {
    opacity: 0;
}

.imgloaded .glitch__img:nth-child(n+2) {
    animation-duration: var(--time-anim);
    animation-delay: var(--delay-anim-1);
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.imgloaded .glitch__img:nth-child(2) {
    background-color: var(--blend-color-2);
    background-blend-mode: var(--blend-mode-2);
    animation-name: glitch-anim-1;
}

.imgloaded .glitch__img:nth-child(3) {
    background-color: var(--blend-color-3);
    background-blend-mode: var(--blend-mode-3);
    animation-name: glitch-anim-2;
}

.imgloaded .glitch__img:nth-child(4) {
    background-color: var(--blend-color-4);
    background-blend-mode: var(--blend-mode-4);
    animation-name: glitch-anim-3;
}

.imgloaded .glitch__img:nth-child(5) {
    background-color: var(--blend-color-5);
    background-blend-mode: var(--blend-mode-5);
    animation-name: glitch-anim-flash;
}

@keyframes glitch-anim-1 {
    0% {
        opacity: 1;
        transform: translate3d(var(--gap-horizontal), 0, 0);
        -webkit-clip-path: polygon(0 2%, 100% 2%, 100% 5%, 0 5%);
        clip-path: polygon(0 2%, 100% 2%, 100% 5%, 0 5%);
    }

    2% {
        -webkit-clip-path: polygon(0 15%, 100% 15%, 100% 15%, 0 15%);
        clip-path: polygon(0 15%, 100% 15%, 100% 15%, 0 15%);
    }

    4% {
        -webkit-clip-path: polygon(0 10%, 100% 10%, 100% 20%, 0 20%);
        clip-path: polygon(0 10%, 100% 10%, 100% 20%, 0 20%);
    }

    6% {
        -webkit-clip-path: polygon(0 1%, 100% 1%, 100% 2%, 0 2%);
        clip-path: polygon(0 1%, 100% 1%, 100% 2%, 0 2%);
    }

    8% {
        -webkit-clip-path: polygon(0 33%, 100% 33%, 100% 33%, 0 33%);
        clip-path: polygon(0 33%, 100% 33%, 100% 33%, 0 33%);
    }

    10% {
        -webkit-clip-path: polygon(0 44%, 100% 44%, 100% 44%, 0 44%);
        clip-path: polygon(0 44%, 100% 44%, 100% 44%, 0 44%);
    }

    12% {
        -webkit-clip-path: polygon(0 50%, 100% 50%, 100% 20%, 0 20%);
        clip-path: polygon(0 50%, 100% 50%, 100% 20%, 0 20%);
    }

    14% {
        -webkit-clip-path: polygon(0 70%, 100% 70%, 100% 70%, 0 70%);
        clip-path: polygon(0 70%, 100% 70%, 100% 70%, 0 70%);
    }

    16% {
        -webkit-clip-path: polygon(0 80%, 100% 80%, 100% 80%, 0 80%);
        clip-path: polygon(0 80%, 100% 80%, 100% 80%, 0 80%);
    }

    18% {
        -webkit-clip-path: polygon(0 50%, 100% 50%, 100% 55%, 0 55%);
        clip-path: polygon(0 50%, 100% 50%, 100% 55%, 0 55%);
    }

    20% {
        -webkit-clip-path: polygon(0 70%, 100% 70%, 100% 80%, 0 80%);
        clip-path: polygon(0 70%, 100% 70%, 100% 80%, 0 80%);
    }

    21.9% {
        opacity: 1;
        transform: translate3d(var(--gap-horizontal), 0, 0);
    }

    22%,
    100% {
        opacity: 0;
        transform: translate3d(0, 0, 0);
        -webkit-clip-path: polygon(0 0, 0 0, 0 0, 0 0);
        clip-path: polygon(0 0, 0 0, 0 0, 0 0);
    }
}

@keyframes glitch-anim-2 {
    0% {
        opacity: 1;
        transform: translate3d(calc(-1 * var(--gap-horizontal)), 0, 0);
        -webkit-clip-path: polygon(0 25%, 100% 25%, 100% 30%, 0 30%);
        clip-path: polygon(0 25%, 100% 25%, 100% 30%, 0 30%);
    }

    3% {
        -webkit-clip-path: polygon(0 3%, 100% 3%, 100% 3%, 0 3%);
        clip-path: polygon(0 3%, 100% 3%, 100% 3%, 0 3%);
    }

    5% {
        -webkit-clip-path: polygon(0 5%, 100% 5%, 100% 20%, 0 20%);
        clip-path: polygon(0 5%, 100% 5%, 100% 20%, 0 20%);
    }

    7% {
        -webkit-clip-path: polygon(0 20%, 100% 20%, 100% 20%, 0 20%);
        clip-path: polygon(0 20%, 100% 20%, 100% 20%, 0 20%);
    }

    9% {
        -webkit-clip-path: polygon(0 40%, 100% 40%, 100% 40%, 0 40%);
        clip-path: polygon(0 40%, 100% 40%, 100% 40%, 0 40%);
    }

    11% {
        -webkit-clip-path: polygon(0 52%, 100% 52%, 100% 59%, 0 59%);
        clip-path: polygon(0 52%, 100% 52%, 100% 59%, 0 59%);
    }

    13% {
        -webkit-clip-path: polygon(0 60%, 100% 60%, 100% 60%, 0 60%);
        clip-path: polygon(0 60%, 100% 60%, 100% 60%, 0 60%);
    }

    15% {
        -webkit-clip-path: polygon(0 75%, 100% 75%, 100% 75%, 0 75%);
        clip-path: polygon(0 75%, 100% 75%, 100% 75%, 0 75%);
    }

    17% {
        -webkit-clip-path: polygon(0 65%, 100% 65%, 100% 40%, 0 40%);
        clip-path: polygon(0 65%, 100% 65%, 100% 40%, 0 40%);
    }

    19% {
        -webkit-clip-path: polygon(0 45%, 100% 45%, 100% 50%, 0 50%);
        clip-path: polygon(0 45%, 100% 45%, 100% 50%, 0 50%);
    }

    20% {
        -webkit-clip-path: polygon(0 14%, 100% 14%, 100% 33%, 0 33%);
        clip-path: polygon(0 14%, 100% 14%, 100% 33%, 0 33%);
    }

    21.9% {
        opacity: 1;
        transform: translate3d(calc(-1 * var(--gap-horizontal)), 0, 0);
    }

    22%,
    100% {
        opacity: 0;
        transform: translate3d(0, 0, 0);
        -webkit-clip-path: polygon(0 0, 0 0, 0 0, 0 0);
        clip-path: polygon(0 0, 0 0, 0 0, 0 0);
    }
}

@keyframes glitch-anim-3 {
    0% {
        opacity: 1;
        transform: translate3d(0, calc(-1 * var(--gap-vertical)), 0) scale3d(-1, -1, 1);
        -webkit-clip-path: polygon(0 1%, 100% 1%, 100% 3%, 0 3%);
        clip-path: polygon(0 1%, 100% 1%, 100% 3%, 0 3%);
    }

    1.5% {
        -webkit-clip-path: polygon(0 10%, 100% 10%, 100% 9%, 0 9%);
        clip-path: polygon(0 10%, 100% 10%, 100% 9%, 0 9%);
    }

    2% {
        -webkit-clip-path: polygon(0 5%, 100% 5%, 100% 6%, 0 6%);
        clip-path: polygon(0 5%, 100% 5%, 100% 6%, 0 6%);
    }

    2.5% {
        -webkit-clip-path: polygon(0 20%, 100% 20%, 100% 20%, 0 20%);
        clip-path: polygon(0 20%, 100% 20%, 100% 20%, 0 20%);
    }

    3% {
        -webkit-clip-path: polygon(0 10%, 100% 10%, 100% 10%, 0 10%);
        clip-path: polygon(0 10%, 100% 10%, 100% 10%, 0 10%);
    }

    5% {
        -webkit-clip-path: polygon(0 30%, 100% 30%, 100% 25%, 0 25%);
        clip-path: polygon(0 30%, 100% 30%, 100% 25%, 0 25%);
    }

    5.5% {
        -webkit-clip-path: polygon(0 15%, 100% 15%, 100% 16%, 0 16%);
        clip-path: polygon(0 15%, 100% 15%, 100% 16%, 0 16%);
    }

    7% {
        -webkit-clip-path: polygon(0 40%, 100% 40%, 100% 39%, 0 39%);
        clip-path: polygon(0 40%, 100% 40%, 100% 39%, 0 39%);
    }

    8% {
        -webkit-clip-path: polygon(0 20%, 100% 20%, 100% 21%, 0 21%);
        clip-path: polygon(0 20%, 100% 20%, 100% 21%, 0 21%);
    }

    9% {
        -webkit-clip-path: polygon(0 60%, 100% 60%, 100% 55%, 0 55%);
        clip-path: polygon(0 60%, 100% 60%, 100% 55%, 0 55%);
    }

    10.5% {
        -webkit-clip-path: polygon(0 30%, 100% 30%, 100% 31%, 0 31%);
        clip-path: polygon(0 30%, 100% 30%, 100% 31%, 0 31%);
    }

    11% {
        -webkit-clip-path: polygon(0 70%, 100% 70%, 100% 69%, 0 69%);
        clip-path: polygon(0 70%, 100% 70%, 100% 69%, 0 69%);
    }

    13% {
        -webkit-clip-path: polygon(0 40%, 100% 40%, 100% 41%, 0 41%);
        clip-path: polygon(0 40%, 100% 40%, 100% 41%, 0 41%);
    }

    14% {
        -webkit-clip-path: polygon(0 80%, 100% 80%, 100% 75%, 0 75%);
        clip-path: polygon(0 80%, 100% 80%, 100% 75%, 0 75%);
    }

    14.5% {
        -webkit-clip-path: polygon(0 50%, 100% 50%, 100% 51%, 0 51%);
        clip-path: polygon(0 50%, 100% 50%, 100% 51%, 0 51%);
    }

    15% {
        -webkit-clip-path: polygon(0 90%, 100% 90%, 100% 90%, 0 90%);
        clip-path: polygon(0 90%, 100% 90%, 100% 90%, 0 90%);
    }

    16% {
        -webkit-clip-path: polygon(0 60%, 100% 60%, 100% 60%, 0 60%);
        clip-path: polygon(0 60%, 100% 60%, 100% 60%, 0 60%);
    }

    18% {
        -webkit-clip-path: polygon(0 100%, 100% 100%, 100% 99%, 0 99%);
        clip-path: polygon(0 100%, 100% 100%, 100% 99%, 0 99%);
    }

    20% {
        -webkit-clip-path: polygon(0 70%, 100% 70%, 100% 71%, 0 71%);
        clip-path: polygon(0 70%, 100% 70%, 100% 71%, 0 71%);
    }

    21.9% {
        opacity: 1;
        transform: translate3d(0, calc(-1 * var(--gap-vertical)), 0) scale3d(-1, -1, 1);
    }

    22%,
    100% {
        opacity: 0;
        transform: translate3d(0, 0, 0);
        -webkit-clip-path: polygon(0 0, 0 0, 0 0, 0 0);
        clip-path: polygon(0 0, 0 0, 0 0, 0 0);
    }
}

#preloader {
    width: 100%;
    height: 100%;
}

#preloader {
    background: black;
    color: #ddd;
    padding: 5px;
    box-sizing: border-box;
}

#preloader::-webkit-scrollbar {
    display: none;
}

span.ok,
span.fail,
span.fail:before,
span.ok:before {
    margin-right: 10px;
}

span.ok {
    color: #1EC622;
}

span.fail {
    color: red;
}

span.ok:before,
span.fail:before {
    content: '[';
}

span.ok:after,
span.fail:after {
    margin-left: 10px;
    content: ']';
}


.navbar-search {
    margin: 10px;
}

.search-box {
    display: flex;
    align-items: center;
    background-color: #9d0000d2;
    border-radius: 5px;
    padding: 5px;
    transition: background-color 0.3s;
}

.search-box:hover {
    background-color: #740202d2;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

input[type="text"] {
    color: #e6e6e6;
    border: none;
    outline: none;
    flex: 1;
    padding: 5px;
    background-color: transparent;
    transition: background-color 0.3s;
}

input[type="text"]:focus {
    background-color: #9d0000d2;
}

button {
    border: none;
    outline: none;
    background-color: transparent;
    padding: 5px;
    cursor: pointer;
    transition: transform 0.3s;
}

button:hover {
    transform: scale(1.1);
}

.fa-search {
    color: #e6e6e6;
    transition: color 0.3s;
}

button:hover .fa-search {
    color: #e6e6e6;
}

.custom-placeholder::placeholder {
    color: #e6e6e6;
    opacity: 1;
}

.custom-placeholder:-ms-input-placeholder {
    color: #333;
}

.custom-placeholder::-ms-input-placeholder {
    color: #333;
}


@import url('https://fonts.googleapis.com/css?family=Montserrat:400,600,700&display=swap');

* {
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}


.card-cont {
    position: relative;
    display: inline-block;
    width: 330px;
    flex-direction: column;
    border-radius: 18px;
    margin-bottom: 30px;
    margin-right: 25px;
    margin-top: 50px;
    animation: card-animation 0.9s ease-in-out;
    background-color: #1c1c2e;
    background-clip: border-box;
    border: 1px solid #12131f;
    justify-content: center;
    align-items: center;

}

.card-contbis {
    position: relative;
    display: inline-block;
    width: 500px;
    flex-direction: column;
    border-radius: 18px;
    margin-bottom: 30px;
    margin-right: 25px;
    margin-top: 50px;
    animation: card-animation 0.9s ease-in-out;
    background-color: #1c1c2e;
    background-clip: border-box;
    border: 1px solid #12131f;
    justify-content: center;
    align-items: center;

}
.badge-container {
    display: flex;
  }

  .badge-heading {
    text-align: center;
  }
  .banner-image {
    object-fit: cover;
    margin-top: 10px;
    max-width: 499px;
    max-height: 300px;
    margin-right: 16px;
  }
  .badge-image {
    border-radius: 50%;
    object-fit: cover;
    margin-left: 10px;
    max-width: 23px;
    max-height: 23px;
  }
  .avatar-image {
    border-radius: 50%;
    object-fit: cover;
    margin-top: 10px;
    margin-left: 10px;
    max-width: 55px;
    max-height: 55px;
    margin-right: 16px;
  }
  .user-container {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
  }
  .user-name {
    text-decoration: none;
    color: white;
    font-weight: bold;
    margin: 0;
  }
@keyframes card-animation {
    0% {
        transform: translateY(0);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}


.wrapping {
    margin: 10px;
}

.wrapping .topnav {
    width: calc(100% - 20px);
    height: 60px;
    display: flex;
    position: fixed;
    top: 10px;
    left: 10px;
}

.wrapping .topnav .hamburger {
    width: 70px;
    height: 100%;
    background: #9d0000d2;
    padding: 15px 17px;
    border-radius: 20px;
    cursor: pointer;
}

.wrapping .topnav .hamburger div {
    width: 35px;
    height: 4px;
    background: #1c202c;
    margin: 5px 0;
    border-radius: 5px;
}

.wrapping .topnav .top_menu {
    width: calc(100% - 70px);
    height: 100%;
    background: #fff;
    border-top-right-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}

.wrapping .topnav .top_menu .logo {
    color: #da0000a5;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 3px;
}

.wrapping .topnav .top_menu ul {
    display: flex;
}

.wrapping .topnav .top_menu ul li a {
    display: block;
    margin: 0 10px;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    border: 1px solid #da0000;
    border-radius: 50%;
    color: #eb0000;
}

.sidebare {
    overflow-y: scroll;
    max-height: 700px;
    /* Ajustez la hauteur maximale selon vos besoins */
    scrollbar-width: thin;
    scrollbar-color: transparent transparent #ff0000;
}

.sidebare::-webkit-scrollbar {
    width: 8px;
}

.sidebare::-webkit-scrollbar-thumb {
    background-color: #ff0000;
}

.sidebare::-webkit-scrollbar-track {
    background-color: transparent;
}

.wrapping .sidebare {
    position: fixed;
    top: 70px;
    left: 10px;
    background: #11111b;
    width: 290px;
    height: calc(100% - 100px);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.wrapping .sidebare ul li a {
    display: block;
    padding: 20px;
    color: #fff;
    position: relative;
    margin-bottom: 1px;
    color: #a20e0e;
    white-space: nowrap;
}

.wrapping .sidebare ul li a:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: #ff9393;
    display: none;
}

.wrapping .sidebare ul li a span.icon {
    margin-right: 10px;
    display: inline-block;
}

.wrapping .sidebare ul li a span.title {
    display: inline-block;
}

.wrapping .sidebare ul li a:hover,
.wrapping .sidebare ul li a.active {
    background: #912020;
    color: #fff;
}

.wrapping .sidebare ul li a:hover:before,
.wrapping .sidebare ul li a.active:before {
    display: block;
}

.collapse_custom.sidebare {
    width: 70px;
}

.collapse_custom.sidebare span.searching {
    display: none;
}

.collapse_custom.sidebare ul li a {
    text-align: center;
}

.collapse_custom.sidebare ul li a span.icon {
    margin: 0;
}

.collapse_custom.sidebare ul li a span.title {
    display: none;
}

.collapse_custom.main_container {
    width: (100% - 70px);
    margin-left: 10px;
    margin-bottom: 10px;
    padding: 15px;
    font-size: 14px;
    line-height: 22px;
    width: (100% - 200px);
    margin-top: 70px;
    margin-left: 160px;
    padding: 15px;
    transition: all 0.3s ease;
}



.output {
    line-height: 1.2;
}

.cursor {
    animation: cursor-blink 0.7s infinite;
}

@keyframes cursor-blink {

    0%,
    100% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }
}

.terminal {
    position: relative;
    background-color: #02000694;
    border: 3px solid #a092b7;
    border-radius: 0.5rem;
    color: #c40202;
    width: 210px;
    height: 95px;
    font-family: 'Anonymous Pro', monospace;
    overflow: auto;
}
.welcome-container {
    position: relative;
    margin-top: 380px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
  }

.terminalbis {
margin-top: 200px;
  position: relative;
  display: flex;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #020006a7;
  border: 3px solid #a092b7;
  border-radius: 0.5rem;
  color: #009e05;
  width: 650px;
  height: 405px;
  font-family: 'Anonymous Pro', monospace;
  justify-content: center;
  align-items: center;
  z-index: 1;
  overflow: auto;
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-thumb {
    background-color: red;
}

::-webkit-scrollbar-track {
    background-color: transparent;
}




.list-card {
    display: flex;
    padding: 3rem;
    overflow-x: scroll;
}

.list-card::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}
.list-card::-webkit-scrollbar-thumb {
    background: #201c29;
    border-radius: 10px;
    box-shadow: inset 2px 2px 2px hsla(0,0%,100%,.25), inset -2px -2px 2px rgba(0,0,0,.25);
}

.list-card::-webkit-scrollbar-track {
    background: linear-gradient(90deg,#201c29,#201c29 1px,#17141d 0,#17141d);
}


.custom-cards {
    height: 350px;
    width: 400px;
    min-width: 250px;
    padding: 1.5rem;
    border-radius: 16px;
    background: #17141dd3;
    box-shadow: -1rem 0 3rem #000;
    display: flex;
    flex-direction: column;
    transition: .2s;
    margin: 0;
    scroll-snap-align: start;
    clear: both;
    position: relative;
}

.custom-cards:focus-within~.custom-cards, .custom-cards:hover~.custom-cards {
    transform: translateX(130px);
}

.custom-cards:hover {
    transform: translateY(-1rem);
}

.custom-cards:not(:first-child) {
    margin-left: -130px;
}


.custom-cards-header {
    margin-bottom: auto;
}

.custom-cards-header p {
    font-size: 14px;
    margin: 0 0 1rem;
    color: #7a7a8c;
}

.custom-cards-header h2 {
    font-size: 20px;
    margin: .25rem 0 auto;
    text-decoration: none;
    color: inherit;
    border: 0;
    display: inline-block;
    cursor: pointer;
}

.custom-cards-header h4:hover {
    background: linear-gradient(90deg,#ff0000,#342ee5);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
}

.custom-cards-author {
    margin: 3rem 0 0;
    display: grid;
    grid-template-columns: 75px 1fr;
    align-items: center;
    position: relative;
}

.author-avatar {
    grid-area: auto;
    align-self: start;
    position: relative;
    box-sizing: border-box;
}

.author-avatar img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    filter: grayscale(100%);
    display: block;
    overflow: hidden;
    margin: 16px 10px;
}

.author-name {
    grid-area: auto;
    box-sizing: border-box;
}

.author-name-prefix {
    font-style: normal;
    font-weight: 700;
    color: #7a7a8c;
}

.custom-card-link {
    text-decoration: none;
    color: #ff0000;
  }

.custom-card-link:hover,
.custom-card-link:focus {
  text-decoration: underline;
  text-decoration-color: #ffffff00; /* Specify your desired underline color */
}

.half-circle {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 48px;
    fill: none;
    stroke: #ff0000;
    stroke-width: 8;
    stroke-linecap: round;
    pointer-events: none;
}

.tags {
    line-height: 2;
    margin-bottom: 0;
}

.tags a {
    font-style: normal;
    font-weight: 700;
    font-size: .5rem;
    color: #7a7a8c;
    text-transform: uppercase;
    font-size: .66rem;
    border: 3px solid #28242f;
    border-radius: 2rem;
    padding: .2rem .85rem .25rem;
    position: relative;
}

.tags a:hover {
    background: linear-gradient(90deg,#ff0000,#342ee5);
    text-shadow: none;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    -webkit-box-decoration-break: clone;
    background-clip: text;
    border-color: white;
}



.emoji-popup {
    position: absolute;
    top: 100%; /* Position relative à l'élément parent */
    left: 0;
    display: none;
    /* Autres styles de la pop-up */
  }

.emoji-popupbis {
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
    background-color: #11111d;
    border-color: #ffff;
    color: rgb(0, 255, 0);
    padding: 10px;
    border-radius: 6px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    z-index: 9999;
  }


  .emoji-popupvalid {
    position: fixed;
    margin-top: 40px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    justify-content: center;
    width: 600px;
    height: 400px;
    display: flex;
    align-items: center;
    border: 3px solid #92b796;
    background-color: #11111d;
    color: rgb(0, 255, 0);
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    z-index: 9999;
  }

  #particles-js {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .styled-input {
    color: #009e05;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #a092b7;
    font-family: 'Anonymous Pro', monospace;
    outline: none;
    width: 100%;
    padding: 5px 0;
  }

  .submit-button {
    background-color: rgb(16, 16, 63);
    color: rgba(17, 135, 21, 0.852);
    font-weight: bold;
  }




  .btn-danger {
    color: #fff;
    background-color: #ef121b;
    border-color: #ef121b
}

.btn-danger:hover {
    color: #fff;
    background-color: #ff163c;
    border-color: #ff0931
}

.btn-danger.focus,
.btn-danger:focus {
    -webkit-box-shadow: 0 0 0 .2rem rgba(255, 89, 116, .5);
    box-shadow: 0 0 0 .2rem rgba(255, 89, 116, .5)
}

.btn-danger.disabled,
.btn-danger:disabled {
    color: #fff;
    background-color: #ef121b;
    border-color: #ef121b
}

.btn-danger:not(:disabled):not(.disabled).active,
.btn-danger:not(:disabled):not(.disabled):active,
.show>.btn-danger.dropdown-toggle {
    color: #fff;
    background-color: #ff0931;
    border-color: #fb0029
}

.btn-danger:not(:disabled):not(.disabled).active:focus,
.btn-danger:not(:disabled):not(.disabled):active:focus,
.show>.btn-danger.dropdown-toggle:focus {
    -webkit-box-shadow: 0 0 0 .2rem rgba(255, 89, 116, .5);
    box-shadow: 0 0 0 .2rem rgba(255, 89, 116, .5)
}





.simple-cont{
    max-width: 800px;
    background: #11111d;
    width: 800px;
    padding: 25px 40px 10px 40px;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
  }
  .simple-cont .text{
    text-align: center;
    font-size: 35px;
    font-weight: 600;
    background: -webkit-linear-gradient(right, #ff0000, #bd0000, #ff0000, #bd0000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .simple-cont form{
    padding: 30px 0 0 0;
  }
  .simple-cont form .custom-formrw{
    display: flex;
    margin: 32px 0;
  }
  form .custom-formrw .input-data{
    width: 100%;
    height: 40px;
    margin: 0 20px;
    position: relative;
  }
  form .custom-formrw .textarea{
    height: 70px;
  }
  .input-data input,
  .textarea textarea{
    display: block;
    width: 100%;
    background:#11111d;
    height: 100%;
    border: none;
    font-size: 17px;
    border-bottom: 2px solid rgba(0,0,0, 0.12);
  }
  .input-data input:focus ~ label, .textarea textarea:focus ~ label,
  .input-data input:valid ~ label, .textarea textarea:valid ~ label{
    transform: translateY(-20px);
    font-size: 14px;
    color: #11111d;
  }
  .textarea textarea{
    resize: none;
    padding-top: 10px;
  }
  .input-data label{
    position: absolute;
    pointer-events: none;
    bottom: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
  }
  .textarea label{
    width: 100%;
    bottom: 40px;
    background: #11111d;
  }
  .input-data .underline{
    position: absolute;
    bottom: 0;
    height: 2px;
    width: 100%;
  }
  .input-data .underline:before{
    position: absolute;
    content: "";
    height: 2px;
    width: 100%;
    background: #ffffff;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
  }
  .input-data input:focus ~ .underline:before,
  .input-data input:valid ~ .underline:before,
  .textarea textarea:focus ~ .underline:before,
  .textarea textarea:valid ~ .underline:before{
    transform: scale(1);
  }
  .custom-submit .input-data{
    overflow: hidden;
    height: 45px!important;
    width: 25%!important;
  }
  .custom-submit .input-data .inner{
    height: 100%;
    width: 300%;
    position: absolute;
    left: -100%;
    background: -webkit-linear-gradient(right, #ff0000, #bd0000, #ff0000, #bd0000);
    transition: all 0.4s;
  }
  .custom-submit .input-data:hover .inner{
    left: 0;
  }
  .custom-submit .input-data input{
    background: none;
    border: none;
    color: #11111d;
    font-size: 17px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    position: relative;
    z-index: 2;
  }
  @media (max-width: 700px) {
    .simple-cont .text{
      font-size: 30px;
    }
    .simple-cont form{
      padding: 10px 0 0 0;
    }
    .simple-cont form .custom-formrw{
      display: block;
    }
    form .custom-formrw .input-data{
      margin: 35px 0!important;
    }
    .custom-submit .input-data{
      width: 40%!important;
    }
  }
