header {
    position: relative;
    width: 100%;
    margin-bottom: 0.75rem;
    padding: 2.5rem 0 4rem 0;
    background-color: #2b1353;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 23% 92%, 0 100%);
}
header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background-image: url(/moco/res/img/moco_bg.webp);
    background-position: center top;
    background-size: cover;
}
header > div {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 1rem;
}
header h1 {
    margin: 0 0 1.25rem;
    text-wrap: balance;
}
header h1 span {
    font-size: 150%;
}

main section {
    margin-bottom: 2.5rem;
}


#inviteSection {
    margin: 2rem 0 1rem;
    padding: 1rem;
    text-align: center;
    background-color: var(--ui-bg-color);
}
#linkContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
}
#timer {
    font-size: 3rem;
    font-weight: 800;
    color: #69d9d9;
}
#qrCodeImage {
    margin: 1rem 0;
}
#linkInvite {
    width: fit-content;
    font-weight: 700;
    color: var(--pink-font-color);
}
#linkContainer p {
    margin-top: 1rem;
}
#linkContainer button {
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    font-weight: 700;
    color: #11082d;
    border: none;
    background-color: var(--pink-font-color);
}


main p a {
    color: var(--pink-font-color);
}

#faqsSection {
    max-width: 432px;
    margin: 0 auto 2rem auto;
    padding: 1rem;
    background-color: #271933;
}

.home-links {
    margin-top: 1.75rem;
    margin-left: 1rem;
}
.home-links a {
    --link-color: #91fc72;
    --link-color: #93F378;
    --link-color: #61c1a4;
    --link-color: #ff8030;
    --link-color: #ff643d;

    position: relative;

    display: flex;
    align-items: center;
    width: fit-content;
    color: var(--link-color);
    font-style: italic;
    text-transform: uppercase;
    font-size: clamp(4rem, 14vmin, 5.5rem);
}
.home-links a img {
    position: absolute;
    top: 0;
    left: -6%;
    width: auto;
    height: 50%;
}
.home-links a svg {
    height: clamp(3rem, 11vmin, 4.5rem);
    width: auto;
    margin-left: 2vmin;
    stroke-width: 5rem;
    stroke: var(--link-color);
    fill: var(--link-color);
    transition: margin 90ms cubic-bezier(0.25, 0.45, 0.25, 0.95);
}
.home-links a:hover {
    filter: brightness(1.2);
}
.home-links a:hover svg {
    margin-left: 4vmin;
}
.home-links a:nth-of-type(2) {
    --link-color: var(--yellow-font-color);
}
.home-links a:nth-of-type(2) img {
    left: -9%;
    height: 45%;
}


main .builds-list, main .gear-list {
    margin: 1rem 0 1.25rem;
}


/* PROS LIST */
#proBuildsContainer h2 svg {
	margin-right: 0.375rem;
	fill: var(--blue-font-color);
	stroke: none;
	transform: translateY(2px);
}
#prosList {
	display: flex;
	flex-flow: row nowrap;
	margin-top: 1rem;
}
#prosList a {
    min-width: 0;
	padding: 0.5rem;
	border-radius: 0.375rem;
	background-color: var(--ui-bg-color);
	transition: 90ms cubic-bezier(0.25, 0.45, 0.25, 0.95);
}
#prosList a:hover {
	transform: scale(1.05);
    filter: brightness(1.2) hue-rotate(3deg);
    box-shadow: 0 0 8px 2px hsl(324.98deg 100% 59.02% / 6%);
}
#prosList a + a {
	margin-left: 0.75rem;
}
#prosList a > img {
	display: block;
    width: 100%;
    max-width: 80px;
    height: auto;
    margin: 0 auto;
	border-radius: 50%;
	border: 3px solid var(--nav-color);
	transition: 0.2s ease;
	/*box-shadow: 0px 1px 5px rgb(0 0 0 / 40%);*/
}
#prosList span {
	display: block;
	margin-top: 0.35rem;
	text-align: center;
	font-weight: 600;
    font-size: 2.75vw;
    font-size: clamp(9px, 2.75vw, 13px);
    white-space: nowrap;
	color: var(--font-color);
	transition: 0.2s color ease;
}
.pro-socials {
	display: flex;
	gap: 0.5rem;
	align-items: center;
	justify-content: center;
	margin-top: 0.5rem;
}
.pro-socials img {
	display: block;
	height: auto;
	opacity: 0.5;
}


#faqsSection h2 {
    margin-bottom: 1rem;
}
#faqsSection > img {
    height: auto;
    max-width: 100%;
}
#faqsSection p {
    margin-top: 1rem;
    line-height: 1.5rem;
}

/* NEWS */
.articles {
	display: grid;
	grid-gap: 2.5rem 2rem;
	grid-template-columns: 1fr;
	margin: 1rem 0 1.5rem 0;
}
.articles a {
	width: 100%;
	height: fit-content;
	color: var(--font-color);
}
.thumbnail {
	position: relative;
	width: 100%;
	height: 0;
	margin-bottom: 0.75rem;
	padding-bottom: 56.25%;
	overflow: hidden;
	background: linear-gradient(153deg, rgba(33,62,187,1) 0%, rgb(39 42 149) 50%, rgba(18,17,112,1) 100%);
}
.thumbnail img {
	width: 100%;
	height: auto;
	transition: transform 0.2s ease-out;
}
.articles a:hover img {
	transform: scale(1.1);
}
.category {
	position: relative;
	z-index: 1;
	margin-right: 1rem;
	padding: 0.125rem 0.5rem;
	font-size: 0.875rem;
	font-weight: 700;
	color: var(--heading-color);
	background-color: var(--nav-color);
}
.category::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: calc(100% + 1.25rem);
	height: 100%;
	background: -webkit-linear-gradient(287deg, transparent 25%, var(--nav-color) 0);
	background: -o-linear-gradient(287deg, transparent 25%, var(--nav-color) 0);
	background: linear-gradient(287deg, transparent 25%, var(--nav-color) 0);
}
.article-date {
	font-size: 0.875rem;
}
.articles h3 {
	margin: 1rem 0;
	color: var(--heading-color);
}
.articles a:hover h3 {
	text-decoration: underline;
	text-decoration-color: var(--pink-font-color);
}
.t-details svg {
	fill: var(--font-color);
}

/* BREAKPOINTS */
@media (min-width: 600px) {
    .articles {
		grid-template-columns: repeat(2, 1fr);
	}
}