/* Fonts */

@font-face {
	font-family: 'DINPro';
	src: url('font/DINPro-Black.WOFF') format('woff');
	font-weight: 900;
}

/* Reset */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre, hr,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video,
input, textarea, button, select {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

html, body {
    height: 100%;
}

html {
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

body {
	font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;


	font-size: 16px;
	color: #fff;
	font-weight: normal;
	line-height: 1.5;
    font-weight: 500;

	background: #1b1b1b;

	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

img, svg, iframe, embed, video, audio,
button, input, textarea, select {
	display: block;
}

svg {
	overflow: visible;
}

a {
	color: #FB6400;
	text-decoration: none;

    background-color: transparent;
}

a:hover {
    text-decoration: underline;
}

strong, b {
	font-weight: bold;
}

:focus, :active {
	outline: 0;
}

/* Header */

header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;

    height: 600px;
    padding: 20px;

    text-align: center;

    background-image: url("img/bg.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

header::before {
    position: absolute;
    display: block;
    content: '';

    inset: 0;

    background: linear-gradient(to bottom, rgba(22, 22, 22, 0.5) 0%, rgba(22, 22, 22, 1) 100%);
}

.HeaderLogo {
    width: 200px;
    height: 173px;
    margin: 0 auto;
    margin-bottom: 20px;
}

h1 {
    margin-bottom: 30px;

    font-size: 50px;
    font-family: 'DINPro', 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    color: #FFF;
}

.HeaderInner {
    position: relative;
}

.HeaderDesc {
    margin-bottom: 20px;
    font-size: 18px;
}

.HeaderSub {
    color: rgba(255,255,255,0.65);
    font-weight: bold;
    font-size: 16px;
}

/* Generic */

.FlexWrapper {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.Btn {
    display: block;

    padding: 15px 20px;
    margin-bottom: 30px;

    color: #fff;
    font-size: 18px;
    text-transform: uppercase;
    font-family: 'DINPro';
    font-weight: 900;

    background: #FB6400;
    border-radius: 6px;
    user-select: none;
}

.Btn:hover {
    text-decoration: none;
    background: #c85000;
}

.Btn.white {
    background: #fff;
    color: #FB6400;
}

.Btn.white:hover {
    background: #eee;
}

/* Sections */

section {
    background: #222;
}

.SectionCol {
    position: relative;

    padding: 50px;
    max-width: 1400px;
    margin: 0 auto;
}

h2 {
    margin-bottom: 20px;
    font-size: 28px;
    font-family: 'DINPro';
    font-weight: 900;
    text-transform: uppercase;
}

.SectionDesc {
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.75);
}

.SectionDesc a {
    color: #fff;
    font-weight: bold;
}

#play {
    background: rgb(22, 22, 22);
}

#watch {

}

#share {
    background: #FB6400;
}

#party {

}

/* Section - Play */

.CountFrameWrapper {
    width: 400px;
    height: 700px;
    margin: 0 auto;

    user-select: none;
}

.CountFrame {
    width: 200px;
    height: 350px;
    margin: 0 auto;
    transform: scale(2);
    transform-origin: top center;
    backface-visibility: hidden;
}

.CountCredit {
    margin-bottom: 10px;

    font-size: 10px;
    text-align: center;
    color: #999;
}

.GameNote {
    background: #1d1d1d;
    border-radius: 6px;
    padding: 12px;
    text-align: center;
    font-size: 12px;
    color: #666;
}

.GameNote p:first-child {
    margin-bottom: 4px;
}

.GameNote span {
    color: #FB6400;
}

.GameNote strong {
    color: #fff;
    font-size: 14px;
}

/* Section - Stream */

.StreamGrid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}

.StreamItem {
    position: relative;

    padding-top: 56.25%;
}

.StreamFrameWrapper {
    position: absolute;
    overflow: hidden;

    inset: 0;

    border-radius: 4px;
    background: #000;
}

.StreamItem iframe {
    width: 100% !important;
    height: 100% !important;
}

/* Section - Share */

.PhotosFrame {
    margin: 0 auto;
    user-select: none;
    max-width: 800px;
    max-height: 800px;
}

/* Section - After party */

.PartyBtns {

}

.PartyBtnRow {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    grid-gap: 20px;
    margin-bottom: 30px;
}

.PartyBtnRow:first-child .PartyBtn {
    width: 50%;
    font-size: 24px;
    height: 300px;
}

.PartyBtn {
    display: block;
    position: relative;
    box-sizing: border-box;
    overflow: hidden;
    padding: 20px;
    height: 200px;
    flex-shrink: 1;
    width: 25%;

    color: #fff;
    font-size: 20px;
    text-transform: uppercase;
    font-family: 'DINPro';
    font-weight: 900;
    user-select: none;
    text-decoration: none !important;

    background-image: url("img/multi.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    border-radius: 6px;
}
.PartyBtn span {
    position: relative;
}
.PartyBtn::before {
    display: block;
    position: absolute;
    inset: 0;
    content: '';
    background: rgba(0,0,0,0.35);
}
.PartyBtn:hover::before {
    background: rgba(0,0,0,0);
}

.PartyBtn.crossfire {
    background-image: url("img/crossfire.jpg");
}
.PartyBtn.custom {
    background-image: url("img/rats.jpg");
}
.PartyBtn.multi1 {
    background-image: url("img/multi1.jpg");
}
.PartyBtn.multi2 {
    background-image: url("img/multi2.jpg");
}
.PartyBtn.multi3 {
    background-image: url("img/multi3.jpg");
}
.PartyBtn.multi4 {
    background-image: url("img/multi4.jpg");
}

/* Footer */

footer {

}

.Logo {
    display: block;

    width: 230px;
    height: 40px;

    user-select: none;
}

.FooterCols {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.FooterCol {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.FooterCol:first-child {
    flex-grow: 1;
}

.FooterCol:last-child {
    justify-content: flex-end;
}

.Socials {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.Social {
    display: block;

    margin-right: 14px;
}

.Social:last-child {
    margin: 0;
}

.Social img {
    width: 32px;
    height: 32px;
}

.Credits {
    font-size: 12px;
    margin-top: 50px;
    margin-bottom: 50px;
    color: #888;
}

.Credit {
    margin-bottom: 10px;
}

.Credit a {
    font-weight: bold;
    color: #ccc;
}

.Legal {

}

.LegalLinks {
    margin-bottom: 6px;
    font-size: 10px;
}

.LegalLink {
    margin-right: 12px;
    color: #666;
}

.Smallprint {
    display: block;
    font-size: 10px;
    color: #444;
    margin-bottom: 0;
}

/* Mobile */

@media (max-width: 1279px) {
    .StreamGrid {
        grid-template-columns: 1fr 1fr;
    }
    .PhotosFrame {
        width: 100%;
        height: 100vw;
    }
}

@media (max-width: 767px) {

    header {
        height: 500px;
    }

    .HL2Logo {
        width: 120px;
        height: 104px;
    }

    h1 {
        font-size: 28px;
    }

    .SectionCol {
        padding: 20px;
    }

    .StreamGrid {
        grid-template-columns: 1fr;
    }

    .PartyBtnRow {
        display: block;
    }

    .PartyBtn {
        width: auto !important;
        margin-bottom: 20px;
    }

    .CountFrame {
        transform: none;
    }

    .CountFrame, .CountFrameWrapper {
        width: 200px;
        height: 350px;
        margin: 0 auto;
    }

    .FooterCols {
        display: block;
    }

    .FooterCol {
        margin-bottom: 20px;
        justify-content: flex-start !important;
    }
}
