* {
    margin: 0;
    --buttonsize--: 40px;
    scroll-behavior: smooth;
    --loading-secounds--: 3s;
    --golden--: linear-gradient(90deg, gold, rgb(161, 120, 14), gold, rgb(248, 209, 110), gold);
    image-rendering: optimizeSpeed;
    font-family: sans-serif;
}

body {
    background-color: black;
}


a {
    text-decoration: none;
}

::-webkit-scrollbar {
    background-color: black;
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-button {
    height: 5px;
}

::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: rgb(29, 28, 28);
}



/* Navigation */

.nav {
    height: 60px;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.734);
    background-repeat: repeat;
    position: fixed;
    z-index: 1000;
    align-content: center;
    backdrop-filter: blur(20px);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.244);

}

.nav .logo img {
    width: 50px;
    top: 4px;
    position: absolute;
    user-select: none;
    -webkit-user-drag: none;
}

.nav .nav-button {
    float: right;
    position: relative;
    display: none;
    padding: 5px;
    transition: .5s;
}

.nav .nav-button img {
    width: var(--buttonsize--);
    user-select: none;
    -webkit-user-drag: none;
    cursor: pointer;
}


.links {
    position: absolute;
    right: 10px;
    top: 22px;
}

.links a {
    color: white;
    float: right;
    position: relative;
    padding: 0px 10px;
    font-size: 16px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.15s cubic-bezier(0.165, 0.84, 0.44, 1);
    background-size: 100%;
    width: max-content;
}
.links a::after {
    content: "";
    background-image: linear-gradient(90deg, orange, rgb(140, 0, 255));
    width: 0%;
    height: 2px;
    position: absolute;
    bottom: -10px;
    left: 0px;
    border-radius: 1000px;
    transition: 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.links a:hover::after {
 width: 100%;
}
.links a:hover {
    color: transparent;
    background-image: linear-gradient(90deg, orange, rgb(140, 0, 255));
    -webkit-background-clip: text;
    transition: .5s;
    text-shadow: 0px 0px 20px rgb(255, 115, 0);
}

@media screen and (max-width: 864px) {
    .nav .nav-button {
        display: block;
    }

    .nav .nav-button2 {
        display: none;
    }

    .links {
        transform: translateX(-1000px);
        display: grid;
        background-color: rgba(0, 0, 0, 0.637);
        height: 100vh;
        width: 100%;
        position: absolute;
        left: 0;
        top: 60px;
        backdrop-filter: blur(5px);
        align-content: center;
        border-right: rgba(255, 255, 255, 0.247);
        transition: 1s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    .links a {
        padding: 20px 0px;
        width: 100%;
        text-align: center;
        font-size: 20px;
        font-weight: 700;
        align-content: space-evenly
    }

    .links a:hover {
        background-color: rgba(0, 0, 0, 0.377);
    }
}

#nav-button:checked~.links {
    transform: translateX(0px);
}

#nav-button:checked~.nav-button {
    transform: rotatez(90deg);
}

#nav-button {
    display: none;
}

/* Banner */
.banner {
    background-image: url(0026.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: black;
    background-attachment: fixed;
    height: 100vh;
    width: 100%;

}
.banner-title {
    background-size: 20%;
    font-size: 55px;
    color: transparent;
    font-weight: 800;
    width: 100%;
    height: 100%;
    align-content: center;
    text-align: center;
    font-family: "Potta One", sans-serif;
    text-transform: uppercase;
    z-index: 2;
    position: relative;
    -moz-background-clip: text;
    background-clip: text;
    -webkit-background-clip: text;
    animation: golden-shine 3s cubic-bezier(0.165, 0.84, 0.44, 1) infinite, title-popup 2s cubic-bezier(0.19, 1, 0.22, 1); 
    background-position: right;
    background-image: var(--golden--);
    transform: translateY(0px);
    overflow: hidden;
    text-shadow: 0px 0px 40px gold;
}


.banner .banner-title p {
    font-size: 16px;
}

@keyframes title-popup {
    0% {
        transform: translateY(-1000px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes golden-shine {
    1% {
        text-shadow: 0px 0px 40px gold;
        background-position: right;
        filter: brightness(1);
    }

    5% {
        text-shadow: 0px 0px 40px rgb(255, 245, 188);
        filter: brightness(1.4);
        background-position: left;
    }

    80% {
        text-shadow: 0px 0px 40px gold;
        background-position: right;
        filter: brightness(1);
    }
}



.banner-gradient {
    display: grid;
    justify-items: center;
    align-items: center;
    height: 100%;
    width: 100%;
    background-image: linear-gradient(0deg, black, transparent);
    z-index: 0;
    bottom: 0;
    backdrop-filter: blur(3px);
}

@media screen and (max-width: 864px) {
    .banner-gradient {}

}

.banner .buttons-banner {
    position: relative;
    z-index: 2;
    justify-content: center;
    align-content: first baseline;
    display: grid;
    grid-auto-flow: column;
    width: 100%;
    height: 100%;
    margin: 10px 0px;
}
.banner .buttons-banner a:hover {
    color: black;
}

.banner .buttons-banner a, .banner .buttons-banner a::before, .banner .buttons-banner a::after {
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.445);
    backdrop-filter: blur(1px);
    font-size: 20px;
    padding: 10px 25px;
    border-radius: 10px;
    text-decoration: none;
    text-align: center;
    margin: 0px 20px;
    transition: .5s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}
.banner .buttons-banner a::before {
    content: '';
    width: 100%;
    height: 100%;
    background-color: white;
    position: absolute;
    top: -10px;
    transform: skew(-35deg);
    border-radius: 0;
    left: -190%; 
    z-index: -1;
}
.banner .buttons-banner a:hover::before {
    left: -40%; 
}


.banner .buttons-banner a::after {
    content: '';
    width: 100%;
    height: 100%;
    background-image: linear-gradient(90deg, transparent, white);
    position: absolute;
    top: -10px;
    opacity: .2;
    transform: skew(-35deg);
    border-radius: 0;
    left: -190%; 
    z-index: -1;
    border: none;
    animation: shine-items2 2s cubic-bezier(0.45, 0.04, 0, 0.98) infinite;
}
@keyframes shine-items2 {
    from {
        left: -190%; 
    }
    to {
        left: 150%; 
    }
}

@media screen and (max-width: 640px) {
    .banner .banner-title {
        font-size: 40px;
    }
    .banner .banner-title {
        background-size: 50%;
    }
}
@media screen and (max-width: 864px) {
     .banner .buttons-banner {
        display: flex;
        flex-wrap: wrap;
        width: 300px;
        gap: 50px;
    }
     .banner .buttons-banner a {
        margin: 10px 0px;
    }
}
/* Containers */
.container {
    background-color: black;
    padding: 120px 20px;
    ;
}

.title-container {
    font-weight: 700;
    font-size: 25px;
    color: white;
    text-align: center;
}
/* quotes */
#scroll-x {
    overflow-x: scroll;
    height: 200px;
    white-space: nowrap;
    display: grid;
    grid-auto-flow: column;
    padding: 10px 100px;
}
#scroll-x::after {
    content: '';
    width: 20%;
    height: inherit;
    padding: 0px;
    position: absolute;
    right: 0;
    background-image: linear-gradient(90deg, transparent, rgb(0, 0, 0));
}
#scroll-x::before {
    content: '';
    width: 10%;
    z-index: 2;
    height: inherit;
    padding: 0px;
    position: absolute;
    left: 0;
    background-image: linear-gradient(-90deg, transparent, rgb(0, 0, 0));
}

#scroll-x::-webkit-scrollbar {
    height: 6px;
    background-color: rgba(59, 52, 37, 0.589);
}
#scroll-x::-webkit-scrollbar-thumb {
    background-color: rgba(255, 208, 0, .2);
}
#scroll-x::-webkit-scrollbar-thumb:hover {
    background-color: rgba(255, 208, 0, .7);
}
#scroll-x::-webkit-scrollbar-thumb:active {
    background-color: rgb(255, 0, 0);
}
.quote-title {
    color: white;
    position: relative;
    padding: 0px 15px;
    background-color: black;
}
 .quote-date {
    left: 10px;
    color: white;
    position: sticky;
    background-color: black;
    height: min-content;
    padding: 10px;
    z-index: 40;
}
.quote {
    padding: 10px;
    display: grid;
    grid-auto-flow: column;
    justify-content: center;
    align-content: center;
    transform: translatex(0px);
}

@media screen and (max-width: 490px) {
    .quote {
        justify-content:left;
    }
}
.quote h1 {
    color: white;
    line-height: 30px;
    padding: 0px 0px 0px 20px;
    align-content: center;
    text-transform: capitalize;
    width: max-content;
}

.quote p  {
    padding: 0px 20px;
    color: rgb(255, 255, 255);
    font-size: 18px;
    text-align: left;
    line-height: 25px;
    opacity: .7;
    align-content: center;
    font-family: 'Times New Roman', Times, serif;
    overflow-y: auto;
    width:max-content;
    height: 130px;
}

.quote p a{
color: yellow;
}
.quote p a:hover{
color: orange;
}

.quote p::-webkit-scrollbar-thumb {
    background-color: yellow;
    opacity: .2;
}
.quote p::-webkit-scrollbar-thumb:hover {
    background-color: rgb(255, 187, 0);
    opacity: 1;
}
.quote p::-webkit-scrollbar {
    width: 5px;
    background-color: rgba(255, 255, 0, 0.151);
    border-radius: 100px;
}
@media screen and (max-width: 700px) {
  .quote h1 {
    font-size: 25px;
    padding: 0;
}
 .quote p {
    font-size: 18px;
}
#scroll-x {
    padding: 10px 0px;
}
.quote {
    padding: 10px 5px;
}
 .quote-date {
    left: 10px;
    color: white;
    position: sticky;
    background-color: black;
    height: min-content;
    padding: 10px;
    z-index: 40;
}
}

.quote-buttons {
    padding: 10px;
}
.arrow-left {
    transform: rotateZ(-90deg);
    width: 30px;
    float: left;
    padding: 10px;
    background-color: rgb(180, 153, 2);
    border-radius: 1000px;
    opacity: .5;
    -webkit-user-drag: none;
}
.arrow-left:hover {
    filter: brightness(1.2);
    opacity: 1;
    background-color: rgb(192, 166, 21);
}
.arrow-left:active {
    background-color: rgb(255, 72, 0);
}
.arrow-right {
    transform: rotateZ(90deg);
    width: 30px;
    float: right;
    padding: 10px;
    background-color: rgb(180, 153, 2);
    border-radius: 1000px;
    opacity: .5;
    -webkit-user-drag: none;
}
.arrow-right:hover {
    filter: brightness(1.2);
    opacity: 1;
    background-color: rgb(192, 166, 21);
}
.arrow-left:right {
    background-color: rgb(255, 72, 0);
}
/*container boxes */

.container-box-overflow {
    justify-content: center;
    align-content: center;
    display: flex;
    flex-wrap: wrap;
    padding: 10px 0px;
}

.contaier-box {
    --container-box-height--: 250px;
    max-height: var(--container-box-height--);
    height: var(--container-box-height--);
    padding: 20px 20px;
    width: var(--container-box-height--);
    border-radius: 10px;
    border: 2px white solid;
    margin: 20px 10px;
}

.circle {
    padding: 50px;
    background-color: rgb(98, 0, 255);
    width: 50px;
    margin: 0px 0px;
    position: absolute;
    filter: blur(50px);
    opacity: .5;
    z-index: 0;
}

.contaier-box h1 {
    color: white;
    font-size: 20px;
    text-transform: capitalize;
    padding: 10px 10px;
    line-height: 40px;
    position: relative;
    z-index: 2;
}

.contaier-box p {
    color: white;
    overflow-y: scroll;
    max-height: 200px;
    position: relative;
    z-index: 2;
    padding: 0px 2px;
}

.contaier-box p::-webkit-scrollbar {
    background-color: transparent;
    width: 7px;
}

.contaier-box a {
    color: gold;
    text-decoration: underline;
}
.contaier-box a:hover {
    color: gold;
    text-shadow: 0px 0px 10px gold;
}
/* Container Additional */
.container-additional {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    background-size: 70%;
    height: 500px;
    background-repeat: no-repeat;
    border-radius: 10px;
}

.gradient {
    background-image: linear-gradient(90deg, black, black, transparent);
    width: 100%;
    height: 100%;
    justify-content: center;
    align-content: center;
}


.container-additional h1 {
    font-family: "Potta One", sans-serif;
    font-weight: 800;
    font-size: 40px;
    text-transform: uppercase;
    line-height: 90px;
    color: transparent;
    -moz-background-clip: text;
    background-clip: text;
    -webkit-background-clip: text;
    animation: golden-shine 3s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
    background-position: right;
    text-shadow: 0px 0px 40px gold;
    background-image: var(--golden--);
    background-size: 20%;
}

.container-additional .text {
    width: 40%;
}

.container-additional p {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.568);
    font-size: 17px;
}

.container-additional a {
    margin: 20px 10px;
    font-size: 20px;
    padding: 10px 20px;
    font-weight: 600;
    color: white;
    background-color: black;
    border: 2px white solid;
    transition: .25s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    transform: scale(1);
}

.container-additional a:hover {
    margin: 20px 10px;
    font-size: 20px;
    padding: 10px 20px;
    font-weight: 600;
    color: black;
    background-color: white;
    border: 2px transparent solid;
    transform: scale(1.5);
}

@media screen and (max-width: 605px) {
    .container-additional h1 {
        font-size: 30px;
    }

    .container-additional .text {
        width: 60%;
    }

    .container-additional {
        background-size: cover;
    }

    .container-additional a {
        font-size: 15px;
        margin: 0px;
    }

    .container-additional p {
        font-size: 15px;
    }
}

@media screen and (max-width: 930px) {
    .container-additional {
        background-size: cover;
    }
}

/* Credits */


.credits {
    background-color: black;
    padding: 20px 20px;
    height: 90px;
}

.logo-credit {
    filter: brightness(.5) grayscale(1);
    width: 100px;
    user-select: none;
    -webkit-user-drag: none;
}

.links-credit {
    float: right;
    height: 90px;
    justify-items: center;
    justify-self: center;
    justify-content: center;
    align-self: center;
    align-items: center;
    align-content: center;
}

.links-credit a {
    color: white;
    text-decoration: none;
    font-weight: 400;
    display: grid;
    padding: 2px 10px;
    opacity: .5;
    width: max-content;
}

.links-credit a::after {
    content: "";
    height: 1px;
    background-color: gray;
    width: 0%;
    transition: .25s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.links-credit a:hover::after {
    width: 100%;
}
/* container - ID */
#contains-stuff {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
}

#contains-stuff-grid {
    display: grid;
    justify-content: center;
    align-content: center;
    grid-auto-flow: row;
}

/* Options - filter */

.filter {
    color: white;
    background: black;
    padding: 10px;
    justify-content: baseline;
    align-content: center;
    justify-content: right;
    display: grid;
    grid-auto-flow: column;
    position: relative;
    right: 0;
 
}

.border {
 background-color: white;
 width: 2px;
 height: 100%;
 margin: 0px 10px;
 border-radius: 10px;
}
#selected {
    color: yellow;
    align-content: center;
}
.filter a {
    color: white;
    text-transform: capitalize;
    align-content: center;
    font-size: 16px;
    padding: 0px 5px;
}
.filter a:hover {
    text-decoration: underline;
}



.sections {
    color: white;
    background-color: black;
    justify-content: baseline;
    align-content: center;
    justify-content: center;
    display: grid;
    width: 100%;
    grid-auto-flow: column;
    position: absolute;
    transform: translateY(60px);
}
.sections a {
    color: white;
    text-transform: capitalize;
    align-content: center;
    font-size: 16px;
    padding: 0px 5px;
}
.sections a:hover {
    text-decoration: underline;}

/* asset - tab */

.asset-container, .asset-container::before{
    background-image: url(thumbnails/non-asset/no-thumbnail.png);
    --asset-folder-width: 300px;
    --asset-folder-height: 200px;
    max-width: var(--asset-folder-width);
    width: var(--asset-folder-width);
    height: var(--asset-folder-height);
    max-height: var(--asset-folder-height);
    border: 2px rgba(255, 255, 255, 0.2) solid;
    border-radius: 10px;
    margin: 15px;
    background-position: center;
    background-size: 120%;
    transition: .25s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    transform: scale(1);
    overflow: hidden;
    
}


.asset-container:hover {
    background-size: 140%;
    transform: scale(1.1);
    z-index: 2;
    box-shadow: 0px 0px 30px black;
}

.asset-container-button {
    width: 30px;
    float: right;
    border-radius: 1000px;
    margin: 5px;
    padding: 5px;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 10000px;
    transition: .5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.asset-container:hover .asset-container-button {
    background-color: rgba(0, 0, 0, 0.5);
}


.asset-container-details {
    width: 100%;
    height: 100%;
    background-image: linear-gradient(transparent, transparent, black);
    border-radius: 10px;
    opacity: .5;
    transition: .5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.asset-container:hover .asset-container-details {
    opacity: 1;
}

.update {
    color: rgba(255, 255, 255, 0);
    font-weight: 600;
    margin: 10px 10px;
    background-image: linear-gradient(90deg, red, rgb(141, 19, 212));
    line-height: 30px;
    padding: 0px 10px;
    width: 10px;
    height: 30px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
    border-radius: 40px;
    position: absolute;
    animation: update 3s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: .25s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-align: center;
    float: left;
}

.asset-container:hover .update {
    height: 30px;
    width: 100px;
    color: white;
    border-radius: 0px 0px 10px 10px;
    margin: 1px 10px;
}

@media screen and (max-width: 864px) {
    .update {
        height: 30px;
        color: white;
        border-radius: 0px 0px 10px 10px;
        margin: 1px 10px;
        width: 100px;
    }
}

.not-ours {
    color: rgba(255, 255, 255, 0);
    font-weight: 600;
    margin: 10px 10px;
    background-image: linear-gradient(90deg, red, rgb(255, 136, 0));
    line-height: 30px;
    padding: 0px 10px;
    width: 10px;
    height: 30px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
    border-radius: 40px;
    position: absolute;
    animation: update 3s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: .25s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-align: center;
    float: left; 
}
@media screen and (max-width: 864px) {
    .not-ours {
        height: 30px;
        color: white;
        border-radius: 0px 0px 10px 10px;
        margin: 1px 10px;
        width: 100px;
    }
}

.asset-container:hover .not-ours {
    height: 30px;
    width: 100px;
    color: white;
    border-radius: 0px 0px 10px 10px;
    margin: 1px 10px;
}

.asset-container-title {
    opacity: 0;
    color: white;
    height: 100%;
    transition: .25s cubic-bezier(0.165, 0.84, 0.44, 1);
    align-content: end;
    display: grid;
    transform: translateY(-10px);
    position: relative;
    text-shadow: 0px 0px 10px black;
}
.asset-container:hover .asset-container-title {
    transform: translateY(0px);
    opacity: 1;
}

.asset-container-title h1 {
    font-size: 16px;
    padding: 0px 10px;
    line-height: 25px;
    font-weight: 800;
    text-transform: capitalize;
    text-decoration: none;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    position: relative;
    -webkit-line-clamp: var(--max-lines--);
    --max-lines--: 1;
}
.asset-container-title h1:hover {
    --max-lines--: 0;
}
@media screen and (max-width: 864px) {
    .asset-container-title h1 {
    --max-lines--: 0;
    }
}
.asset-container-title p {
    font-size: 12px;
    padding: 0px 0px 10px 15px;
    opacity: .7;
    font-weight: 500;
}

@media screen and (max-width: 864px) {
    .asset-container-details {
        opacity: 1;
    }

    .asset-container-title {
        opacity: 1;
        transform: translateY(0px);
    }

    .file-overall h1 {
        font-size: 20px;
    }
}

/* Inside Asset File */


.asset-container-file {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;

}

.file-container {
    background-size: cover;
    background-repeat: no-repeat;
    justify-content: center;
    align-content: center;
    padding: 20px 0px;
    display: flex;
    flex-wrap: wrap;
}

.leave {
    color: white;
    padding: 10px 20px;
    float: right;
    margin: 5px;
    font-size: 30px;
    border-radius: 10000px;
    background-color: rgba(0, 0, 0, 0.5);
    font-weight: 800;
    cursor: pointer;
}

.leave:hover {
    background-color: rgba(0, 0, 0, 0.655);
}

.file-overall {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.281));
    backdrop-filter: blur(5px);
    padding: 10px;
    width: 90%;
    border-radius: 10px;
    box-shadow: 0px 0px 10px black;
}

.file-overall h1 {
    color: white;
    font-weight: 700;
    padding: 15px 20px;
    text-transform: capitalize;
}

.file-overall h2 {
    color: white;
    padding: 0px 30px;
    font-size: 20px;
    line-height: 30px;
    text-transform: capitalize;
}

.file-overall .logs {
    display: grid;
    grid-auto-flow: row;
    overflow-y: auto;
    height: 80px;
    padding: 0px 10px;
    margin: 0px 20px;
    font-weight: 500;
    border-left: 2px white dashed;
}

.file-overall li {
    color: white;
    font-size: 15px;
    text-transform: capitalize;
    align-content: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.file-overall li:hover {
    background-color: rgba(255, 255, 255, 0.158);
}

@media screen and (max-width: 500px) {

    .file-overall h1 {
        font-size: 20px;
    }
}

.file-overall li p {
    color: white;
    opacity: .5;
    font-size: 15px;
    float: right;
    font-weight: 500;
}

.video {
    --video-width--: 65%;
    --video-height--: ;
    max-width: var(--video-width--);
    width: var(--video-width--);
    max-height: var(--video-height--);
    height: var(--video-height--);
    background-color: black;
    border-radius: 10px;
    justify-content: center;
    align-content: center;
    display: flex;
    flex-wrap: wrap;
    margin: 20px 0px;
    box-shadow: 0px 0px 10px black;
}

@media screen and (max-width: 864px) {
    .video {
        --video-width--: 100%;

    }
}

.file-overall p {
    color: white;
    font-weight: 700;
    padding: 0px 30px;
    text-transform: capitalize;
}

.contain-links {
    display: grid;
    width: 95%;
    border-radius: 10px;
    padding: 30px 0px;
}

.contain-links a {
    background-color: black;
    padding: 20px;
    margin: 5px 10px;
    border-radius: 10px;
    justify-content: center;
    align-content: center;
    height: 30px;
    color: white;
    align-content: center;
    position: relative;
    transform: scale(1);
    transition: .25s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.contain-links a:hover {
    background-color: rgb(32, 29, 41);
    transform: scale(1.02);
    box-shadow: 0px 0px 10px black;
}

.contain-links img {
    width: 30px;
    float: right;

}

/* Social */


.social, .social::after {
    border-radius: 10px;
    background-color: rgb(29, 28, 28);
    padding: 20px 20px;
    justify-content: center;
    align-content: center;
    display: grid;
    grid-auto-flow: column;
    cursor: pointer;
    margin: 10px 0px;
    position: relative;
    transition: .25s cubic-bezier(0.165, 0.84, 0.44, 1);
    transform: scale(1);
    overflow: hidden;
    z-index: 2;
}



.social::before {
    content: '';
    width: 100%;
    height: 100%;
    background-image: linear-gradient(90deg, transparent, rgb(255, 255, 255));
    position: absolute;
    left: -150%;
    top: 0;
    z-index: 0;
    transform: skew(-35deg);
    opacity: .3;
}
.social:hover::before {
    animation: shine-items 2s cubic-bezier(0.45, 0.04, 0, 0.98) infinite;
}
@keyframes shine-items {
    0% {
        left: -150%;
    }
    100% {
        left: 150%;
    }
}

.side-text {
    font-size: 3px;
    opacity: .3;

}

.social:hover {
    background-color: rgb(32, 29, 41);
    transform: scale(1.1);
    box-shadow: 0px 0px 90px black;
}

a .social:active {
    background-color: goldenrod;
}

.social .social-date {
    font-size: 10px;
    color: rgb(255, 255, 255);
    opacity: .5;
    position: absolute;
    z-index: 5;
    transform: translatey(30px);
    padding: 0px 10px;
    transition: .25s;
    display: grid;
    justify-self: center;
    bottom: 0;
}
.social:hover .social-date {
    transform: translatey(0px);
}
@media screen and (max-width: 864px) {
    .social .social-date {
    transform: translatey(00px);
}
}
.social img {
    width: 30px;
    padding: 0px 10px;
}

.social p {
    color: white;
    font-size: 16px;
    font-weight: 700;
    padding: 0px 50px;
    line-height: 30px;
    text-align: center;
}

.social .redirect {
    float: right;
}

@media screen and (max-width: 864px) {
    .social p {
        padding: 0px 30px;
    }
}

@media screen and (max-width: 514px) {
    .social p {
        padding: 0px 20px;
    }
}

@media screen and (max-width: 378px) {
    .social p {
        font-size: 12px;
    }
}

/* Comments */
.comment-break {
    width: 50%;
    height: 5px;
    border-radius: 100px;
    background-image: linear-gradient(90deg, gold, rgb(161, 120, 14), gold, rgb(248, 209, 110), gold, transparent);
    float: left;
}

.comment-break2 {
    width: 50%;
    height: 5px;
    float: right;
    background-image: linear-gradient(-90deg, gold, rgb(161, 120, 14), gold, rgb(248, 209, 110), gold, transparent);
    border-radius: 100px;
}

.powered {
    color: gray;
    padding: 20px;
    background-color: rgba(61, 33, 77, 0.219);
    margin: 10px 0px;
    justify-content: center;
    align-content: center;
    display: block;
    line-height: 20px;
}

.powered img {
    width: 30px;
    float: right;
    justify-content: center;
    filter: sepia(5) brightness(.3);
}

.powered p {
    font-size: 10px;
    ;
}


.comments {
    color: white;
    padding: 20px;
    background-color: black;
    text-decoration: none;
    justify-content: center;
    align-content: center;

}

/* Gallary */


.gallary {
    margin: 20px;
    border-radius: 10px;
}

.gallary iframe {
        width: 300px;
    height: 300px;
    object-fit: contain;
    border-radius: inherit;
    border: 2px rgb(78, 78, 78) solid;
    border-radius: 10px 10px 0px 0px;
    background-color: rgb(37, 37, 29);
    background-size: 40px 40px;
    background-image: radial-gradient(circle, rgba(255, 217, 0, 0.39) 2px, rgba(0, 0, 0, 0) 0px);
    position: relative;
    z-index: 3;
    transition: .5s cubic-bezier(0.165, 0.84, 0.44, 1);
    animation: transparent 10s linear infinite;
}
.gallary video {
        width: 300px;
    height: 300px;
    object-fit: contain;
    border-radius: inherit;
    border: 2px rgb(78, 78, 78) solid;
    border-radius: 10px 10px 0px 0px;
    background-color: rgb(37, 37, 29);
    background-size: 40px 40px;
    background-image: radial-gradient(circle, rgba(255, 217, 0, 0.39) 2px, rgba(0, 0, 0, 0) 0px);
    position: relative;
    z-index: 3;
    transition: .5s cubic-bezier(0.165, 0.84, 0.44, 1);
    animation: transparent 10s linear infinite;
}
.gallary .img {
    width: 300px;
    height: 300px;
    image-rendering: optimizeSpeed;
    object-fit: contain;
    border: 2px rgb(78, 78, 78) solid;
    border-radius: 10px 10px 0px 0px;
    background-color: rgb(37, 37, 29);
    background-size: 40px 40px;
    background-image: radial-gradient(circle, rgba(255, 217, 0, 0.39) 2px, rgba(0, 0, 0, 0) 0px);
    position: relative;
    z-index: 3;
    transition: .5s cubic-bezier(0.165, 0.84, 0.44, 1);
    animation: transparent 10s linear infinite;
}

@keyframes transparent {
    0% {
        background-position-y: 0;
    }

    100% {
        background-position-y: 360px;
    }
}

.gallary .img:hover {
    transform: scale(1.2) translateY(-20px);
    box-shadow: 0px 0px 20px rgba(255, 255, 0, 0.37);
}
.gallary iframe:hover {
    transform: scale(1.2) translateY(-20px);
    box-shadow: 0px 0px 20px rgba(255, 255, 0, 0.37);
}
.gallary video:hover {
    transform: scale(1.2) translateY(-20px);
    box-shadow: 0px 0px 20px rgba(255, 255, 0, 0.37);
}

.gallary .details {
    padding: 10px 20px;
    background-color: rgb(133, 115, 17);
    justify-content: center;
}

.gallary .download {
    float: right;
    position: relative;
    right: 0px;
    justify-content: center;
    align-content: center;
    display: grid;
    
}

.gallary .download img {
    width: 40px;
    height: 40px;
    user-select: none;
    -webkit-user-drag: none;
    position: absolute;
    transform: scale(1) translateX(-25px);
    transition: .5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallary .download img:hover {
    transform: scale(1.2) translateX(-20px);
}

.gallary h1  {
    font-size: 16px;
    --max-lines--: 1;
    color: white;
    width: max-content;
    display: -webkit-box;
    overflow: hidden;
    width: 230px;
    -webkit-box-orient: vertical;
    position: relative;
    -webkit-line-clamp: var(--max-lines--);
}
.gallary h1::after {
    content: '';
    position: absolute;
    width: 70%;
    right: 0px;
    bottom: 0;
    height: 100%;
    z-index: 2;
    background-image: linear-gradient(-90deg, rgb(133, 115, 17), transparent);
   transition: .5s;
}

.gallary h1:hover {
    --max-lines--: 0;
    width: 200px;
}
.gallary h1:hover::after {
   opacity: 0;
}

@media screen and (max-width: 868px) {
    .gallary h1  {
    --max-lines--: 0;
       }
       .gallary h1::after {
   opacity: 0;

}
}

.gallary p{
    font-size: 15px;
    color: rgba(255, 255, 255, 0.466);
    position: relative;
}


/* Side Bar */
.side-bar {
    background-color: rgb(0, 0, 0);
    border-radius: 0px 0px 10px 0px;
    position: fixed;
    top: 60px;
    display: grid;
    grid-auto-flow: row;
    animation: side-bar 2s cubic-bezier(0.19, 1, 0.22, 1);
    transition: .5s;
    z-index: 20;
    border-top: gold solid 4px;
}

.side-bar:hover {
    opacity: 1;
}

@keyframes side-bar {
    0% {
        transform: translatex(-170px);
    }

    80% {
        transform: translatex(-170px);
    }

    100% {
        transform: translatex(-0px);
    }
}

.side-bar img {
    width: 30px;
    padding: 10px;
    border-radius: 10px;
    margin: 3px 0px;
}

.side-bar a img:active {
    background-color: goldenrod;
}

.side-bar img:hover {
    background-color: rgba(255, 217, 0, 0.555);
}

/* Only text */ 

.only-text {
    
}
.only-text .section {
margin: 10px 0px;
}
.only-text .section li {
    font-weight: 700;
    font-size: 35px;
    color: rgb(204, 204, 204);

}
.only-text .section p {
    border-left: 4px rgb(204, 204, 204) solid;
    font-size: 20px;
    color: rgb(167, 167, 167);
    padding: 10px 10px;
    font-weight: 550;
    margin: 0px 3px;
    width: 100%;
    line-height: 40px;
    width: 90%;
}
.only-text .section a {
    color: yellow;
}
.only-text .section a:hover {
    color: orange;
}
.keyboard {
    background-color: rgb(53, 65, 70);
    padding:  5px 8px;
    border-bottom: 3px white solid ;
    border-left: 2px gray solid ;
    box-shadow: inset 0px 0px 10px rgba(0, 0, 0, 0.418);
    margin: 0px 5px;
    border-radius: 5px;
    line-height: 20px;
}
.keyboard:hover {
    background-color: rgb(53, 65, 130);
}
.only-text .section .underline {
    border-bottom: 4px gray dotted;
    transition: .25s cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media screen and (max-width: 646px) {
.only-text .section li {
font-size: 25px;
}
.only-text .section p {
    font-size: 15px;
    line-height: 30px;
}
}
/* secret */

.secret-item {
    padding: 10px;
    background-color: rgb(34, 30, 46);
    color: white;
    font-weight: 600;
    font-size: 20px;
    border-radius: 5px;
    margin: 10px;
    display: inline-block;
}

.secret-item:hover {
    background-color: rgb(44, 40, 56);
}

.secret-item .date-added {
    color: rgba(255, 255, 255, 0.438);
    padding: 5px 3px;
    font-size: 10px;
    text-transform: capitalize;
}

.secret-title {
    background-image: linear-gradient(90deg, orange, yellow, rgb(134, 10, 236), blue, rgb(134, 10, 236), yellow, orange);
    background-size: 120%;
    text-shadow: 0px 0px 12px rgb(255, 30, 0);
    color: transparent;
    background-clip: text;
}

.secret-contain {
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.377);
    width: 200px;
    font-size: 14px;
}

/* ash3ar */
.nav-buttons {
    color: white;
    background-color: rgb(36, 44, 63);
    padding: 10px 20px;
    border-radius: 10px;
    display: grid;
    cursor: pointer;
    margin: 10px;
    transform: scale(1);
    transition: .25s;
}
.nav-buttons:hover {
    filter: brightness(1.2);
    transform: scale(1.1);
}
.nav-buttons .title {
  font-weight: 700;
  font-size: 25px;
  text-transform: capitalize;
}
.nav-buttons .date {
    margin: 0px 10px;
}

.only-text .section-ar {
    margin: 10px 0px;
    text-align-last: right;
    }
    .only-text .section-ar li {
        font-weight: 700;
        font-size: 35px;
        color: rgb(204, 204, 204);
list-style: none;

    }
    .only-text .section-ar p {
        font-size: 20px;
        color: rgb(167, 167, 167);
        padding: 10px 10px;
        font-weight: 550;
        margin: 0px 0px;
        width: 100%;
        line-height: 40px;
        width: 90%;
    }
    