:root {
    --white: #f6f6f6;
    --greenOp: hsla(154, 93%, 48%, 0.525);
    --yellowOp: hsl(51, 100%, 65%, 0.525);
    --yellow: hsl(51, 100%, 65%);
    --red: hsl(0, 100%, 65%);
    --redOp: hsla(0, 93%, 62%, 0.438);
    --green: #08ec89;
    --fGreen: invert(40%) sepia(30%) saturate(9000%) hue-rotate(123deg) brightness(150%) contrast(90%);
    --fRed: invert(30%) sepia(44) saturate(100) hue-rotate(24deg) brightness(200%) contrast(100%);
    --fGrey: invert(80%) sepia(90%) saturate(0%) hue-rotate(123deg) brightness(10%) contrast(90%);
    --grey2: #2c2c2c;
    --grey: #161616;
    --black: #000000;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: system-ui;
    color: var(--white);
    background-color: var(--black);
    overflow: hidden;
    cursor: none;
}

.cursor {
    display: flex;
    align-items: center;
    justify-content: center;
}

.ess {
    width: 15px;
    height: 15px;
    rotate: 45deg;
    background-color: var(--green);
    position: fixed;
    top: 0;
    left: 0;
    border-radius: 5px;
    transform: translate(-50%, -50%);
    pointer-events: none;
    animation: rotate 1s linear infinite;
    box-shadow: 0 0 30px var(--black);
    z-index: 10000;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.glow {
    width: 25px;
    height: 25px;
    background-color: transparent;
    border-radius: 50%;
    border: 2px solid var(--greenOp);
    box-shadow: 0 0 60px var(--black);
    position: fixed;
    pointer-events: none;
    animation: glow 1.5s infinite ease-in-out;
    transform-origin: center;
    z-index: 10000;
}

@keyframes glow {
    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(3);
        opacity: 0;
    }
}

.green {
    color: var(--green);
}

.none {
    display: none;
}

.close {
    display: none;
}

.moreAbout {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    background-color: var(--grey);
    border: 1px solid var(--greenOp);
    border-radius: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.562);
    z-index: 1;
}

.fadeUp {
    opacity: 0;
    transform: translateY(90px);
    transition: opacity 1s ease, transform 1s ease;
}

.fadeUp.visible {
    opacity: 1;
    transform: translateY(0);
}

.content .golowz {
    padding: 10rem;
    top: -50%;
    opacity: 0.4;
    position: fixed;
    /* box-shadow: 600px 0 1000px var(--greenOp); */
    background-color: transparent;
}

.content .pcNavBar {
    display: flex;
    position: fixed;
    width: 100%;
    padding: 3rem;
    z-index: 1000;
    backdrop-filter: blur(30px);
    background-color: #1d1d1d83;
    align-items: center;
}

.content .logoTY {
    padding: 2rem;
    position: fixed;
    z-index: 1000;
    width: 27%;
    left: 0;
}

.content .logoTYT {
    padding: 2rem;
    position: fixed;
    display: none;
    z-index: 1000;
    width: 27%;
    left: 0;
}

.content .flyBar {
    display: flex;
    gap: 10px;
    top: 35%;
    /* padding: 20rem 2rem 0 0; */
    right: 2%;
    position: fixed;
    z-index: 999;
    align-items: center;
    flex-direction: column;
}

.content .flyBar .icon {
    transition: .5s ease;
    width: 1.9rem;
    height: max-content;
}

.content .flyBar .icon:hover {
    box-shadow: 0 0 80px var(--greenOp);
    filter: var(--fGreen);
}

.content .next {
    display: flex;
    justify-content: center;
    top: 90%;
    height: 2rem;
    right: 50%;
    position: fixed;
    transition: filter 0.5s ease 0s;
    z-index: 999;
}

.content .next:hover {
    filter: var(--fGreen);
}

.up {
    rotate: 180deg;
}

.right {
    rotate: -90deg;
}

.content .neff {
    opacity: 0;
    background-color: #1f1f1fad;
    z-index: 1;
    padding: 1.7rem;
    border-radius: 30px;
    top: 86%;
    right: 1%;
    transition: .5s ease;
    position: fixed;
    backdrop-filter: blur(10px);
    transform: translateY(0);
    max-width: 350px;
}

.content .neff a {
    color: var(--green);
}

.content .neff .lol {
    display: flex;
    align-items: center;
    margin: -1.1rem 0 0 0;
    justify-content: space-between;
}

.content .neff a img {
    cursor: pointer;
    transition: .5s ease;
    width: 3rem;
    padding: 1rem;
}

.content .neff a img:hover {
    filter: var(--fRed);
}

.content .menus {
    height: 100vh;
    width: 100%;
    background-color: #000000ad;
    position: fixed;
    backdrop-filter: blur(10px);
    z-index: 1;
    display: none;
}

.content .menus .items {
    display: flex;
    position: fixed;
    top: 30%;
    left: 35%;
    flex-direction: column;
}

.content .menus .items a {
    text-decoration: none;
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    transition: 0.7s ease;
}

.content .menus .items a:hover {
    color: var(--green);
}

.content .all .screen {
    height: 100vh;
}

.content .all .screen .dot {
    color: var(--green);
    text-shadow: 0 0 90px var(--green);
}

.content .all .screen a {
    color: var(--green);
}

.content .all .screen .dott {
    color: var(--green);
    text-shadow: 0 0 30px var(--green);
}

.content .all .screen .text {
    padding-top: 11rem;
    display: flex;
    font-weight: bolder;
    font-size: 18rem;
    justify-content: center;
}

.content .all .screen .bigT {
    font-size: 60pt;
    padding: 8rem 0 4rem 4rem;
}

.content .all .screen .bigT p {
    font-size: 20pt;
    font-weight: 100;
}

.content .all .screen .paragraph {
    font-size: 1.5rem;
    font-weight: lighter;
    padding: 0 4rem;
}

.content .all .screen .bold {
    font-weight: 600;
}

.content .all .screen .items {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin: 0rem 6rem 0 6rem;
}

.content .all .screen .items .item {
    border-radius: 20px;
    min-width: 200px;
    max-width: 200px;
    padding: 1rem;
    background-color: var(--grey);
    transition: background-color .5s ease;
}

.content .all .screen .items .item:hover {
    background-color: #2c2b2b;
}

.content .all .screen .items .item .head {
    display: flex;
    align-items: center;
}

.content .all .screen .items .item .head img {
    width: 2.7rem;
    margin: 0 .5rem 0 0;
}

.content .all .screen .reviews {
    display: flex;
    flex-wrap: wrap;
    padding: 0 4rem;
    gap: 1rem;
}

.content .all .screen .reviews .review {
    padding: 1.7rem;
    border-radius: 30px;
    max-width: 310px;
    height: fit-content;
    background-color: var(--grey);
    transition: background-color .5s ease;
}

.content .all .screen .reviews .review:hover {
    background-color: #2c2b2b;
}

.content .all .screen .reviews .review .head {
    padding: 0 0 1rem 0;
}

.content .all .screen .works {
    display: flex;
    gap: 1rem;
    overflow: hidden;
    position: relative;
    padding: 0 5rem;
}

.content .all .screen .works .work {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    border: 2px solid var(--green);
    border-radius: 30px;
    background-color: transparent;
    position: relative;
    max-width: 400px;
    max-height: 315px;
}


/* 
.content .all .screen .works .controles {
    position: absolute;
    top: 50%;
    width: 90px;
    transform: translateY(-50%);
    z-index: 1000;
} .content .all .screen .works .coArrowR {
    top: 50%;
    position: absolute;
    rotate: -90deg;
    right: 5rem;
    width: 50px;
}

.content .all .screen .works .coArrowR::after {
    content: " ";
    z-index: 1;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 12rem;
    background-image: linear-gradient(270deg, var(--neutral-scale-0) 0, hsla(0, 0%, 99%, .5) 51.04%, hsla(0, 0%, 99%, 0) 100%);
}

.content .all .screen .works .coArrowL {
    top: 50%;
    z-index: 1000;
    position: absolute;
    rotate: 90deg;
    left: 5rem;
    width: 50px;
} */

.content .all .screen .works .work img {
    max-width: inherit;
    border-radius: 30px;
    z-index: -1;
    max-width: 400px;
    max-height: 315px;
}

.content .all .screen .works .gradient {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0), #000);
    opacity: 1;
    border-radius: 30px;
}

.content .all .screen .works .title {
    opacity: 0;
    transition: .5s ease;
    color: var(--white);
    position: absolute;
    padding: 2rem;
    font-size: 1rem;
}

.content .all .screen .works .work:hover .title,
.content .all .screen .works.work:hover .gradient {
    opacity: 1;
}

.content .showMedia {
    opacity: 0;
    background-color: #1f1f1fad;
    z-index: 9999;
    padding: 2rem;
    border-radius: 30px;
    top: 10%;
    left: 35%;
    transition: .5s ease;
    position: fixed;
    display: none;
    backdrop-filter: blur(10px);
    transform: translateY(0);
}

.content .showMedia a {
    color: var(--green);
}

.content .showMedia a img {
    width: 3rem;
    right: -5%;
    top: -20%;
    border-radius: 50%;
    background-color: var(--redOp);
    padding: .5rem;
    backdrop-filter: blur(10px);
    position: absolute;
}

.content .all .screen .form {
    display: flex;
    flex-direction: column;
    background-color: var(--grey);
    padding: 2rem;
    border-radius: 30px;
    max-width: 500px;
    height: 296px;
    margin: 0 auto;
    transition: .5s ease;
    justify-content: space-between;
}

.panding {
    display: flex;
    justify-content: center;
    padding: .2rem .5rem;
    margin: -.5rem 0 1rem 0;
    border-radius: 10px;
    border: 1px solid var(--yellow);
    background-color: var(--yellowOp);
}

.succss {
    display: flex;
    justify-content: center;
    padding: .2rem .5rem;
    margin: -.5rem 0 1rem 0;
    border-radius: 10px;
    border: 1px solid var(--green);
    background-color: var(--greenOp);
}

.failed {
    display: flex;
    justify-content: center;
    padding: .2rem .5rem;
    margin: -.5rem 0 1rem 0;
    border-radius: 10px;
    border: 1px solid var(--red);
    background-color: var(--redOp);
}

.content .all .screen .form .some {
    display: flex;
    justify-content: space-between;
}

.content .all .screen .form .some .gp {
    display: flex;
    flex-direction: column;
    width: 48%;
}

.content .all .screen .form input[type="text"],
.content .all .screen .form input[type="email"],
.content .all .screen .form textarea {
    color: var(--white);
    margin: 0 0 .5rem 0;
    background-color: var(--grey2);
    padding: 0.5rem;
    border: none;
    border-radius: 10px;
    transition: .5s ease;
}

.content .all .screen .form .formLinks {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.content .all .screen .form input[type="submit"] {
    padding: 0.5rem 1rem;
    background-color: var(--green);
    border: none;
    border-radius: 10px;
    color: var(--grey);
    font-weight: 700;
    font-size: .9rem;
    cursor: pointer;
    transition: .5s ease;
}

.content .all .screen .form:hover {
    background-color: #1b1b1b;
}

.content .all .screen .form input[type="text"]:hover,
.content .all .screen .form input[type="email"]:hover,
.content .all .screen .form textarea:hover {
    background-color: #131313;
}

.content .all .screen .form input[type="text"]:focus,
.content .all .screen .form input[type="email"]:focus,
.content .all .screen .form textarea:focus {
    border: 1px solid var(--green);
}

.content .all .screen .form input[type="submit"]:hover {
    box-shadow: 0 0 5rem var(--greenOp);
}

.content .all .screen .friends {
    display: flex;
    gap: 0.5rem;
    padding: 0rem 10rem 0 4rem;
    flex-wrap: wrap;
    justify-content: center;
}

.content .all .screen .friends .friend {
    border-radius: 20px;
    position: relative;
    min-width: 300px;
    padding: .7rem;
    display: flex;
    align-items: center;
    background-color: var(--grey);
    transition: .5s ease;
}

.content .all .screen .friends .contents h1 {
    font-size: 1.5rem;
}

.content .all .screen .friends .friend .contents h3 {
    font-size: .9rem;
    font-weight: 100;
}

.content .all .screen .friends .friend img {
    width: 5.5rem;
    border-radius: 50%;
    margin: 0 1rem 0 0;
}

.content .all .screen .friends .friend:hover .visit,
.content .all .screen .friends .friend:hover .blur {
    opacity: 1;
}

.blur {
    opacity: 0;
    background-color: transparent;
    backdrop-filter: blur(4px);
    position: absolute;
    border-radius: 20px;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transition: 1s ease;
}

.content .all .screen .friends .visit {
    opacity: 0;
    padding: 0.5rem 1rem;
    position: absolute;
    margin: 1rem 0 0 0;
    background-color: var(--green);
    border: none;
    border-radius: 10px;
    color: var(--grey);
    font-weight: 700;
    font-size: .9rem;
    text-decoration: none;
    z-index: 1;
    transition: 1s ease;
    box-shadow: 0 0 1rem var(--greenOp);
}

.content .all .screen .friends .friend:hover {
    background-color: #2c2c2c;
}

.content .all .screen .get {
    padding-top: 18rem;
    display: flex;
    font-weight: bolder;
    font-size: 5rem;
    justify-content: center;
}

.content .all .screen .idkCenter {
    display: flex;
    justify-content: center;
}

.content .all .screen .idkCenter .idk {
    font-weight: 450;
}

@media (max-width: 767px) {
    body {
        overflow: auto;
        cursor: unset;
    }
    .cursor {
        display: none;
    }
    .content .navM {
        display: flex;
        width: 100%;
        height: 100px;
        position: fixed;
        padding: 0.5rem;
        z-index: 1000;
        backdrop-filter: blur(5px);
        background-color: rgba(0, 0, 0, 0.502);
    }
    .content .pcNavBar {
        display: none;
    }
    .content .logoTYT {
        display: block;
        padding: 1rem;
        min-width: 50%;
    }
    .content .flyBar {
        top: 35%;
        display: block;
    }
    .content .flyBar .icon {
        display: none;
    }
    .content .flyBar .menu {
        display: block;
    }
    .content .next {
        display: flex;
        justify-content: center;
        top: 87%;
        right: 10%;
        position: fixed;
        transition: filter .5s ease;
        z-index: 999;
    }
    .content .next img {
        width: 3rem;
    }
    .content .all .screen {
        height: max-content;
        padding: 0 0 3rem 0;
    }
    .content .all .screen .bigT {
        font-size: 36pt;
        padding: 1rem 0 1rem 2rem;
    }
    .content .all .screen .text {
        padding: 10rem 0;
        font-size: 7rem;
    }
    .content .all .screen .items {
        justify-content: center;
        margin: 0 1rem;
    }
    .content .all .screen .items .item {
        padding: 1rem;
        border-radius: 15px;
    }
    .content .all .screen .items .item .head {
        margin: 0 0 .5rem 0;
    }
    .content .all .screen .items .item .head img {
        width: 2rem;
    }
    .content .all .screen .works,
    .content .all .screen .reviews,
    .content .all .screen .friends {
        display: flex;
        padding: 0 1rem;
        flex-wrap: wrap;
        gap: 2rem;
        justify-content: space-around;
    }
    .content .all .screen .works .work .btn {
        display: block;
    }
    .content .all .screen .friends .friend .visit {
        padding: 0;
        box-shadow: none;
        color: var(--green);
        background-color: transparent;
    }
    .content .all .screen .form {
        margin: 0 1rem;
    }
    .content .all .screen .works .work,
    .content .all .screen .reviews .review,
    .content .all .screen .friends .friend {
        padding: 1rem;
    }
    .content .all .screen .paragraph {
        font-size: 1rem;
        padding: 0 2rem;
    }
    .content .menus {
        height: 100vh;
        width: 100%;
        position: fixed;
        background-color: var(--grey);
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 1rem;
    }
    .content .menus .items {
        top: 35%;
        left: 25%;
    }
    .content .menus .items a {
        font-size: 1.7rem;
        text-decoration: none;
        transition: 0.5s ease;
    }
    .content .menus .items a:hover {
        background-color: var(--green);
        color: var(--grey);
    }
    .content .all .screen .getAll {
        margin: 5rem;
    }
    .content .all .screen .get {
        font-size: 2.5rem;
        padding: 0;
        justify-content: center;
    }
}


/*all rights revesed to esslam dayaa - 2023*/