/*

Styled and designed by JerosGamer89, part of The GDPS Hub Team
The GDPS Hub Team, 2020-2023
Check the license at gdpshub.com/legal

*/

@font-face {
    font-family: 'Regular';
    src: url('../fonts/sanfrancisco-apple-font.otf');
}

@font-face {
    font-family: 'ArchivoExpanded';
    src: url('../fonts/archivo-expanded-extrabold.ttf');
}

@font-face {
    font-family: 'SpaceGrotesk';
    src: url('../fonts/SpaceGrotesk-VariableFont_wght.ttf');
}

@font-face {
    font-family: 'Alfarn2';
    src: url('../fonts/alfarn2.otf');
}

@font-face {
    font-family: 'FuturisTT';
    src: url('../fonts/futuristt_bold.ttf');
}

* {
    -webkit-font-smoothing: antialiased;
    font-smooth: always;
    box-sizing: border-box;
}

html, body {
    margin: 0px;
    padding: 0px;
    font-family: 'Regular';
    font-display: block;
    font-size: 16px;
    background-color: #292929;
    color: white;
    overflow-x: hidden;

    -webkit-font-smoothing: antialiased;

    transition: 500ms;
    scroll-behavior: smooth;
    scroll-padding-top: 55px;
}

@media only screen and (min-width: 1600px) {
    html, body {font-size: 17px;}
    .classic-button, .second-button {font-size: 16px;}
}

body {
    /* for gdps page */
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    position: absolute;
    top: 0;left: 0;right: 0;bottom: 0;
}

::-webkit-scrollbar {width: 5px;}
::-webkit-scrollbar-track {background: #00000000;padding:3px;}
::-webkit-scrollbar-thumb {background: #777;border-radius:50px;}
::-webkit-scrollbar-thumb:hover {background: #aaa;}

h1, h2, h3, h4, h5, h6 {
    font-family: 'ArchivoExpanded', 'FuturisTT';
}

center {
    text-align: center;
}

.alert {
    position: fixed;
    top: 0; right: 0;
    width: 25vw;
    padding-left: 100px;
    overflow-x: auto;
    background-color: #c40000bb;
    backdrop-filter: blur(3px);
    background-image: url('../assets/warning.png');
    background-repeat: no-repeat;
    background-position: 3% center;
    background-size: 130px;
    border-bottom: red 2px solid;
    border-left: red 2px solid;
    border-bottom-left-radius: 10px;
    z-index: 99;
    animation: alert 10s ease-in-out forwards;

    display: none;
    /* this should be triggered in javascript as display:block; */
}

@keyframes alert {
    0% {transform: translateY(-100px);}
    10% {transform: translateY(0px);}
    90% {transform: translateY(0px);}
    100% {transform: translateY(-100px);}
}

.alert h2 {
    animation: alert-h2 3s 0.3s ease-in-out normal;
    margin-bottom: 0;
}

@keyframes alert-h2 {
    0% {font-size: 1.5em;}
    10% {font-size: 2em;}
    85% {font-size: 2em;}
    100% {font-size: 1.5em;}
}

nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    display: grid;
    grid-template-rows: 55px auto;
    background-color: #00000051;
    backdrop-filter: blur(3px);
    padding: 5px 30px 5px 30px;
    font-size: 12px;
    z-index: 99;
    height: 55px;
    overflow-y: hidden;
    transition: 300ms;
}

nav:hover {
    background: black;
}

nav:has(a:hover), nav:has(.lowerthird:hover) {
    /*height: 150px;
    align-items: baseline;*/
}

nav:has(a:hover) .lowerthird, nav .lowerthird:hover {
    /*opacity: 1;*/
}

nav .menubar {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

nav .menubar div {
    display: inline-flex;
}

nav .lowerthird {
    display: block;
    opacity: 0;
    transition: 300ms;
}

nav .lowerthird h2 {
    margin: 0;
    line-height: 5px;
}

nav.shortened {
    padding: 8px 15px;
    width: max-content;
    border-bottom-right-radius: 15px;
}

nav h3 {
    cursor: default;
    font-family: 'Regular';
}

nav img {
    height: 35px;
    margin-left: 15px;
    margin-right: 15px;
    border-radius: 6px;
    padding: 5px;
    transition: 200ms;
}

nav a {
    font-size: 14px;
    font-weight: bold;
    color: white;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

nav a:hover img {
    background-color: #4e4ea1;
}

footer {
    background-color: black;
    padding: 50px;
    position: relative;
}

footer .proj {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

footer .proj .text h2 {
    margin: 0;
}

footer .links {
    text-align: center;
}

footer ul {
    margin-top: 40px;
    width: 20%;
    display: inline-block;
    list-style-type: none;
    margin-left: 0;
    text-align: left;   
}

footer ul:nth-child(1) {
    text-align: right;
}

footer ul li {
    margin-bottom: 2.5px;
}

footer ul li a {
    text-decoration: none !important;
}

footer ul li a:hover {
    text-decoration: 1px solid underline !important;
}

footer ul strong {
    color: gray;
}

footer .ogid {
    color: #464646;
    font-style: italic;
    font-size: 14px;
    position: absolute;
    bottom: 10px;
    right: 10px;
    cursor: default;
    pointer-events: none;
}

footer .logo {
    height: 60px;
}

footer .lf {
    color: rgb(162, 255, 162);
    opacity: 75%;
}

.classic-button {
    background-image: linear-gradient(to right, #0062f5, #3737c8);
    color: white;
    padding: 10px 25px;
    border-radius: 10px;
    text-decoration: none;
    outline: none;
    border: none;
    transition: 250ms;
    cursor: pointer;
    line-height: 30px;
    align-items: center;
}

.classic-button:hover {
    filter: brightness(150%);
    color: rgb(177, 177, 177);
}

.disabled-btn {
    background-image: none !important;
    background-color: #aaaaaa4d;
    color: #c7c7c7 !important;
    cursor: not-allowed;
}

.disabled-btn:hover {
    filter: none !important;
    color: white !important;
}

.second-button {
    background-image: linear-gradient(to right, hsl(0, 0%, 36%), hsl(0, 0%, 26%));
    color: white;
    padding: 10px 25px;
    border-radius: 10px;
    text-decoration: none;
    outline: none;
    border: none;
    transition: 250ms;
    cursor: pointer;
}

.second-button:hover {
    filter: brightness(150%);
    color: rgb(177, 177, 177);
}

.text-link {
    color: rgb(63, 111, 184);
    text-decoration: 1px dotted underline;
    transition: 100ms;
}

.text-link:hover {
    color:hsl(216, 100%, 55%);
    text-decoration: 1px solid underline;
}

input, textarea {
    background: #444;
    border: 3px solid #444;
    font-family: 'Regular';
    color: #bbb;
    border-radius: 5px;
    padding: 15px;
    outline: none;
    transition: 200ms;
}

textarea {
    width: 600px;
    resize: none;
}

input:focus, textarea:focus {
    background: #555;
    color: white;
    border: 3px solid #4791ff;
}

input::-webkit-file-upload-button {
    background: #555;
    border: 3px solid #555;
    color: #bbb;
    border-radius: 5px;
    padding: 2px 10px;
    outline: none;
    transition: 200ms;
}

input::-webkit-file-upload-button:hover {
    background: #666;
    border: 3px solid #4791ff;
}

input[type="checkbox"] {
    appearance: none;
    background-color: #444;
    margin: 0;
    margin-right: 10px;
    font: inherit;
    color: white;
    width: 40px;
    height: 40px;
    aspect-ratio: 1/1;
    padding: 5px !important;
    border: 3px solid #444;
    border-radius: 5px;
    transform: translateY(-0.075em);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

input[type="checkbox"]:hover {
    border: 3px solid #4791ff;
}
  
input[type="checkbox"]::before {
    content: "";
    width: 1em;
    height: 1em;
    transform: scale(0);
    transition: 120ms transform ease-in-out;
    box-shadow: inset 1em 1em #4791ff;
    transform-origin: bottom left;
    margin: 0;
    clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}
  
input[type="checkbox"]:checked::before {
    transform: scale(1);
}

input[type=number] {
    min-width: 60px;
}

.cmodal {
    display: none; 
    position: fixed;
    z-index: 100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.7);
    animation: cm-anim 0.5s forwards;
}

@keyframes cm-anim {
    from {}
    to {
    background-image: url('../assets/decoir.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    }
}

.c-modal-content {
    background-color: #333;
    border-radius: 10px;
    box-shadow: 2px 2px 20px black;
    margin: 10% auto;
    padding: 30px;
    width: 300px;
    animation: c-mc-anim 0.4s ease-in-out;
}

.c-modal-content a,
.c-modal-content button {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

.c-modal-content button {
  width: 100%;
}

@keyframes c-mc-anim {
    0% {opacity: 0; transform: scale(-0.25, -0.25);}
    20% {opacity: 0;}
    100% {opacity: 1;}
}




/* END OF GLOBAL STYLING  */


.home-hero {
    padding: 40vh 50px 0 150px;
    background-image: url('../assets/bg.jpg');
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;
    transition: 300ms;
    height: 100vh;
    animation: hh-anim 10s infinite;
}

@keyframes hh-anim {
    0% {background-size: 100%;background-position: center;}
    50% {background-size: 110%;background-position: 3%;}
    100% {background-size: 100%;background-position: center;}
}

.home-hero h1 {
    font-size: 50px;
    font-weight: bold;
    line-height: 15px;
    pointer-events: none;
    animation: hht-anim 1s;
}

@keyframes hht-anim {
    0% {opacity: 0; transform: translateX(-100px);}
    100% {opacity: 1; transform: translateX(0px);}
}

.home-hero p {
    font-size: 18px;
    pointer-events: none;
}

.home-hero span {
    opacity: 40%;
    text-transform: uppercase;
    font-size: 14px;
    line-height: 45px;
}

.quickactions {
    opacity: 100%;
    animation: qa-anim 1.2s ease-in-out;
    padding: 0px 20px 30px 20px !important;
    border-radius: 20px;
    transition: 200ms;
    max-width: max-content;
}

.quickactions:hover {
    background: hsla(0, 0%, 0%, 0.2);
    transition: 200ms;
}

@keyframes qa-anim {
    0% {opacity: 0; display: none !important;}
    75% {opacity: 1%; display: block;}
    100% {opacity: 100%;}
}

.home-hero .hero-link {
    background-color: #233143;
    color: white;
    padding: 10px 20px;
    border-radius: 15px;
    margin-right: 10px;
    text-decoration: none;
    transition: 250ms;
}

.home-hero .hero-link:hover {
    background-color: white;
    color: #233143;
}

.news {
    background: white;
    color: black;
    padding: 50px;
    overflow: auto;
    white-space: nowrap;
    z-index: 2;
}

.news h1 {
    transition: 200ms;
    cursor: default;
}

.news h1:hover {
    color:  #6060e6;
    font-size: 40px;
    transition: 200ms;
}

.news-box {
    background-color: #e2e2e2;
    padding: 30px;
    border-radius: 15px;
	margin-right: 10px;
    margin-bottom: 10px;
    padding-bottom: 160px;
    width: 270px;
    height: 290px;
    min-height: 290px;
    max-height: 290px;
    display: inline-table;
    white-space: initial;

    background-position: bottom;
    background-size: contain;
    background-repeat: no-repeat;
}

.news-box span {
    color: #4b4b4b;
    font-size: 12px;
    float: right;
}

.news-box p {
    height: 165px !important;
    overflow-y: auto;
}

.joinus-discord {
    background-color: #404eed;
    background-image: url('../assets/discord-hd.jpg');
    background-position: 120%;
    /*background-position-x: 105%;
    background-position-y: 600%;*/
    background-repeat: no-repeat;
    background-size: 70%;
    padding: 50px;
}

.joinus-discord p {
    max-width: 500px;
}

.joinus-discord span {
    font-size: 13px;
    opacity: 50%;
    margin: 0px 0px 10px 10px;
}

.watchus-yt {
    background-color: #1b61a8;
    background-image: url('../assets/yt-banner.webp');
    background-position: 100%;
    /*background-position-x: 105%;
    background-position-y: 600%;*/
    background-repeat: no-repeat;
    background-size: 40%;
    padding: 50px;
}

.watchus-yt p {
    max-width: 500px;
}

.watchus-yt span {
    font-size: 13px;
    opacity: 50%;
    margin: 0px 0px 10px 10px;
}

.newhere {
    background: #e7e7e7;
    color: black;
    padding: 50px;
}

.newhere h1 {
    transition: 200ms;
    cursor: default;
}

.newhere h1:hover {
    color:  #6060e6;
    font-size: 40px;
    transition: 200ms;
}

.newhere-card {
    background-image: linear-gradient(to bottom, white, #cacaca);
    padding: 15px 30px;
    border-radius: 15px;
    width: 25%;
    min-height: 400px;
    display: inline-table;
    cursor: default;
    margin: 0px 10px 20px 10px;
    position: relative;
    transition: 200ms;
}

.newhere-card:hover {
    box-shadow: #808080 2px 2px 20px;
}

.newhere-card p img {
    height: 80px;
    margin-top: 15px;
    border-radius: 10px;
}

.newhere-card a {
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 10px;
}

.newhere-card h2 .new {
    text-transform: uppercase;
    background-color: #4949ff;
    color: white;
    font-size: 12px;
    border-radius: 50px;
    padding: 5px 10px;
}

/*  PAGES STYLE  */

#pageHeader {
    width: 100vw;
}
  
#pageHeader:hover > .ph-container::after {
    opacity: 1;
}
  
.ph-container {
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-direction: column;
    position: relative;
    width: 100vw;
    height: 150px;  
}
  
.ph-container:hover::before {
    opacity: 1;
}
  
.ph-container::before, .ph-container::after {
    border-radius: inherit;
    content: "";
    height: 100%;
    left: 0px;
    opacity: 0;
    position: absolute;
    top: 0px;
    transition: opacity 500ms;
    width: 100%;
  }
  
.ph-container::before {
    background: radial-gradient(
      800px circle at var(--mouse-x) var(--mouse-y), 
      rgba(255, 255, 255, 0.06),
      transparent 40%
    );
    z-index: 3;
  }
  
.ph-container::after {  
    background: radial-gradient(
      70vw circle at var(--mouse-x) var(--mouse-y), 
      rgba(255, 255, 255, 0.1),
      transparent 40%
    );
    z-index: 1;
  }
  
.ph-container  {
    background-color: #000;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    inset: 1px;
    padding: 10px 0;
    z-index: 2;
}

.ph-container h1 {
    margin: 0;
    font-family: 'ArchivoExpanded', 'FuturisTT';
    font-weight: 900;
    font-size: 50px;
    color: #cfcfcf;
    transition: 0.7s;
    z-index: 3;
    cursor: default;

    padding: 20px 50px 10px 50px;
}

.ph-container:hover h1 {
    color: #4949ff;
}

.ph-container h1:hover {
    color: #a6a6f8;
}

.ph-container h1::selection {
    background-color: transparent;
}

.pagination {
    width: max-content;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(-10px);
}

.pagination .l, .pagination .r  {
    height: 40px;
    margin: 0 5px;
}

.pagination .r {
    transform: rotate(180deg);
}

.pagination input {
    background: #444;
    border: 3px solid #444;
    font-family: 'Regular';
    color: #bbb;
    border-radius: 5px;
    margin-bottom: 10px;
    padding: 8px 15px;
    outline: none;
    transition: 200ms;
    width: 22px;
    resize: none;
    transform: translateY(3px);
    appearance: textfield;
}

.find-chips {
    background-color: #00000051;
    backdrop-filter: blur(3px);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 10px;
    position: sticky;
    top: 55px;
    z-index: 99;
}

.find-chips .tags {
    background: #444;
    border: 3px solid #444;
    font-family: 'Regular';
    color: #bbb;
    border-radius: 7px;
    padding: 6px 15px;
    height: 37px;
    outline: none;
    appearance: none;
    transition: 200ms;
}

.find-chips .tags:hover {
    background-color: #4f4f4f;
    border-color: #4f4f4f;
    cursor: pointer;
}

.find-chips .tags:focus {
    background: #555;
    color: white;
    border: 3px solid #4791ff;
}

.find-chips .search {
    width: 200px;
    height: 12px;
}

.gdps-box {
    background: #ccc;
    color: black !important;
    text-shadow: 0px 0px 2px #cccccc;
    position: relative;
    height: 250px;
    width: 230px;
    padding: 15px;
    margin-right: 10px;
    margin-bottom: 10px;
    overflow: hidden;
    border-radius: 15px;
    display: inline-block;
    transition: 150ms;
    z-index: 2;
}

.gdps-box:hover {
    outline: 3px solid hsl(216, 100%, 55%);
}

.gdps-box.iconic {
    background: #b9ab90;
}

.gdps-box.iconic:hover {
    outline: 3px solid #6b6352;
}

.gdps-box a {
    text-decoration: none;
    color: black;
}

.gdps-box.iconic a {
    filter: sepia(100%);
}

.gdps-box .icon {
    border-radius: 15px;
    margin-bottom: 20px;
    width: 100px;
    aspect-ratio: 1/1 !important;
    pointer-events: none;
}

.gdps-box.iconic .icon, .gdps-box.iconic .banner {
    filter: sepia(100%);
}

.gdps-box .banner {
    position: absolute;
    object-fit: cover;
	filter: blur(6px) brightness(0.7); /* re-do/polish this effect */
    top: 0; left: 0; right: 0;
    aspect-ratio: 16/9;
    width: 100%;
    z-index: -1;
    pointer-events: none;
}

.gdps-box .gdps-name {
    padding: 5px 0;
    font-weight: 900;
    font-size: 22px;
    margin-inline: auto;
    overflow-wrap: break-word;
    line-height: 20px;
    pointer-events: none;
}

.gdps-box .badges {
    text-align: center;
    margin-top: -20px;
}

.gdps-box .badges img {
    height: 25px !important;
}

.gdps-box .author {
    color: #444 !important;
    text-shadow: 0px 0px 2px white;
    overflow-wrap: break-word;
    font-size: 14px;
    font-weight: normal;
}

.gdps-box .metadata {
    margin-top: 10px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    color: white;
    filter: brightness(30%);
    font-family: 'SpaceGrotesk';
    transition: 700ms;
}

.gdps-box .metadata div {
    display: flex;
    justify-content: center;
    align-items: center;
}

.gdps-box .metadata img {
    height: 20px;
    margin-right: 5px;
}

.gdps-box:hover .metadata {
    opacity: 0;
    transition: 200ms;
}

.boxbtn-container {
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
    display: grid;
    grid-template-columns: min-content auto;
    align-items: center;
    gap: 5px;
}

.gdps-box .boxbtn {
    background-image: linear-gradient(to right, #0062f5, #3737c8);
    color: white;
    text-align: center;
    padding: 10px 20px;
    border-radius: 10px;
    text-decoration: none;
    transition: 200ms;
    font-size: 15px;
    opacity: 0;
}

.gdps-box .boxbtn:has(img) {
    padding: 5px 15px;
}

.gdps-box .boxbtn img {
    height: 25px;
    margin: 0;
    transform: translateY(2px);
}

.gdps-box:hover .boxbtn {
    opacity: 1;
}

.gdps-box .boxbtn:hover {
    cursor: pointer;
}

.gotm {
    background-image: linear-gradient(to right, #c5660d, #c29e00);
    height: 200px;
    position: relative;
    display: grid;
    grid-template-columns: 470px auto 250px;
    overflow: hidden;
}

.gotm h2 {
    font-style: italic;
    text-transform: uppercase;
    font-family: 'SpaceGrotesk';
    opacity: 0.6;
    position: absolute;
    top: 0px; left: 150px;
    margin: 0;
    width: 400px;
}

.gotm .pics {
    display: flex;
    align-items: center;
}

.gotm .pics .banner {
    height: 200px;
}

.gotm .pics .icon {
    height: 120px;
    border-radius: 15px;
    transform: translateX(-50px);
}

.gotm .text {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0;
    position: relative;
}

.gotm .text .name {
    font-family: 'ArchivoExpanded';
    font-size: 30px;
    margin-top: 15px;
}

.gotm .text .author {
    font-family: 'SpaceGrotesk';
    text-transform: uppercase;
    opacity: 0.5;
}

.gotm .text .desc {
    margin-right: 20px;
    text-overflow: ellipsis;
    overflow: hidden;
    max-height: 50px;

    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(to bottom, white, white, #ffffff00);
}

.gotm .text a {
    background-image: linear-gradient(to right, #f5c800, #c88937);
    color: white;
    padding: 10px 25px;
    border-radius: 10px;
    text-decoration: none;
    outline: none;
    border: none;
    transition: 250ms;
    cursor: pointer;
}

.gotm .text a:hover {
    filter: brightness(110%);
}

.gotm .info {
    padding: 20px;
}

.gotm .info .badges {
    background-color: #ffffff55;
    padding: 7px 12px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    gap: 10px;
    pointer-events: none;
}

.gotm .info .badges img {
    height: 30px;
}

.gotm .info .metadata {
    background-color: #ffffff55;
    border-radius: 10px;
    padding: 10px;
    margin-top: 10px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    font-family: 'SpaceGrotesk';
}

.gotm .info .metadata div {
    display: flex;
    justify-content: center;
    align-items: center;
}

.gotm .info .metadata img {
    height: 20px;
    margin-right: 5px;
}

.webpage-content-container {
    padding: 80px;
    font-size: 16px;
    overflow-x: hidden;

    /* style if a bg is set */
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right;
}

.download {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-inline: auto;
}

.download .client, .download .switcher {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 550px;
    background-image: linear-gradient(to bottom, rgb(0, 26, 58), #000);
    border-radius: 20px;
    padding: 20px 30px;
    max-width: 500px;
    position: relative;
    transition: 150ms ease-in;
}

.download .switcher {
    background-image: linear-gradient(to bottom, rgb(0, 32, 1), #000);
}

.download .client:hover, .download .switcher:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.747);
}

.client .client-graph, .switcher .switcher-snap {
    width: 100%;
    margin-top: -60px;
    border-radius: 5px;
    transition: 0.75s ease-in-out;
}

.client:hover .client-graph:hover, .switcher:hover .switcher-snap:hover {
    width: 115%;
    box-shadow: 0 0 20px rgb(158, 158, 158);
}

.download .content a.classic-button {
    position: absolute;
    bottom: 20px; left: 20px; right: 20px;
    display: flex;
    justify-content: center;
}

.download .content a img {
    height: 20px;
    transform: translate(3px, 0);
}

.download .switcher .classic-button.mob-btn {
    display: none;
}

.pwa {
    display: grid;
    grid-template-columns: max-content auto max-content;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    margin-inline: auto;
    max-width: 1020px;
    background-color: #17172e;
    border-radius: 10px;
}

.pwa a {
    margin-right: 20px;
}

.job-box {
    background-color: #555;
    padding: 10px 30px;
    margin-bottom: 10px;
    border-radius: 15px;
    line-height: 6px;
    position: relative;
}

.job-box a {
    position: absolute;
    top: 20px;
    bottom: 20px;
    right: 20px;
    display: flex;
    align-items: center;
}

.job-ready {
    color: #0062f5;
    font-weight: bold;
    margin-right: 15px;
}

.newgeneric-jobs {
    width: 800px;
    height: 80vh;
    display: flex;
    justify-content: center;
    margin: auto;
}

.gdps-page-inside-content {
    background-color: #333333c2;
    position: absolute;
    top: 45%;
    left: 100px;
    right: 100px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;

    display: grid;
    grid-template-columns: 400px auto;
    gap: 20px;
}

.mob-gdps-page .mob-bg {
    display: none;
}

body.iconic {
    background-color: #a79d82;
}

body.iconic .gdps-page-inside-content {
    background-color: #4b4535;
}

body.iconic .gdps-page-inside-content .main-info .gdps-page-icon {
    animation: iconiclogo-anim 5s linear infinite;
    filter: sepia(100%);
}

@keyframes iconiclogo-anim {
    0% {box-shadow: 0 0 10px 10px #817860;}
    50% {box-shadow: 0 0 10px 10px #bbb093;}
    100% {box-shadow: 0 0 10px 10px #817860;}
}

.gdps-page-section-1 {
    padding: 10px;
}

.gdps-page-section-1 .main-info {
    position: sticky;
    top: 160px;
    padding: 0 40px;
}

.gdps-page-section-1 .gdps-page-award {
    position: sticky;
    top: 550px;
}

.gdps-page-section-2 {
    display: grid;
    grid-template-columns: auto 520px;
}

@media only screen and (max-width: 1680px) {
    .gdps-page-section-2 {
        grid-template-columns: auto;
    }
}

.gdps-page-icon {
    height: 300px;
    aspect-ratio: 1/1;
    border-radius: 25px;
    margin: -100px 0 0 0;
    pointer-events: none;
}

@media only screen and (max-width: 1400px) {
    .gdps-page-icon {
        height: 280px;
    }
}

.gdps-page-name {
    font-weight: 500;
    font-family: 'SpaceGrotesk';
    font-size: 45px;
    top: 220px;
    left: 40px;
}

.gdps-page-name .name {
    max-width: 100%;
    word-break: break-all;
    margin-top: 0px;
}

.gdps-page-author {
    color: #bbb;
    font-size: 18px;
    font-family: 'Regular';
}

.gdps-page-author img {
    height: 18px;
    pointer-events: none;
}

.gpa-link {
    color: #bbb;
    text-decoration: 2px dotted underline;
    cursor: pointer;
}

.gdps-page-award {
    position: static;
    font-weight: bold;
    background-color: #ffb70026;
    backdrop-filter: blur(10px);
    padding: 5px 15px;
    margin: 15px 0 0 0;
    border-radius: 10px;
}

.gdps-page-award award {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 5px 0;
    gap: 10px;
}

.gdps-page-award img {
    height: 60px;
}

.gdps-page-award award span {
    color: #ffc813;
    font-size: 30px;
    font-family: 'SpaceGrotesk';
    font-weight: 400;
}

.gdps-page-award p {
    margin: 0;
}

.gdps-page-badges {
    margin: 15px 0 0 0;
    display: flex;
    gap: 15px;
    justify-content: left;
}

.gdps-page-badges img {
    height: 40px;
}

.gdps-page-tags{
    display: flex;
    justify-content: space-evenly;
    position: sticky;
    top: 60px;
    width: calc(100% - 30px);
    margin-top: 10px;
    background-color: #222222aa;
    backdrop-filter: blur(5px);
    padding: 7px;
    border-radius: 10px;
}

.gdps-page-tags div {
    background-color: #333;
    backdrop-filter: blur(5px);
    border-radius: 10px;
    display: inline-flex;
    gap: 5px;
    z-index: 3;
}

.gdps-page-tags .btn {
    color: white;
    text-decoration: none;
    flex: 1;
    padding: 5px 15px;
    border-radius: 10px;
    cursor: pointer;

    display: flex;
    justify-content: center;
    align-items: center;
    transition: 250ms;
}

.gdps-page-download-links {
    display: flex;
    justify-content: space-between;
    position: sticky;
    top: 60px;
    width: calc(100% - 30px);
    margin-top: 10px;
    background-color: #222222aa;
    backdrop-filter: blur(5px);
    padding: 7px;
    border-radius: 10px;
}

.gdps-page-download-links div {
    background-color: #333;
    backdrop-filter: blur(5px);
    border-radius: 10px;
    display: inline-flex;
    gap: 5px;
    z-index: 3;
}

.gdps-page-download-links img {
    height: 25px;
}

.gdps-page-download-links .btn {
    color: white;
    text-decoration: none;
    flex: 1;
    padding: 5px 15px;
    border-radius: 10px;
    cursor: pointer;

    display: flex;
    justify-content: center;
    align-items: center;
    transition: 250ms;
}

.gdps-page-download-links .btn.mob {
    display: none;
}

.gdps-page-download-links .btn.pcdl:hover,
.gdps-page-download-links .btn.mob:hover,
.gdps-page-download-links .btn.client:hover {
    background-color: #24b861;
}

.gdps-page-download-links .btn.client:hover {
    background-image: url('../assets/relucient.png');
    background-size: cover;
    background-repeat: no-repeat;
    animation: dwnldclientanim 2s infinite;
}

@keyframes dwnldclientanim {
    0% {background-position-x: -50px;}
    25% {background-position-x: 60px;}
    100% {background-position-x: 60px;}
}

.gdps-page-download-links .btn.discord:hover {background-color: #187cff;}
.gdps-page-download-links .btn.tools:hover {background-color: #777;}

.gdps-page-download-links .btn.like:hover {background-color: #9cc36f;}
.gdps-page-download-links .btn.dislike:hover {background-color: #c94141;}
.gdps-page-download-links .btn.fav:hover {background-color: #f1a820;}
.gdps-page-download-links .btn.share:hover {background-color: #777;}

.gdps-page-quickinfo {
    display: flex;
    align-items: center;
    gap: 10px;
    pointer-events: none;
    margin: 15px 0;
    margin-right: 30px;
}

.gdps-page-quickinfo div {
    text-align: center;
    flex: 1;
}

.gdps-page-quickinfo span {
    text-align: center;
    color: #888;
    font-size: 14px;
}

.gdps-page-quickinfo num {
    font-size: 22px;
    font-family: 'SpaceGrotesk';
}

.gdps-page-quickinfo num label {
    color: #ffc813;
    font-weight: 600;
    font-size: x-large;
}

.gdps-page-desc {
    width: auto;
}

.gdps-page-sectit {
    color: #888;
    font-size: 14px;
    text-transform: uppercase;
}

.gdps-page-rate {
    transform: translate(400px, 30px);
    width: 500px;
    margin-bottom: 50px;
}

.gdps-page-rate a {
    line-height: 50px;
}

.gdps-page-rate a:focus {
    background-image: linear-gradient(to right, #0062f5, #3737c8);
    border: 3px solid #5a9cffb0;
}

.gdps-page-rate form select[name=rating] {
    background-color: #222;
    color: white;
    border: none;
    border-radius: 10px;
    padding: 10px;
    outline: none;
}

.gdps-page-comments {
    background-color: #22222244;
    backdrop-filter: blur(10px);
    padding: 15px 20px;
    margin: 20px 0 10px 10px;
    border-radius: 10px;
    max-height: 85vh;
    width: calc(100% - 30px);
    overflow-y: auto;
    box-sizing: border-box;
    scrollbar-color: #79797a #1e1e22;
}

.gdps-page-comments .post-section {
    background-color: #222222cc;
    backdrop-filter: blur(5px);
    padding: 15px 15px;
    border-radius: 10px;
    position: sticky;
    top: 0;
    z-index: 4;
}

.gdps-page-comments hr {
    background-image: linear-gradient(to right, #55555500, #555, #55555500);
    height: 2px;
    border-width: 0px;
    margin: 15px 0 0 0;
}

.gdps-page-comments .inputbox {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 10px;
    margin-top: 10px;
}

.gdps-page-comments .inputbox img {
    height: 40px;
    border-radius: 5px;
    pointer-events: none;
}

.gdps-page-comments .inputbox input {
    width: 100%;
    transition: 0.5s;
    padding: 10px 15px;
}

.gdps-page-comments .comments .combox {
    position: relative;
    display: grid;
    grid-template-columns: 70px 80%;
    grid-template-rows: 20px 80px;
    grid-template-areas: 'pfp .' 'pfp .';
    background-color: #2a2a2a;
    padding: 20px;
    margin-top: 15px;
    border-radius: 10px;
}

.gdps-page-comments .comments .combox img {
    grid-area: pfp;
    height: 60px;
    border-radius: 10px;
    aspect-ratio: 1/1 !important;
    pointer-events: none;
}

.gdps-page-comments .comments .combox span {
    font-size: 18px;
    color: rgb(172, 198, 237);
    font-weight: 900;
    display: flex;
    justify-content: left;
    align-items: center;
}

.gdps-page-comments .comments .combox span img {
    height: 22px;
    margin-left: 3px;
    pointer-events: none;
}

.gdps-page-comments .comments .combox span date {
    margin-left: 5px;
    font-weight: 400;
    color: #ccc;
    font-size: 14px;
}

.gdps-page-comments .comments .combox p {
    margin: 5px 0 0 0;
    overflow-y: auto;
}

.gdps-page-comments .comments .combox .second-button {
    position: absolute;
    top: 85px; left: 20px;
    padding: 7px 20px;
    transform: scale(0);
    cursor: pointer;
}

.gdps-page-comments .comments .combox:hover .second-button {
    transform: scale(1);
}

.gdps-page-comments .comments .combox .second-button img {
    height: 20px;
}
.gdps-page-comments .comments .combox img[alt$="profile picture"] {
    height: 60px;
    width: 60px;
    border-radius: 50%;
    aspect-ratio: 1/1;
    object-fit: cover;
    grid-area: pfp;
    pointer-events: none;
}


.gdps-page-event {
    width: 301px;
    border-radius: 10px;
    position: sticky;
    top: 450px;
    left: 40px;
    background-image: linear-gradient(225deg, rgba(29, 78, 151, 0.5), rgba(41, 161, 170, 0.5));
    padding: 15px;
}

.gdps-page-event img {
    width: 100%;
    border-radius: 10px;
}

.gdps-page-event i {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    position: absolute;
    top: 16px;
    right: 15px;
}

.gdps-page-trailer iframe {
    aspect-ratio: 16/9;
    width: calc(100% - 20px);
    border-radius: 10px;
    cursor: pointer;
}

.parent-profpage {
    display: flex;
    justify-content: center;
}

.profpage-content-container {
    display: grid;
    grid-template-columns: 225px 700px;
    position: fixed;
    height: 100%;
}

.profpage-content-container .buttons .mob-menu,
.profpage-content-container .buttons .mob-cbox {
    display: none;
}

.profpage-content-container .buttons {
    display: grid;
    grid-template-columns: auto;
    gap: 3px;
    height: max-content;
    padding: 100px 20px;
}

.profpage-content-container .buttons a {
    border: none;
    outline: none;
    padding: 6px 12px;
    background-color: transparent;
    color: #ccc;
    border-radius: 5px;
    cursor: pointer;
    transition: 150ms;
    text-decoration: none;
}

.profpage-content-container .buttons a:hover {
    background-color: #333;
    color: #eee;
}

.profpage-content-container .buttons a.beta:hover {
    background-color: #2f4239;
    color: #6da88d;
}

.profpage-content-container .buttons hr {
    width: 125px;
    border-color: transparent;
    border-radius: 100px;
    background-color: #3f3f3f;
}

.profpage-content-container .buttons h5 {
    text-transform: uppercase;
    color: #777;
    margin: 0;
    padding: 6px 12px;
    text-overflow: ellipsis;
}

.profpage-content-container .buttons img {
    height: 20px;
    margin-bottom: -4px;
    margin-right: 5px;
    border-radius: 5px;
}

.profpage-content-container .settings {
    background-image: linear-gradient(to bottom, #1f1f1f, #1f1f1f00, #1f1f1f00);
    background-attachment: fixed;
    height: 90vh;
    overflow-y: auto;
    padding: 80px 20px 20px 20px;
}

.profpage-content-container .settings::-webkit-scrollbar {width: 3px;}
.profpage-content-container .settings::-webkit-scrollbar-track {background: #00000000;padding:3px;}
.profpage-content-container .settings::-webkit-scrollbar-thumb {background: #44444400;border-radius:50px;}
.profpage-content-container .settings:hover::-webkit-scrollbar-thumb {background: #3f3f3f;border-radius:50px;}
.profpage-content-container .settings::-webkit-scrollbar-thumb:hover {background: #aaa;}

.profpage-content-container .settings h2 {
    margin-top: 0;
}

.profpage-content-container .settings h5 {
    text-transform: uppercase;
    color: #777;
    margin: 0;
}

.profpage-content-container .settings hr {
    background-color: #3f3f3f;
    border-color: transparent;
    border-radius: 100px;
    margin: 30px 0;
}

.prof-card {
    width: 100%;
    height: 150px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    display: grid;
    grid-template-columns: 260px auto;
}

.prof-card .pics {
    display: inline-flex;
    justify-content:flex-start;
    align-items: center;
    padding: 0;
    margin: 0;
}

.prof-card .pics .pfp {
    background-color: rgba(128, 128, 128, 0.495);
    height: 150px;
    width: 150px;
    object-fit: cover;
    object-position: center;
    border-top-left-radius: 10px;
    z-index: 11;
}

.prof-card .pics .banner {
    height: 150px;
    width: 260px;
    object-fit: cover;
    object-position: center;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    margin-left: -150px;
}

.prof-card div {
    padding: 20px;
}

.prof-card .username {
    font-family: 'SpaceGrotesk';
    font-weight: 500;
    font-size: 30px;
}

.prof-card .id {
    color: gray;
    margin-left: 5px;
}

.prof-card .badges {
    padding: 5px 0;
}

.prof-card .badges img {
    height: 25px;
}

.prof-card .bio {
    margin: 0;
    font-size: 14px;
    max-height: 34px;
    overflow-y: scroll;
}

.u-settings input, .u-settings textarea {
    background: #444;
    border: 3px solid #444;
    font-family: 'Regular';
    color: #bbb;
    border-radius: 5px;
    margin-bottom: 10px;
    padding: 8px 15px;
    outline: none;
    width: 100%;
    transition: 200ms;
}

.u-settings textarea {
    width: 200%;
    resize: none;
}

.u-settings textarea#modalGDPSInputDesc {
    min-height: 250px;
    resize: vertical;
    scrollbar-width: thin;
    scrollbar-color: gray transparent;
}

.u-settings input:focus, .u-settings textarea:focus {
    background: #555;
    color: white;
    border: 3px solid #4791ff;
}

.u-settings input::-webkit-file-upload-button {
    background: #555;
    border: 3px solid #555;
    color: #bbb;
    border-radius: 5px;
    padding: 2px 10px;
    outline: none;
    transition: 200ms;
}

.u-settings input::-webkit-file-upload-button:hover {
    background: #666;
    border: 3px solid #4791ff;
}

.u-settings label {
    color: #aaa;
    font-weight: bold;
    font-size: 12px;
    text-transform: uppercase;
}
.u-settings hr {
    background-color: #3f3f3f;
    border-color: transparent;
    border-radius: 100px;
    margin: 30px 0;
}

.u-settings .photos {
    display: grid;
    grid-template-columns: 50% 50%;
    margin-bottom: 30px;
}

.u-settings .photos input:nth-child(1) {
    border-radius: 0;
    border-bottom-left-radius: 10px;
}

.u-settings .photos input:nth-child(2) {
    border-radius: 0;
    border-bottom-right-radius: 10px;
}

.u-settings .shortext {
    display: grid;
    grid-template-columns: 49% 49%;
    gap: 15px;
    width: 100%;
}

.u-settings .medias {
    display: grid;
    grid-template-columns: auto;
}

.u-settings .medias div {
    display: flex;
}

.u-settings .medias input {
    width: 540px;
}
.u-settings .medias img {
    height: 40px;
    transform: translateY(-2px);
    margin-right: 15px;
    filter: brightness(65%);
    pointer-events: none;
}

.u-settings button[class="classic-button"] {
    width: 100%;
    margin-top: 40px;
    font-family: 'Regular';
}

.betalist {
    display: grid;
    grid-template-columns: auto;
    gap: 30px;
}

.betalist div {
    background-color: #111;
    border-radius: 10px;
    display: grid;
    grid-template-columns: 100px auto;
    align-items: center;
    gap: 20px;
    transition: 250ms;
}

.betalist div:hover {
    transform: scale(1.02);
    filter: brightness(120%);
}

.betalist div a {
    color: white;
    text-decoration: none;
}

.betalist div img {
    height: 100px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.betalist div a span.title {
    font-family: 'SpaceGrotesk';
    font-weight: 600;
    font-size: 22px;
}

.beta-advice {
    color: #aaa;
    margin-top: 40px;
}

.verif {
    background-image: linear-gradient(60deg, #1e8341, #42c755);
    display: grid;
    position: relative;
    border-radius: 10px;
    margin-bottom: 60px;
}

.yt {
    background-image: linear-gradient(60deg, #973333, #e25a5a);
}
.pr {
    background-image: linear-gradient(60deg, #4C00FF, #693dcf);
}
.verif .icon {
    position: absolute;
    top: -30px;
    right: -15px;
    height: 120px;
    pointer-events: none;
}

.verif p {
    margin: 0 80px 0 0;
    padding: 30px;
}

.verif details {
    user-select: none;
    padding: 15px 30px;
    cursor: pointer;
    transition: 200ms;
}

.verif details:nth-child(4) {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.verif details:hover {
    background-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 7px rgba(0, 0, 0, 0.2);
}
  
.verif summary {
    display: flex;
    cursor: pointer;
}
  
.verif summary::-webkit-details-marker {
    display: none;
}

.verif details iframe {
    background-color: #cccccc77;
    border: none;
    width: 100%;
    height: 300px;
    border-radius: 10px;
    margin-top: 20px;
}

.u-settings.gdps-ov .showcase {
    text-align: center;
}

.u-settings.gdps-ov .showcase .gdps-box.example {
    animation: usgdpsovscgbex-anim 60s normal infinite;
    margin: 20px 0 40px 0;
}

@keyframes usgdpsovscgbex-anim {
    0% {box-shadow: 0 0 30px 5px red;}
    11% {box-shadow: 0 0 30px 5px darkorange;}
    22% {box-shadow: 0 0 30px 5px yellow;}
    33% {box-shadow: 0 0 30px 5px greenyellow;}
    44% {box-shadow: 0 0 30px 5px green;}
    55% {box-shadow: 0 0 30px 5px cyan;}
    66% {box-shadow: 0 0 30px 5px blue;}
    77% {box-shadow: 0 0 30px 5px purple;}
    88% {box-shadow: 0 0 30px 5px fuchsia;}
    100% {box-shadow: 0 0 30px 5px violet;}
}

.gdps-ov .limitreach {
    display: none;

    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    backdrop-filter: blur(5px);
    background-color: #33333300;
    z-index: 90;
}

.gdps-ov .limitreach h1 {
    font-size: 4em;
}

.gdps-ov .limitreach p {
    background-color: #333333dd;
    padding: 10px;
    border-radius: 10px;
    pointer-events: none;
}

.gdps-banner {
    width: 100%;
    margin-top: -200px;
    border-radius: 10px;
    aspect-ratio: 16/9;
}

.main-data {
    display: flex;
    align-items: baseline;
    margin-top: -60px;
    margin-left: 20px;
}

.main-data img {
    height: 150px;
    border-radius: 20px;
    margin-right: 20px;
    box-shadow: 0 0 15px black;
    background-color: #0000007d;
}

.main-data span {
    font-family: 'SpaceGrotesk';
    font-weight: 700;
    font-size: 40px;
    transform: translateY(-45px);
}

.gdps-badges {
    display: block;
    margin-top: -10px;
}

.gdps-badges img {
    height: 30px;
    box-shadow: none;
    margin-right: 0px;
}

.u-settings .award {
    display: flex;
    justify-content: left;
    align-items: center;
}

.u-settings .award img {
    height: 50px;
    margin-right: 10px;
}

.u-settings .award span {
    color: #ffc813;
    text-shadow: 0 0 15px #ad8500;
    font-size: 26px;
    font-weight: 700;
    font-family: 'SpaceGrotesk';
}

.u-settings .award p {
    margin: 0;
}

.profpage-content-container .settings:has(#GDPSOV) {
    padding-bottom: 5px;
}

.u-settings .shortext input#iconE,
.u-settings .shortext input#bannerE {
    width: 100%;
    background-color: #2f2f2f;
    margin-bottom: 0;
}

#GDPSOV #editBannerOutput {
    aspect-ratio: 16/9;
}

#GDPSOV #editIconOutput {
    aspect-ratio: 1/1;
}

.gdps-ov .shortext {
    background-image: url('../assets/decoir.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #1f1f1f;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
}

.gdps-ov input, .gdps-ov textarea {
    background-color: #44444455;
    backdrop-filter: blur(5px);
    border-color: #44444400;
}

.gdps-ov select {
    appearance: none;
    background-color: #444;
    color: #bbb;
    border: 3px solid #00000000;
    border-radius: 10px;
    padding: 5px 10px;
    outline: none;
    cursor: pointer;
}

.gdps-ov select:focus {
    background: #555;
    color: white;
    border: 3px solid #4791ff;
}

.gdps-ov input[type="checkbox"] {
    appearance: none;
    background-color: #444;
    margin: 0;
    margin-right: 10px;
    font: inherit;
    color: white;
    width: 40px;
    height: 40px;
    padding: 5px !important;
    border: 3px solid #444;
    border-radius: 5px;
    transform: translateY(-0.075em);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.gdps-ov input[type="checkbox"]:hover {
    border: 3px solid #4791ff;
}
  
.gdps-ov input[type="checkbox"]::before {
    content: "";
    width: 1em;
    height: 1em;
    transform: scale(0);
    transition: 120ms transform ease-in-out;
    box-shadow: inset 1em 1em #4791ff;
    transform-origin: bottom left;
    margin: 0;
    clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}
  
.gdps-ov input[type="checkbox"]:checked::before {
    transform: scale(1);
}

.gdps-ov .save-all {
    position: sticky;
    bottom: 0px;
    width: 100%;
    box-shadow: 0 0 10px #000000cc;
}

.ygdps-list {
    display: grid;
    grid-template-columns: auto;
    gap: 10px;
}

.ygdps-list div a {
    background-color: #1a1a1a;
    display: flex;
    justify-content: left;
    align-items: center;
    text-decoration: none;
    color: white;
    padding: 30px 30px;
    border-radius: 10px;

    border-left: 8px solid transparent;
}

/*
approved: #6cd443
denied: #d44343
awaiting approval: #d4c543
archived: #ddd
*/

.ygdps-list .gdps {
    transition: 200ms;
    position: relative;
}

.ygdps-list .gdps:hover {
    transform: scale(1.025);
    filter: drop-shadow(0 0 15px rgba(0, 0, 0, 0.3)) brightness(120%);
}

.ygdps-list .gdps .info {
    z-index: 3;
}

.ygdps-list .gdps .info > div {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ygdps-list .gdps .info #name {
    font-size: 35px;
    font-family: 'SpaceGrotesk';
    font-weight: 500;
}

.ygdps-list .gdps .info div img {
    height: 25px;
}

.ygdps-list .gdps .info .badge {
    font-size: 13px;
    text-transform: uppercase;
    background-color: #555;
    padding: 3px 5px;
    border-radius: 5px;
}

.ygdps-list .gdps a .icon {
    height: 60px;
    border-radius: 10px;
    margin-right: 15px;
    transition: 200ms;
    z-index: 3;
}

.ygdps-list .gdps:hover .icon {
    transform: scale(1.1);
    transition: 1.3s;
}

.ygdps-list .banner-container {
    height: 120px;
    width: 400px;
    overflow: hidden;
    position: absolute;
    top: 0;
    transform: translateX(-30px);
    z-index: 1;
}

.ygdps-list .banner-container .banner {
    height: 300px;
    transform: rotate(20deg) translate(-25px, -30px);
    transition: 300ms;
}

.ygdps-list .gdps:hover .banner-container .banner {
    transform: rotate(25deg) translate(-25px, -30px) scale(1.2);
}

.ygdps-list .banner-container .gradient {
    background-image: linear-gradient(to right, #1a1a1a00, #1a1a1acc, #1a1a1a);
    height: 120px;
    width: 400px;
    position: absolute;
    top: 0; left: 0;
    transform: translate(0px, 0);
    z-index: 2;
}
/* new user banner config */
.card-container {
    position: relative;
    overflow: hidden;
    color: #eee;
    width: 657px; 
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    font-family: sans-serif;
    display: flex;
    flex-direction: row;
}

.card-banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.3;
}

.card-content {
    position: relative;
    display: flex;
    flex-direction: row;
    padding: 20px;
    z-index: 1;
    width: 100%;
}

.card-pfp {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 4px solid #111;
    object-fit: cover;
    flex-shrink: 0;
    margin-right: 20px;
}

.card-info {
    flex: 1;
}

.card-username {
    display: block;
    font-size: 24px;
    font-weight: bold;
    color: #f0f0f0;
    margin-bottom: 5px;
}

.card-id {
    font-size: 16px;
    color: #bbb;
}

.card-id span {
    font-style: italic;
    color: #fff;
}

.card-badges {
    margin: 5px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 5px; 
}

.card-badges img {
    height: 22px;
    margin-right: 0;
    vertical-align: middle;
}

.card-bio {
    font-size: 14px;
    color: #ccc;
    line-height: 1.4em;
}


/* gdps modal styling begins here */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
    z-index: 98;
    overflow: hidden;
}

.modal-content {
    position: relative;
    background-color: #292929bb;
    backdrop-filter: blur(5px);
    margin: auto;
    padding: 0;
    width: 925px;
    height: 100%;
    top: 0;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
    animation-name: modalanim;
    animation-duration: 0.4s;
    animation-timing-function: cubic-bezier(0, 0, 0, 1);
}

@keyframes modalanim {
    from {
        top: -10%;
        opacity: 0;
        transform: rotateX(70deg);
    }
    to {
        top: 0%;
        opacity: 1;
        transform: rotateX(0deg);
    }
}

.close {
    color: #777;
    position: absolute;
    top: 70px; right: 0;
    font-size: 28px;
    font-weight: bold;
    border-right: 2px solid #6161ff80;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    aspect-ratio: 1/1;
    z-index: 99;

    background-image: radial-gradient(#6262ff, #29292900, #29292900);
    background-size: 200% 200%;
    background-repeat: no-repeat;
    background-position: -40% 50%;
    transition: 200ms;
}

.close:hover, .close:focus {
    color: white;
    text-decoration: none;
    cursor: pointer;
    background-position: -10% 50%;
    border-right: 2px solid #6262ff;
}

.tabmodal {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    max-height: 100%;
}

#MGMT .verification {
    background-image: linear-gradient(
        to left, #02aa0273, #7be97b00
    ),
    url(
        '../assets/badges/verified.png'
    );
    background-repeat: no-repeat;
    background-size: 100%, 50%;
    background-position: center, 135% -10px;
    padding: 20px 40px 20px 0;
    transform: translateX(20px);
}
#MGMT .verificationp {
    background-image: linear-gradient(
        to left, #ce59f1a6, #03030300
    ),
    url(
        '../assets/badges/partner.png'
    );
    background-repeat: no-repeat;
    background-size: 100%, 50%;
    background-position: center, 135% -10px;
    padding: 20px 40px 20px 0;
    transform: translateX(20px);
}

#MGMT .archival {
    background-image: linear-gradient(
        to left, #a0a0a073, #7be97b00
    ),
    url(
        '../assets/archived.png'
    );
    background-repeat: no-repeat;
    background-size: 100%, 50%;
    background-position: center, 135% -10px;
    padding: 20px 40px 20px 0;
    transform: translateX(20px);
}

#MGMT .unarchive {
    background-image: linear-gradient(
        to left, #a0a0a073, #7be97b00
    ),
    url(
        '../assets/unarchived.png'
    );
    background-repeat: no-repeat;
    background-size: 100%, 50%;
    background-position: center, 135% -10px;
    padding: 20px 40px 20px 0;
    transform: translateX(20px);
}

#MGMT .deletion {
    background-image: linear-gradient(
        to left, #880b0b73, #e97b7b00
    ),
    url(
        '../assets/deleted.png'
    );
    background-repeat: no-repeat;
    background-size: 100%, 50%;
    background-position: center, 130% 10%;
    padding: 20px 40px 20px 0;
    transform: translateX(20px);
}






.login-page {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 0; bottom: 0; left: 0; right: 0;
    animation: lp-anim 2.5s ease-in-out;
}

@keyframes lp-anim {
    0% {background-size: 130%;opacity: 0;}
    35% {opacity: 1;}
    50% {background-size: 100%;}
    100% {background-size: cover;}
}

.login-page .credits {
    position: absolute;
    bottom: 15px; right: 20px;
    font-style: italic;
    text-align: right;
    opacity: 0.3;
    cursor: default;
    transition: 200ms;
}

.login-page .credits:hover {
    opacity: 0.6;
}

.login-box {
    background-color: #222222e8;
    backdrop-filter: blur(5px);
    box-shadow: 2px 2px 20px #000;
    width: 350px;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    position: absolute;
    top: 0; left: 0; bottom: 0;
    padding: 100px 30px 30px 30px;
    animation: lb-start-anim 0.7s ease-out;
}

@keyframes lb-start-anim {
    from {transform: translateX(-200px);}
    to {transform: translateX(0px);}
}

.login-box span {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
    color: #555;
    text-transform: uppercase;
    font-size: 14px;
}

.login-box h2 {
    text-align: center;
    margin: -5px 0 10px 0;
}

.login-box form {
    margin: 0;
    padding: 0;
}

.login-box form input {
    background: #444;
    border: 3px solid #444;
    color: #bbb;
    border-radius: 5px;
    margin-bottom: 10px;
    padding: 8px 15px;
    outline: none;
    transition: 200ms;
    width: 100%;
}

.login-box form input:focus {
    background: #555;
    color: white;
    border: 3px solid #4791ff;
}

.login-box form input[type=checkbox] {
    width: 30px !important;
    height: 30px !important;
}

.login-page .newpfp {
    background-color: #222;
    height: 35px;
    aspect-ratio: 1/1;
    border-radius: 5px;
    transform: translateY(1px);
    pointer-events: none;
}

.login-box #recap {
    width: 99%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

.login-box form button {
    width: 100%;
    cursor: pointer;
}

.lb-pos-right {
    left: calc(15% + 350px + 100px);
}

.login-opt a {
    background-color: white;
    border: 2px solid #9898ff;
    border-radius: 5px;
    padding: 10px 20px;
    color: #9898ff;
    text-decoration: none;
}

.pub {
    line-height: 35px;
}

.pub input, .pub textarea {
    background: #444;
    border: 3px solid #444;
    color: #bbb;
    font-family: 'Regular';
    border-radius: 5px;
    margin-bottom: 10px;
    padding: 8px 15px;
    outline: none;
    transition: 200ms;
    width: 500px;
    resize: none;
}

.pub textarea {
    height: 200px;
}

.pub input:focus, .pub textarea:focus {
    background: #555;
    color: white;
    border: 3px solid #4791ff;
}

.pub input::-webkit-file-upload-button {
    background: #555;
    border: 3px solid #555;
    color: #bbb;
    border-radius: 5px;
    padding: 2px 10px;
    margin-right: 10px;
    outline: none;
    transition: 200ms;
}

.pub input::-webkit-file-upload-button:hover {
    background: #666;
    border: 3px solid #4791ff;
}

.pub button {
    width: 100%;
    margin-top: 5px;
}

.pub select {
    appearance: none;
    background-color: #444;
    color: #bbb;
    border: 3px solid #00000000;
    border-radius: 10px;
    padding: 5px 10px;
    outline: none;
}

.pub select[name=version]:focus {
    background: #555;
    color: white;
    border: 3px solid #4791ff;
}

.pub label {
    color: #aaa;
}

.pub-desc {
    width: 520px;
    text-align: justify;
    color: #ccc;
}

.pub input[type="checkbox"] {
    appearance: none;
    background-color: #444;
    margin: 0;
    margin-bottom: 10px;
    font: inherit;
    color: white;
    width: 40px;
    height: 40px;
    padding: 5px !important;
    border: 3px solid #444;
    border-radius: 5px;
    transform: translateY(-0.075em);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.pub input[type="checkbox"]:hover {
    border: 3px solid #4791ff;
}
  
.pub input[type="checkbox"]::before {
    content: "";
    width: 1em;
    height: 1em;
    transform: scale(0);
    transition: 120ms transform ease-in-out;
    box-shadow: inset 1em 1em #4791ff;
    transform-origin: bottom left;
    margin: 0;
    clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}
  
.pub input[type="checkbox"]:checked::before {
    transform: scale(1);
}

.pub button[type=submit] {
    width: 530px;
    cursor: pointer;
}

/* .pub #circle-loader {
    display: none;
    position: absolute;
    width: 1rem; height: 1rem;
    margin: 0.5rem auto;
    border-top: 0.5em solid #acacac33;
    border-right: 0.5em solid #acacac33;
    border-bottom: 0.5em solid #acacac33;
    border-left: 0.5em solid #1a90df;
} */

.pub .right-pos {
    float: right;
}

.pub .loader1 {
    display: none;
    width: 530px;
    height: 5px;
    background: #006ed5;
    border-radius: 50px;
    animation: pub-l-anim1 1.25s ease-in-out infinite;
}
  
@keyframes pub-l-anim1 {
    0% {width: 0; z-index: 2;}
    50% {width: 530px; z-index: 1;}
    100% {width: 530px; z-index: 1;}
}

.pub .loader2 {
    display: none;
    width: 530px;
    height: 6px;
    background: #292929;
    transform: translateY(-5.5px);
    animation: pub-l-anim2 1.25s ease-in-out infinite;
}
  
@keyframes pub-l-anim2 {
    0% {width: 0; z-index: 1;}
    50% {width: 0; z-index: 2;}
    80% {width: 530px; z-index: 2;}
    100% {width: 530px; z-index: 2;}
}

.faq {
    margin-left: calc(45vw - 300px);
    border-radius: 10px;
    padding: 0;
}
 
.accordion {
    background-color: #3a3a3a;
    color: white;
    cursor: pointer;
    padding: 18px;
    text-align: left;
    border: none;
    outline: none;
    border-radius: 5px;
    transition: 0.2s;
    width: 600px;
    margin: auto;
}

.active, .accordion:hover {
    background-color: #3a5f967a;
}

.accordion:after {
    content: '\27A4';
    transform: rotate(90deg);
    font-size: 13px;
    color: #777;
    float: right;
    margin-left: 5px;
    transition: 500ms;
}

.accordion:target {
    outline: #acacff 2px solid;
    box-shadow: 0 0 10px #000000dd;
}

.active:after {
    transition: 500ms;
    content: "\27A4";
    transform: rotate(-90deg);
}
 
.panel {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    margin: 10px 0 10px 0;
    width: 600px;
    transition: max-height 0.3s ease-in-out;
}

.edit-page-content {
    margin: 0;
    padding: 0;
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    overflow-x: hidden;
    overflow-y: auto;
    background-color: #333;
    animation: epc-anim 600ms ease-in-out normal;
}

@keyframes epc-anim {
    0% {opacity: 0; transform: scale(-0.25, -0.25);}
    80% {opacity: 0;}
    100% {opacity: 1;}
}

.edit-topbar {
    background-color: #333333bb;
    backdrop-filter: blur(3px);
    width: 100%;
    position: fixed;
    border-bottom: 2px #444 solid;
    padding: 12px;
    padding-left: 240px;
    z-index: 10;
}

.edit-topbar h2 span {
    font-family: 'Regular';
    font-size: 16px;
    font-weight: 100;
    color: #aaa;
}

.edit-gdpsinfo {
    margin: 120px 30px;
    padding: 0;
}

.edit-gdpsinfo input, .edit-gdpsinfo textarea {
    background: #444;
    border: 3px solid #444;
    font-family: 'Regular';
    color: #bbb;
    border-radius: 5px;
    margin-bottom: 10px;
    padding: 8px 15px;
    outline: none;
    transition: 200ms;
    width: 500px;
    resize: none;
}

.edit-gdpsinfo textarea {
    height: 200px;
}

.edit-gdpsinfo input:focus, .edit-gdpsinfo textarea:focus {
    background: #555;
    color: white;
    border: 3px solid #4791ff;
}

.edit-gdpsinfo input::-webkit-file-upload-button {
    background: #555;
    border: 3px solid #555;
    color: #bbb;
    border-radius: 5px;
    padding: 2px 10px;
    margin-right: 10px;
    outline: none;
    transition: 200ms;
}

.edit-gdpsinfo input::-webkit-file-upload-button:hover {
    background: #666;
    border: 3px solid #4791ff;
}

.edit-gdpsinfo button {
    width: 100%;
    margin-top: 5px;
}

.edit-gdpsinfo select {
    appearance: none;
    background-color: #444;
    color: #bbb;
    border: 3px solid #00000000;
    border-radius: 10px;
    padding: 5px 10px;
    outline: none;
}

.edit-gdpsinfo select:focus {
    background: #555;
    color: white;
    border: 3px solid #4791ff;
}

.edit-gdpsinfo label {
    color: #aaa;
}

.edit-gdpsinfo input[type="file"] {
    width: 300px;
}

.edit-gdpsinfo input[type="checkbox"] {
    appearance: none;
    background-color: #444;
    margin: 0;
    margin-bottom: 10px;
    font: inherit;
    color: white;
    width: 40px;
    height: 40px;
    padding: 5px !important;
    border: 3px solid #444;
    border-radius: 5px;
    transform: translateY(-0.075em);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.edit-gdpsinfo input[type="checkbox"]:hover {
    border: 3px solid #4791ff;
}
  
.edit-gdpsinfo input[type="checkbox"]::before {
    content: "";
    width: 1em;
    height: 1em;
    transform: scale(0);
    transition: 120ms transform ease-in-out;
    box-shadow: inset 1em 1em #4791ff;
    transform-origin: bottom left;
    margin: 0;
    clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}
  
.edit-gdpsinfo input[type="checkbox"]:checked::before {
    transform: scale(1);
}

.edit-gdpsinfo button[type=submit] {
    width: 150px;
    padding: 15px;
    cursor: pointer;
    position: fixed;
    top: 17.5px;
    right: 40px;
    z-index: 11;
}

.edit-gdpsinfo form .imgupld {
    float: left;
    margin-right: 20px;
}

#circle-loader {
    border-radius: 50%;
    width: 7rem;
    height: 7rem;
    margin: 2rem auto;
    position: relative;
    border-top: 1em solid #00000033;
    border-right: 1em solid #00000033;
    border-bottom: 1em solid #00000033;
    border-left: 1em solid #1a90df;
    animation: cl-anim 1s infinite linear;
}

@keyframes cl-anim {
    from {transform: rotate(0deg);}
    to {transform: rotate(360deg);}
}

.anal-container p {
    color: #ccc;
}

.anal-container p span {
    color: #fff6a9;
    font-family: 'Courier New', Courier, monospace;
    font-weight: bold;
}

.danger-container {
    background-color: #4d4d4d33;
    border: 1px solid rgb(85, 85, 85);
    border-radius: 10px;
    padding: 30px 50px;
    margin-top: 80px;
    width: max-content;
    transition: 200ms;
}

.danger-container:hover {
    background-color: #61000033;
    border: 1px solid rgb(119, 0, 0);
    color: rgb(255, 203, 203);
    transition: 200ms;
}

.danger-container:hover h2 {
    color: rgb(255, 157, 157);
    transition: 200ms;
    cursor: default;
}

.danger-container button {
    background-color: rgba(100, 0, 0, 0.3);
    font-size: xx-small;
    opacity: 0;
    text-decoration: none;
    cursor: pointer;
    border: none;
    outline: none;
    transition: 150ms;
}

.danger-container:hover button {
    border: rgb(200, 0, 0) 1px solid;
    font-size: medium;
    border-radius: 5px;
    padding: 7px 14px;
    color: white;
    text-decoration: none;
    opacity: 1;
    transition: 150ms;
}

.danger-container:hover a:hover {
    background-color: rgb(100, 0, 0);
    border: rgb(200, 0, 0) 1px solid;
    border-radius: 5px;
    padding: 7px 14px;
    color: white;
    text-decoration: none;
}

.userpage-banner {
    width: 100vw;
    height: 56.25vh;
    object-fit: cover;
    object-position: top center;
    pointer-events: none;
}

.userpage-name {
    font-family: 'SpaceGrotesk';
    font-weight: 900;
    font-style: italic;
    font-size: 6vh;
    position: absolute;
    top: 35vh;
    text-align: center;
    width: 100vw;
    text-shadow: 0 0 15px black;
    pointer-events: none;
}

.userpage-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: 25% 50% 25%;
    margin: 0 10vw 30px 10vw;
    transform: translateY(-80px);
}

.userpage-grid .up-box {
    background-color: #1f1f1fcc;
    backdrop-filter: blur(5px);
    border-radius: 10px;
    height: max-content;
}

.up-box .title {
    margin-top: -17.5px;
    margin-left: 15px;
    opacity: 0.5;
    text-shadow: 0 0 10px #333;
    pointer-events: none;
}

.u-pfp {
    width: 9rem;
    transform: translate(-10px, -25px);
    float: right;
    border-radius: 10px;
    margin-left: 5px;
    transition: 200ms;
    pointer-events: none;
}

.up-box .badges {
    margin-left: 20px;
    margin-top: -10px;
}

.up-box .badges .usrdist {
    height: 30px;
}

.u-jod {
    color: gray;
    margin: 20px;
}

.u-socials {
    background-color: #111;
    border-radius: 10px;
    width: max-content;
    padding: 10px 10px;
    margin-left: 20px;
    margin-bottom: 20px;
    display: grid;
    grid-template-columns: auto auto auto auto;
    gap: 10px;
}

.u-socials img {
    height: 30px;
    transition: 0.2s;
}

.u-socials img:hover {
    filter: brightness(200%);
}

.u-bio {
    padding: 20px;
    margin: 0 0 10px 0;
}

.up-box details .newpost {
    background-color: #1a1a1acc;
    padding: 30px;
    margin-bottom: 20px;
    position: relative;
}

.up-box details .newpost textarea {
    width: 100%;
    height: 150px;
}

.up-box details .newpost a {
    position: absolute;
    right: 30px; bottom: 15px;
}

.user-posts {
    width: auto;
    margin: 10px;
    background-color: #00000000;
    backdrop-filter: none;
    margin-top: -10px;
    padding-top: 0;
    position: relative;
}

.user-posts .combox {
    grid-template-columns: 70px 87.5% !important;
    grid-template-rows: 20px auto !important;
}

.user-posts .combox p {
    overflow-y: hidden !important;
    height: max-content;
}

.up-box:hover .fab {
    opacity: 1;
}

.up-box .fab {
    float: right;
    position: absolute;
    top: -20px;
    right: 30px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.408);
    display: flex;
    opacity: 0;
    z-index: 10;
}

.up-box .fab img {
    height: 20px;
    margin-right: 10px;
}

.u-temp-gdps-list {
    display: grid;
    grid-template-columns: auto;
    gap: 10px;
    margin: 10px;
}

.u-temp-gdps-list .item {
    background-color: transparent;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    padding: 10px 20px;
    border-radius: 10px;
    transition: 200ms;
}

.u-temp-gdps-list .item:hover {
    background-color: #111;
}

.u-temp-gdps-list .item img {
    height: 50px;
    border-radius: 7.5px;
    margin-right: 15px;
}

.u-temp-gdps-list h3 {
    text-align: center;
}

.brand-gallery {
    width: 100%;
    margin-top: 20px;
}

.brand-card {
    width: 32%;
    display: inline-block;
    margin-right: 1%;
    margin-bottom: 20px;
    padding: 20px;
    background-color: #444;
    border-radius: 10px;
    position: relative;
}

.brand-degrade {
    background-image: linear-gradient(to top, #444, #444, #00000000);
    height: 110px;
    z-index: 2;
    position: absolute;
    bottom: 0; left: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    width: 100%;
}

.brand-card img {
    width: 100%;
    border-radius: 10px;
}

.brand-download {
    position: absolute;
    bottom: 30px;
    left: 20px;
    z-index: 3;
}

.brand-download span {
    margin-left: 10px;
}

.brand-more {
    text-align: center;
}

.about-h {
    background-image: linear-gradient(160deg, #2a7fff, #3737c8);
    background-image: url('../assets/login/about.png');
    background-size: cover;
    background-repeat: no-repeat;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    pointer-events: none;
}

.about-h h1 {
    opacity: 0;
    line-height: 0px;
    font-size: 6rem;
    text-shadow: 1px 1px 20px #00000084;
    animation: ahh1-anim 15s cubic-bezier(0,-0.01, 0.01, 1);
}

@keyframes ahh1-anim {
    0% {font-size: 0px; opacity: 0; display: block;}
    15% {font-size: 6.5rem; opacity: 1;}
    20% {font-size: 6rem;}
    85% {letter-spacing: normal; opacity: 1;}
    100% {letter-spacing: 20px; opacity: 0;}
}

.about-h element {
    line-height: 0.5vh;
}

.about-h div {
    width: max-content;
    font-size: 7rem;
    opacity: 0;
    font-weight: bold;
}

.about-h .one {animation: ahs-marqrep-anim 12s ease-in-out 1s;}
.about-h .two {animation: ahs-marqrep-anim 12s ease-in-out;}

@keyframes ahs-marqrep-anim {
    0% {transform: translateX(-100%); opacity: 0;}
    30% {opacity: 0.5;}    70% {opacity: 0.5;}
    100% {transform: translateX(100%); opacity: 0;}
}

.about-h .finalghub {
    opacity: 1;
    font-size: x-large;
    line-height: 3px;
    animation: ahfg-anim 14.5s;
    position: absolute;
    background-color: #99999930;
    padding: 50px;
    border-radius: 150px;
    pointer-events: all;
    transition: 200ms;
}

.about-h .finalghub:hover {
    background-color: #99999980;
}

.about-h .finalghub:hover .text {
    opacity: 1;
    font-size: inherit;
}

.about-h .finalghub .text {
    opacity: 0;
    font-size: xx-large;

    position: absolute;
    bottom: 75px;
    left: 75px;
    text-align: left;
    text-shadow: 2px 2px 20px #00000088;
    pointer-events: none;
    transition: 250ms;
}

.about-h .finalghub img {
    margin-bottom: 15px;
    height: 450px;
    pointer-events: none;
}

@media only screen and (max-width: 1500px) {
    .about-h .finalghub img {height: 350px;}
}

@keyframes ahfg-anim {
    0% {opacity: 0;}
    99% {opacity: 0;}
    100% {opacity: 1;}
}

.about-content {
    background-color: white;
    color: black;
}

.about-content .bigtitle {
    padding: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-content .bigtitle h1 {
    margin: 0;
    font-size: 8vh;
    letter-spacing: -4px;
    margin-right: 70px;
}

.about-content .bigtitle p {
    font-size: xx-large;
    width: 50%;
    color: #777;
}

.about-content .timeline {
    width: 100vw;
    text-align: center;
}

.about-content .timeline img {
    width: 100vw;
    margin-top: 10%;
}

.about-content .timeline strong {
    font-size: xxx-large;
    font-weight: bolder;
    letter-spacing: -2px;
}

.about-content .timeline p {
    margin: 0 20%;
    font-size: x-large;
}

.about-content .timeline .mus {
    font-size: medium;
    background-color: #222;
    color: white;
    border-radius: 15px;
    width: max-content;
    padding: 15px 25px;
    margin-top: 20px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.about-content .timeline .mus strong {
    font-size: x-large;
    letter-spacing: -1px;
    margin-right: 30px;
}

.about-content .videos {
    width: 90%;
    margin: 0 10%;
    margin-top: 20px;
}

.about-content .videos iframe {
    width: 30%;
    aspect-ratio: 16/9;
    margin: 0 5px 0 5px;
    border-radius: 20px;
}

.about-content .ws {
    text-align: center;
    padding: 100px 0;
}

.about-content .ws a {
    font-weight: bold;
    font-size: x-large;
    padding: 15px 30px;
}

.about-content .patreon {
    background-image: linear-gradient(140deg, #1565c0, #039be5);
    color: white;
    width: 500px;
    border-radius: 20px;
    padding: 30px;
    margin-inline: auto;
    margin-bottom: 50px;
}

.about-content .patreon img {
    height: 210px;
    opacity: 0.6;
    margin-right: 30px;
}

.keypeople {
    padding: 50px 0px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
    transform: translateX(20px);
    /* pointer-events: none; */
}

.kp-person {
    background-color: #ddd;
    border-top-right-radius: 100px;
    border-bottom-right-radius: 100px;
    width: 300px;
    margin-inline: auto;
    display: flex;
    align-items: center;
}

.kp-person img {
    border: 5px solid #81a3d5;
    background-color: #81a3d5;
    border-radius: 50%;
    aspect-ratio: 1/1;
    object-fit: cover;
    object-position: center;
    height: 100px;
    transform: translate(-50px, 0px);
}

.kp-person span {
    font-size: 24px;
    font-weight: 900;
    transform: translateX(-20px);
    line-height: 1.25rem;
}

.kp-person span i {
    font-size: 14px;
    font-weight: normal;
    line-height: 0.5em;
}

.mob-top-shadow {
    display: none;
}

.sc-stats {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
}

.sc-stats .box {
    margin: 0 30px;
}

.sc-stats .box i {
    font-style: normal;
    font-weight: bold;
    font-family: monospace;
    font-size: 4rem;
}

/* ANNIVERSARY HOME PAGE BANNER STYLE */
.recommendedtb {
    text-transform: uppercase;
    background-image: linear-gradient(32deg, #7010ff, #ff2a8c);
    color: white;
    font-size: 12px;
    border-radius: 14px;
    padding: 4px 10px;
    position: absolute;
    top: 4%;
    left: 4%;
    text-align: right;
}

.specialbday {
    background-image: url('../assets/bday.png');
    padding: 40vh 50px 0 150px;
    background-repeat: no-repeat;
    background-size: 120%;
    background-position: center;
    transition: 300ms;
    height: 100vh;
    animation: sbday-anim 12s ease-in-out infinite;
}

.specialbday h1 {
    background-image: linear-gradient(100deg, #f5f5ff, #fcaaf2);
    background-size: cover;
    background-repeat: no-repeat;
    font-size: 60px;
    font-weight: bold;
    pointer-events: none;
    animation: hht-anim 1s;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.specialbday p {
    font-size: 18px;
    pointer-events: none;
}

.specialbday span {
    opacity: 40%;
    text-transform: uppercase;
    font-size: 14px;
    line-height: 45px;
}

.specialbday .hero-link {
    background-color: #43233c;
    color: white;
    padding: 10px 20px;
    border-radius: 15px;
    margin-right: 10px;
    text-decoration: none;
    transition: 250ms;
}

.specialbday .hero-link:hover {
    background-color: white;
    color: #a656ac;
}

.special-classic-button {
    background-image: linear-gradient(to right, #dd00f5, #dc78ba);
    color: white;
    padding: 10px 25px;
    border-radius: 10px;
    text-decoration: none;
    outline: none;
    border: none;
    transition: 250ms;
    cursor: pointer;
}
@keyframes sbday-anim {
    0% {background-size: 100%;background-position: center;}
    50% {background-size: 110%;background-position: 3%;}
    100% {background-size: 100%;background-position: center;}
}

.changelog-container {
    display: grid;
    grid-template-columns: max-content auto max-content;
    margin: auto;
}

.changelog-container .index {
    background-color: #222;
    padding: 20px 60px;
    position: sticky;
    top: 20px;
}

.changelog-container .index span {
    text-transform: uppercase;
    color: #ccc;
    font-size: 14px;
    font-weight: bold;
    line-height: 50px;
}

.changelog-container .index {
    margin: 0;
}

.changelog-container .index .mob-menu, .changelog-container .index .mob-cbox {
    display: none;
}

.changelog-container .index ul {
    list-style-type: none;
    padding: 0;
    height: max-content;
    position: sticky;
    top: 80px;
}

.changelog-container .index a {
    color: white;
    text-decoration: none;
    transition: 0.15s ease-in;
}

.changelog-container .index a:hover {
    font-size: larger;
    color: #b6d3ff;
}

.changelog-container .content {
    background-color: #444;
    box-shadow: 0px 0 10px 0 black inset;
    padding: 0 80px 40px 80px;
}

.changelog-container .content .metadata {
    background-color: #444444cc;
    backdrop-filter: blur(3px);
    position: sticky;
    top: 0;
    padding: 60px 0 15px 0;
}

.changelog-container .content .metadata h2 {
    font-family: 'SpaceGrotesk';
    font-size: 3.5em;
    margin: 0;
}

.changelog-container .content .log-item:target .metadata h2 {
    animation: cccmh2target-anim 2s ease-out 0.2s forwards;
}

@keyframes cccmh2target-anim {
    0% {font-size: 3.5em; color: white;}
    10% {font-size: 4em; color: #bcbcec;}
    50% {font-size: 4em; color: #bcbcec;}
    100% {font-size: 3.5em; color: white;}
}

@media only screen and (max-width: 1400px) {
    .changelog-container .content .metadata h2 {
        line-height: 50px;
        font-size: 3em;
    }
}

.changelog-container .content .metadata span {
    color: #bbb;
    font-size: 14px;
    margin-right: 30px;
}

.changelog-container .content img, .changelog-container .content iframe {
    width: calc(100% - 20px);
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
    margin: 30px 10px;
}

.changelog-container .source {
    padding: 40px 60px;
    height: max-content;
    position: sticky;
    top: 40px;
}

.changelog-container .source .builtin {
    display: inline-block;
}

.changelog-container .source .builtin span {
    color: #bbb;
    font-size: 14px;
    text-transform: uppercase;
}

.changelog-container .source .builtin img {
    height: 60px;
    padding: 10px;
    background-color: #333;
    border-radius: 5px;
    transition: 0.15s ease-in;
}

.changelog-container .source .builtin img:hover {
    transform: translate(2px, -2px);
    box-shadow: -2px 2px 0 #222;
}

.changelog-container .source .github {
    background-image: linear-gradient(to bottom, #111, #11111100), url('../assets/langs/github-bg.png');
    background-position: center;
    border-top: 1.5px solid white;
    border-radius: 10px;
    padding: 20px 40px;
    margin-top: 20px;
    width: 250px;
}

:root {
    --rpost-darkened: #2e3a4d;
}

@property --rprev-clear {
    syntax: '<color>';
    initial-value: #297eff;
    inherits: true;
}

@property --rprev-dark {
    syntax: '<color>';
    initial-value: #0062f5;
    inherits: true;
}

body:has(.roulette-container) {
    position: initial;
    background-color: black;
    animation: r-body 1.5s ease-in 0s forwards;
}

@keyframes r-body {
    from {background-color: black;}
    to {background-color: #0a0e13;}
}

body:has(.roulette-container) #blob-bg,
body:has(.roulette-container) #blob-bg svg {
    height: 100vh;
    width: 100vw;
    z-index: 0;
    position: fixed;
    inset: 0;
    opacity: 0;
    filter: blur(10px) contrast(120%);
    scale: 1.15;
    animation: r-blobbg 5s ease-in 1s forwards;
}   

@keyframes r-blobbg {
    from {opacity: 0;}
    to {opacity: 0.35;}
}

.roulette-container {
    background-color: transparent;
    height: 100vh;
    width: 100vw;
    position: fixed;
    overflow: hidden;
    z-index: 1;
}

.roulette-container * {
    animation-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
    z-index: 2;
}

.roulette-container #roulette {
    animation:
        r-intro-anim 2.5s 0s forwards,
        r-result-anim 1s 4s forwards
    ;
}

@keyframes r-intro-anim {
    from {
        transform: scale(4) translateX(-30vw) rotate(90deg);
        opacity: 0;
    }
    10% {opacity: 0;}
    to {
        transform: scale(1.2) translateX(-30vw) rotate(90deg);
        opacity: 1;
    }
}

@keyframes r-result-anim {
    0%,
    100% {--rprev-clear: #2e3a4d; --rprev-dark: #2e3a4d;}
}

.roulette-container .title {
    z-index: 99;
    position: absolute;
    inset: 0;
    height: 25vh;
    width: 100vw;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;

    background-image: linear-gradient(
        to right,
        #00000000, #0b1019, #00000000
    );
    background-repeat: no-repeat;
    animation: r-title-bg 2.5s 0s forwards;
}

@keyframes r-title-bg {
    0% {background-position-x: -100vw; backdrop-filter: blur(0px);}
    10% { backdrop-filter: blur(0px);}
    20% {background-position-x: 0vw; backdrop-filter: blur(15px);}
    50% {background-position-x: 0vw; backdrop-filter: blur(15px);}
    70% { backdrop-filter: blur(0px);}
    100% {background-position-x: 100vw;}
}

.roulette-container .title span {
    font-size: 15vh;
    font-family: 'Alfarn2';
    letter-spacing: -0.5vh;
    font-style: italic;
    animation: r-title-span 2.5s 0s forwards;
}

@keyframes r-title-span {
    0% {transform: translateX(100vw); opacity: 0;}
    10% {opacity: 0;}
    20% {transform: translateX(0vw); opacity: 1; scale: 1;}
    30% {scale: 1.25;}
    40% {scale: 1;}
    50% {transform: translateX(0vw);}
    51% {transform: translateX(0vw); opacity: 1;}
    70% {opacity: 0;}
    100% {transform: translateX(-100vw); opacity: 0;}
}

.roulette-container .pointer {
    background-color: #009dff;
    clip-path: polygon(100% 0, 100% 100%, 0 50%);
    height: 3vh;
    aspect-ratio: 1/1;
    position: absolute;
    top: calc(50vh - 3vh/2 - 2px);
    left: 45vw;
    opacity: 0;
    z-index: 0;
    animation:
        r-pointer-appearance 0.3s 3.5s forwards,
        r-pointer-blink 1s ease-in-out 3.5s infinite,
        r-pointer-fadeout 1s 15s forwards
        !important
    ;
}

@keyframes r-pointer-appearance {
    from {opacity: 0;}
    to {opacity: 1;}
}

@keyframes r-pointer-blink {
    0% {
        background-color: #009dff;
        transform: translateX(0);
    }
    25% {background-color: #66c4ff;}
    50% {
        background-color: #009dff;
        transform: translateX(-0.5vw);
    }
    75% {background-color: #66c4ff;}
    100% {
        background-color: #009dff;
        transform: translateX(0);
    }
}

@keyframes r-pointer-fadeout {
    from {opacity: 1;}
    to {opacity: 0;}
}

body #confetti {
    animation: confetti-anim 2s ease-in-out 15s forwards;
}

@keyframes confetti-anim {
    from {opacity: 1;}
    to {opacity: 0;}
}

.roulette-container .card {
    font-family: 'Regular';
    z-index: 3;
    position: fixed;
    right: 10vw;
    top: calc(50vh - 25cqh);
    display: none;
    flex-direction: column;
    width: 40vw;
    height: min-content;
    animation: r-card 0.7s 0.5s forwards;
    opacity: 0;
}

@keyframes r-card {
    from {scale: 0.3; opacity: 0; backdrop-filter: blur(0px);}
    to {scale: 1; opacity: 1; backdrop-filter: blur(20px);}
}

.roulette-container .card .banner {
    width: 100%;
    aspect-ratio: 28/9;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-top-left-radius: 1vw;
    border-top-right-radius: 1vw;
}

.roulette-container .card .meta {
    background-image: linear-gradient(
        180deg,
        rgba(255, 214, 34, 0.7),
        rgba(255, 181, 34, 0.7)
    );
    height: 6.5vw;
    line-height: 1.1vw;
    padding: 1.2vw 0 0 0;
    pointer-events: none;
}

@media (min-aspect-ratio: 16/10) {
    .roulette-container .card .meta {
        height: 7vw !important;
    }
}

.roulette-container .card .meta .logo {
    background-color: #f59f00;
    height: 10vw;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
    border-radius: 1vw;
    position: absolute;
    transform: translate(16%, calc(-50% - 1.2vw));
    pointer-events: none;
}

.roulette-container .card .meta .name {
    font-family: 'Alfarn2';
    font-style: italic;
    font-size: 2.6vw;
    letter-spacing: -0.1vw;
    margin-left: 32%;
}

.roulette-container .card .meta .author {
    margin-left: calc(32% + 3px);
    font-size: 1.1vw;
}

.roulette-container .card .buttons {
    z-index: 3;
    height: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1vw;
}

.roulette-container .card .buttons a {
    background-image: linear-gradient(
        to right,
        #f59f00,
        #dba829
    );
    min-width: 15vw;
    text-align: center;
}

.roulette-container .card .buttons a:hover {
    color: black;
}

.roulette-container .card .challenge {
    background-color: rgba(173, 124, 28, 0.7);
    background-image: url('../assets/relucient.png');
    background-size: 50%;
    background-repeat: no-repeat;
    background-position-x: -80%;
    backdrop-filter: blur(5px);
    background-blend-mode: color-burn;

    border-bottom-left-radius: 1vw;
    border-bottom-right-radius: 1vw;
    height: 4.5vw;
    /* padding: 1.75vw 2vw 1vw 2vw; */
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    animation: r-ch-bg 5s ease-in infinite;
}

@keyframes r-ch-bg {
    0% {background-position-x: -100%;}
    17% {background-position-x: 200%;}
    100% {background-position-x: 200%;}
}

.roulette-container .card .challenge .tagline {
    font-weight: bold;
    font-size: 1.1vw;
    transform: translate(2vw, 0.5vw);
}

.roulette-container .card .challenge .difficulty {
    background-color: #672727;
    clip-path: polygon(
        15% 0%, 100% 0%, 100% 100%, 0% 100%
    );
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    height: 100%;
    border-bottom-right-radius: 1vw;
}

.roulette-container .card .challenge .difficulty img {
    width:8vw; height: 100%;
    object-fit: cover;
    object-position: 50px 35%;
}

.roulette-container .card .challenge .difficulty span {
    text-transform: uppercase;
    font-family: 'ArchivoExpanded';
    transform: translate(2.5vw, 0.6vw);
    /* padding: 0 0.5vw 0 3vw; */
}

.roulette-container .bglace {
    display: none;
    opacity: 0;
    background-color: rgba(255, 204, 0, 0.63);
    position: absolute;
    inset: 0;
    margin: auto;
    height: 35vh;
    z-index: -1;
    animation: r-bglace 3s 0.1s forwards;
}

@keyframes r-bglace {
    0% {
        transform: translateX(-100vw);
        opacity: 0;
        height: 35vh;
    }
    40% {transform: translateX(0);}
    60% {
        opacity: 1;
        height: 35vh;
    }
    100% {
        opacity: 1;
        height: 15vh;
    }
}