:root {
    --black: #050505;
    --black-2: #0b0b0b;
    --panel: #101010;
    --panel-2: #151515;
    --line: #303030;
    --line-light: #454545;
    --white: #f1f1f1;
    --muted: #a0a0a0;
    --red: #f20d18;
    --red-dark: #a90810;
    --page-width: 1510px;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    min-height: 100%;
}

body {
    background: var(--black);
    color: var(--white);
    font-family:
        "Bahnschrift",
        "Arial Narrow",
        Arial,
        sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

.site-shell {
    width: min(
        var(--page-width),
        calc(100% - 48px)
    );

    margin: 0 auto;
}


/* --------------------------------------------------
   HEADER
-------------------------------------------------- */

.site-header {
    height: 66px;

    background:
        linear-gradient(
            180deg,
            #070707 0%,
            #020202 100%
        );

    border-bottom: 1px solid #282828;
}

.header-inner {
    height: 66px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    height: 58px;

    display: flex;
    align-items: center;

    gap: 11px;
}

.brand-mark {
    color: var(--red);

    font-family:
        Impact,
        "Arial Black",
        sans-serif;

    font-size: 47px;
    line-height: 1;

    font-style: italic;

    letter-spacing: -5px;
}

.brand-copy {
    display: flex;
    flex-direction: column;

    line-height: .85;
}

.brand-copy strong {
    color: var(--red);

    font-family:
        Impact,
        "Arial Black",
        sans-serif;

    font-size: 19px;

    font-style: italic;

    letter-spacing: .5px;
}

.brand-copy small {
    width: 100%;

    margin-top: 6px;

    color: #d6d6d6;

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 7px;

    text-align: center;
}

.main-nav {
    height: 100%;

    display: flex;
    align-items: stretch;
}

.main-nav a {
    min-width: 92px;

    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;

    padding: 0 15px;

    font-family:
        "Bahnschrift Condensed",
        "Arial Narrow",
        sans-serif;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: .6px;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--red);
}

.main-nav a.active::after {
    content: "";

    position: absolute;

    left: 18px;
    right: 18px;
    bottom: 0;

    height: 2px;

    background: var(--red);
}

/* --------------------------------------------------
   WEBSITE IMAGES
-------------------------------------------------- */

.hero-photo img,
.mode-photo img,
.gallery-photo img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}

/* --------------------------------------------------
   HERO IMAGE
-------------------------------------------------- */

.hero-photo {
    position: absolute;

    top: 0;
    bottom: 0;

    left: 36%;

    /* Align the right side with the site-shell */
    right: max(
        24px,
        calc((100vw - var(--page-width)) / 2)
    );

    overflow: hidden;

    border: 0;
}

/* --------------------------------------------------
   HERO
-------------------------------------------------- */

.hero {
    height: 355px;

    position: relative;

    overflow: hidden;

    border-bottom: 1px solid #222;

    background: #0b0b0b;
}

.hero-shade {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, .98) 0%,
            rgba(0, 0, 0, .92) 22%,
            rgba(0, 0, 0, .55) 45%,
            rgba(0, 0, 0, .12) 73%,
            rgba(0, 0, 0, .30) 100%
        );
}

.hero-inner {
    height: 100%;

    position: relative;

    z-index: 2;

    display: flex;
    align-items: center;
}

.hero-copy {
    width: 380px;
}

.hero h1 {
    margin: 0;

    font-family:
        Impact,
        "Arial Black",
        sans-serif;

    font-size: 68px;
    line-height: .98;

    font-style: italic;

    letter-spacing: -1px;
}

.red-rule {
    width: 33px;
    height: 4px;

    margin: 12px 0;

    background: var(--red);
}

.hero-copy p {
    width: 335px;

    margin: 0;

    color: #d1d1d1;

    font-size: 15px;
    line-height: 1.35;
}

.hero-actions {
    margin-top: 16px;

    display: flex;

    gap: 10px;
}


/* --------------------------------------------------
   BUTTONS
-------------------------------------------------- */

.button {
    min-height: 34px;

    padding: 9px 20px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    font-size: 12px;
    font-weight: 900;

    letter-spacing: .5px;
}

.button-red {
    background: var(--red);

    border: 1px solid var(--red);
}

.button-red:hover {
    background: #ff202a;
}

.button-outline {
    background: rgba(0, 0, 0, .35);

    border: 1px solid #8b8b8b;
}

.small-button {
    display: inline-flex;

    margin-top: 8px;

    padding: 5px 9px;

    border: 1px solid #777;

    font-size: 10px;
    font-weight: 900;
}


/* --------------------------------------------------
   PLACEHOLDER IMAGES
-------------------------------------------------- */

.photo-placeholder {
    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;

    background:
        radial-gradient(
            circle at 72% 50%,
            #272727 0,
            #171717 23%,
            #0e0e0e 45%,
            #080808 100%
        );
}

.photo-placeholder::before {
    content: "";

    position: absolute;

    inset: 0;

    opacity: .2;

    background:
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 14px,
            #2c2c2c 14px,
            #2c2c2c 28px
        );
}

.photo-placeholder span {
    position: relative;

    z-index: 2;

    padding: 7px 10px;

    background: rgba(0, 0, 0, .7);

    color: #777;

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 2px;
}


/* --------------------------------------------------
   EVENT BAR
-------------------------------------------------- */

.event-bar {
    background: #080808;
}

.event-bar-inner {
    height: 53px;

    display: grid;

    grid-template-columns:
        285px
        1fr
        300px
        280px;

    border:
        1px solid
        var(--line-light);

    border-top: 0;
}

.event-bar-inner > div {
    display: flex;
    align-items: center;

    padding: 0 18px;

    border-right:
        1px solid
        #333;
}

.event-bar-inner > div:last-child {
    border-right: 0;
}

.event-label {
    gap: 12px;

    color: var(--red);
}

.event-icon {
    font-size: 24px;
}

.event-label small {
    font-size: 12px;
    font-weight: 900;
}

.event-title,
.event-date {
    flex-direction: column;

    align-items: flex-start !important;

    justify-content: center;
}

.event-title strong {
    font-family:
        "Bahnschrift Condensed",
        "Arial Narrow",
        sans-serif;

    font-size: 18px;

    font-style: italic;

    letter-spacing: 1px;
}

.event-title span,
.event-date span {
    color: var(--muted);

    font-size: 11px;
}

.event-date strong {
    font-size: 14px;

    letter-spacing: 1px;
}

.event-action {
    justify-content: center;
}


/* --------------------------------------------------
   HOME PANELS
-------------------------------------------------- */

.home-grid-section {
    padding:
        9px 0 10px;

    background: #050505;
}

.competition-grid {
    display: grid;

    grid-template-columns:
        1fr
        1fr
        .92fr;

    gap: 7px;
}

.mode-card,
.leaderboard-panel,
.results-panel,
.gallery-panel {
    border: 1px solid #3a3a3a;

    background:
        linear-gradient(
            180deg,
            #111 0%,
            #090909 100%
        );
}

.panel-title {
    height: 32px;

    display: flex;
    align-items: center;

    padding: 0 10px;

    border-bottom: 1px solid #282828;

    font-family:
        "Bahnschrift Condensed",
        "Arial Narrow",
        sans-serif;

    font-size: 20px;
    font-style: italic;
    font-weight: 800;
}

.panel-title > span,
.panel-title-row > div > span {
    width: 5px;
    height: 18px;

    margin-right: 8px;

    display: inline-block;

    transform: skew(-20deg);

    background: var(--red);
}

.panel-title-row {
    justify-content: space-between;
}

.panel-title-row > div {
    display: flex;
    align-items: center;
}

.panel-title-row small,
.panel-title-row a {
    color: var(--red);

    font-size: 9px;

    font-style: normal;
}

.mode-body {
    height: 100px;

    display: grid;

    grid-template-columns:
        52%
        48%;
}

.mode-photo {
    border-right: 1px solid #343434;
}

.mode-copy {
    padding: 10px 12px;
}

.mode-copy p {
    margin: 0;

    color: #c0c0c0;

    font-size: 12px;
    line-height: 1.35;
}


/* --------------------------------------------------
   LEADERBOARD
-------------------------------------------------- */

.leaderboard {
    padding: 3px 10px 5px;
}

.lb-row {
    height: 22px;

    display: grid;

    grid-template-columns:
        28px
        1fr
        100px;

    align-items: center;

    border-bottom: 1px solid #252525;

    font-size: 11px;
}

.lb-row:last-child {
    border-bottom: 0;
}

.lb-row:first-child b {
    color: var(--red);
}

.lb-row strong {
    text-align: right;

    font-weight: 400;
}

/* --------------------------------------------------
   LEADERBOARD MODE SELECTOR
-------------------------------------------------- */

.leaderboard-mode {
    display: flex;
    align-items: center;
}

.leaderboard-mode select {
    min-width: 92px;
    
    height: 23px;

    padding: 0 24px 0 8px;

    border: 1px solid #3b3b3b;

    background: #090909;

    color: var(--red);

    font-family:
        "Bahnschrift Condensed",
        "Arial Narrow",
        sans-serif;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: .6px;

    cursor: pointer;

    outline: none;
}

.leaderboard-mode select:hover,
.leaderboard-mode select:focus {
    border-color: var(--red);
}

.leaderboard-mode option {
    background: #0b0b0b;
    color: #f1f1f1;
}

.sr-only {
    position: absolute;

    width: 1px;
    height: 1px;

    padding: 0;
    margin: -1px;

    overflow: hidden;

    clip: rect(0, 0, 0, 0);

    white-space: nowrap;

    border: 0;
}


/* --------------------------------------------------
   RESULTS + GALLERY
-------------------------------------------------- */

.lower-grid {
    margin-top: 8px;

    display: grid;

    grid-template-columns:
        .78fr
        1.22fr;

    gap: 8px;
}

.result-row {
    height: 26px;

    display: grid;

    grid-template-columns:
        105px
        1fr
        115px
        40px;

    align-items: center;

    padding: 0 12px;

    border-bottom: 1px solid #292929;

    font-size: 10px;
}

.result-row:last-child {
    border-bottom: 0;
}

.result-row span {
    color: #b3b3b3;
}

.result-row b {
    color: var(--red);

    text-align: right;
}

.gallery-strip {
    height: 111px;

    display: grid;

    grid-template-columns:
        repeat(5, 1fr);

    gap: 6px;

    padding: 7px;
}

.gallery-photo {
    border: 1px solid #3d3d3d;
}


/* --------------------------------------------------
   PARTNERS
-------------------------------------------------- */

.partner-bar {
    padding: 5px 0 8px;

    border-top: 1px solid #252525;
    border-bottom: 1px solid #303030;

    background:
        linear-gradient(
            180deg,
            #151515,
            #0b0b0b
        );
}

.partners-title {
    height: 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    color: #999;

    font-size: 10px;

    letter-spacing: 1px;
}

.partners-title span {
    width: 55px;
    height: 1px;

    background: #444;
}

.partner-list {
    height: 46px;

    display: grid;

    grid-template-columns:
        repeat(7, 1fr);

    gap: 10px;

    align-items: center;
}

.partner-list div {
    color: #777;

    font-family:
        Impact,
        "Arial Black",
        sans-serif;

    font-size: 18px;

    font-style: italic;

    text-align: center;
}


/* --------------------------------------------------
   FOOTER
-------------------------------------------------- */

.site-footer {
    height: 80px;

    background: #030303;
}

.footer-inner {
    height: 80px;

    display: grid;

    grid-template-columns:
        1.5fr
        .7fr
        1.7fr;

    align-items: center;
}

.footer-brand {
    display: flex;
    align-items: center;

    gap: 14px;
}

.footer-mark {
    color: var(--red);

    font-family:
        Impact,
        "Arial Black",
        sans-serif;

    font-size: 42px;
    font-style: italic;
}

.footer-brand strong {
    font-size: 12px;
}

.footer-brand p {
    width: 330px;

    margin: 3px 0 0;

    color: #777;

    font-size: 9px;
}

.footer-social {
    display: flex;
    align-items: center;

    gap: 13px;

    color: #888;

    font-size: 10px;
}

.footer-social a {
    color: #ddd;

    font-weight: 900;
}

.footer-links {
    display: flex;
    justify-content: flex-end;

    gap: 18px;

    color: #666;

    font-size: 9px;
}


/* --------------------------------------------------
   RESPONSIVE
-------------------------------------------------- */

@media (max-width: 1150px) {

    .site-header {
        height: auto;
    }

    .header-inner {
        height: auto;

        padding: 8px 0;

        flex-wrap: wrap;
    }

    .main-nav {
        width: 100%;

        order: 3;

        overflow-x: auto;
    }

    .main-nav a {
        min-width: 80px;

        height: 40px;
    }

    .hero {
        height: 400px;
    }

    .event-bar-inner {
        height: auto;

        grid-template-columns:
            1fr
            1fr;
    }

    .event-bar-inner > div {
        min-height: 55px;

        border-bottom:
            1px solid
            #333;
    }

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

    .leaderboard-panel {
        grid-column: 1 / -1;
    }

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

}


@media (max-width: 720px) {

    .site-shell {
        width:
            calc(100% - 24px);
    }

    .brand-copy strong {
        font-size: 15px;
    }

    .hero {
        height: 430px;
    }

    .hero-photo {
        inset: 0;
    }

    .hero-shade {
        background:
            rgba(0, 0, 0, .76);
    }

    .hero h1 {
        font-size: 54px;
    }

    .event-bar-inner {
        grid-template-columns: 1fr;
    }

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

    .leaderboard-panel {
        grid-column: auto;
    }

    .mode-body {
        height: 130px;
    }

    .gallery-strip {
        height: auto;

        grid-template-columns:
            repeat(2, 1fr);
    }

    .gallery-photo {
        min-height: 100px;
    }

    .partner-list {
        height: auto;

        padding: 14px 0;

        grid-template-columns:
            repeat(2, 1fr);
    }

    .footer-inner {
        height: auto;

        padding: 20px 0;

        grid-template-columns: 1fr;

        gap: 18px;
    }

    .site-footer {
        height: auto;
    }

    .footer-links {
        justify-content: flex-start;

        flex-wrap: wrap;
    }

}
