/* =========================================
   AUTONOM OFFENSIV
   MASTER STYLESHEET
   ========================================= */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    min-height: 100vh;

    background: #030303;

    color: #ffffff;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    position: relative;

    overflow-x: hidden;
}


/* =========================================
   ANIMATED TV NOISE
   ========================================= */

#noise {
    position: fixed;

    inset: 0;

    width: 100%;
    height: 100%;

    pointer-events: none;

    opacity: 0.25;

    z-index: 0;

    image-rendering: pixelated;
}


/* =========================================
   DARK VIGNETTE
   ========================================= */

body::before {
    content: "";

    position: fixed;

    inset: 0;

    pointer-events: none;

    background:
        radial-gradient(
            ellipse at center,
            transparent 20%,
            rgba(0, 0, 0, 0.55) 100%
        );

    z-index: 2;
}


/* =========================================
   CRT SCANLINES
   ========================================= */

.crt {
    position: fixed;

    inset: 0;

    pointer-events: none;

    z-index: 10;

    background:
        repeating-linear-gradient(
            to bottom,
            rgba(255, 255, 255, 0.018) 0px,
            rgba(255, 255, 255, 0.018) 1px,
            transparent 1px,
            transparent 5px
        );

    opacity: 0.35;
}


/* =========================================
   HOMEPAGE
   ========================================= */

.container {
    width: 100%;

    max-width: 900px;

    min-height: 100vh;

    padding: 40px 20px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    text-align: center;

    position: relative;

    z-index: 5;

    margin: 0 auto;
}


/* =========================================
   HOMEPAGE LOGO
   ========================================= */

.logo {
    width: 200px;

    max-width: 60vw;

    height: auto;

    display: block;

    margin: 0 auto 30px;

    filter:
        grayscale(100%)
        contrast(120%)
        brightness(110%);
}


/* =========================================
   HOMEPAGE TITLE
   ========================================= */

.container h1 {
    color: #ffffff;

    font-size: 40px;

    font-weight: 700;

    letter-spacing: 8px;

    line-height: 1.1;
}


/* =========================================
   DIVIDER
   ========================================= */

.divider {
    width: 110px;

    height: 1px;

    background: rgba(255, 255, 255, 0.55);

    margin: 28px auto 25px;
}


/* =========================================
   NAVIGATION
   ========================================= */

nav {
    display: flex;

    justify-content: center;

    align-items: center;

    gap: 38px;
}

nav a {
    color: #ffffff;

    text-decoration: none;

    font-size: 13px;

    font-weight: 600;

    letter-spacing: 3px;

    transition:
        opacity 0.2s ease;
}

nav a:hover {
    opacity: 0.5;
}


/* =========================================
   MOTTO
   ========================================= */

.motto {
    margin-top: 55px;

    color: #ffffff;

    font-size: 10px;

    letter-spacing: 4px;

    text-transform: uppercase;

    opacity: 0.75;
}


/* =========================================
   MANIFEST PAGE
   ========================================= */

.manifest-container {
    width: 100%;

    max-width: 820px;

    min-height: 100vh;

    margin: 0 auto;

    padding: 55px 35px 80px;

    position: relative;

    z-index: 5;

    text-align: center;
}


/* =========================================
   MANIFEST BACK BUTTON
   ========================================= */

.back {
    position: fixed;

    top: 25px;

    left: 25px;

    color: #ffffff;

    text-decoration: none;

    font-size: 11px;

    font-weight: 600;

    letter-spacing: 3px;

    z-index: 20;

    transition:
        opacity 0.2s ease;
}

.back:hover {
    opacity: 0.5;
}


/* =========================================
   MANIFEST LOGO
   ========================================= */

.manifest-logo {
    width: 200px;

    height: auto;

    display: block;

    margin: 0 auto 50px;

    filter:
        grayscale(100%)
        contrast(125%)
        brightness(115%);
}


/* =========================================
   MANIFEST TITLE
   ========================================= */

.manifest-container h1 {
    color: #ffffff;

    font-size: 38px;

    font-weight: 700;

    letter-spacing: 8px;

    line-height: 1.1;

    text-align: center;

    margin-bottom: 25px;
}


/* =========================================
   MANIFEST DIVIDER
   ========================================= */

.manifest-container .divider {
    margin: 0 auto 45px;
}


/* =========================================
   MANIFEST TEXT
   ========================================= */

.manifest-text {
    width: 100%;

    max-width: 650px;

    margin: 0 auto;

    color: #ffffff;

    font-size: 16px;

    line-height: 1.9;

    letter-spacing: 0.2px;

    text-align: left;
}

.manifest-text p {
    margin-bottom: 35px;
}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 600px) {

    /* -----------------------------
       TV NOISE
       ----------------------------- */

    #noise {
        opacity: 0.45;
    }


    /* -----------------------------
       HOMEPAGE
       ----------------------------- */

    .container {
        padding: 35px 20px;
    }

    .logo {
        width: 145px;
    }

    .container h1 {
        font-size: 27px;

        letter-spacing: 5px;
    }

    .divider {
        width: 80px;

        margin-top: 23px;

        margin-bottom: 23px;
    }

    nav {
        gap: 20px;

        flex-wrap: wrap;
    }

    nav a {
        font-size: 11px;

        letter-spacing: 2px;
    }

    .motto {
        margin-top: 45px;

        font-size: 8px;

        letter-spacing: 3px;
    }


    /* -----------------------------
       MANIFEST
       ----------------------------- */

    .manifest-container {
        min-height: 100vh;

        padding: 60px 25px 60px;
    }

    .manifest-logo {
        width: 105px;

        margin-bottom: 40px;
    }

    .back {
        top: 18px;

        left: 18px;

        font-size: 9px;

        letter-spacing: 2px;
    }

    .manifest-container h1 {
        font-size: 28px;

        letter-spacing: 5px;
    }

    .manifest-text {
        max-width: 100%;

        font-size: 14px;

        line-height: 1.85;
    }
}

/* =========================================
   MEDIA PAGE
   ========================================= */

.media-container {
    width: 100%;

    max-width: 820px;

    min-height: 100vh;

    margin: 0 auto;

    padding: 55px 35px 90px;

    position: relative;

    z-index: 5;

    text-align: center;
}


/* =========================================
   MEDIA LOGO
   ========================================= */

.media-logo {
    width: 130px;

    height: auto;

    display: block;

    margin: 0 auto 50px;

    filter:
        grayscale(100%)
        contrast(125%)
        brightness(115%);
}


/* =========================================
   MEDIA TITLE
   ========================================= */

.media-container h1 {
    color: #ffffff;

    font-size: 38px;

    font-weight: 700;

    letter-spacing: 8px;

    margin-bottom: 25px;
}


/* =========================================
   MEDIA ITEM
   ========================================= */

.media-item {
    width: 100%;

    max-width: 650px;

    margin: 0 auto 75px;

    text-align: left;
}


/* =========================================
   PLACEHOLDER
   ========================================= */

.media-placeholder {
    width: 100%;

    aspect-ratio: 16 / 10;

    border: 1px solid rgba(255, 255, 255, 0.25);

    background: rgba(0, 0, 0, 0.45);

    display: flex;

    justify-content: center;

    align-items: center;

    color: rgba(255, 255, 255, 0.45);

    font-size: 12px;

    letter-spacing: 5px;

    margin-bottom: 18px;
}


/* =========================================
   MEDIA INFORMATION
   ========================================= */

.media-info {
    padding-left: 3px;
}


.archive-number {
    color: #ffffff;

    font-size: 9px;

    letter-spacing: 3px;

    opacity: 0.55;
}


.media-info h2 {
    color: #ffffff;

    font-size: 19px;

    letter-spacing: 4px;

    margin-top: 9px;

    margin-bottom: 10px;
}


.media-info p {
    color: #eeeeee;

    font-size: 14px;

    line-height: 1.7;
}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 600px) {

    .media-container {
        padding: 60px 20px 70px;
    }

    .media-logo {
        width: 100px;

        margin-bottom: 40px;
    }

    .media-container h1 {
        font-size: 28px;

        letter-spacing: 5px;
    }

    .media-item {
        margin-bottom: 60px;
    }

    .media-placeholder {
        aspect-ratio: 4 / 3;
    }

    .media-info h2 {
        font-size: 16px;

        letter-spacing: 3px;
    }

    .media-info p {
        font-size: 13px;
    }
}

/* =========================================
   MEDIA PAGE
   ========================================= */

.media-container {
    width: 100%;

    max-width: 820px;

    min-height: 100vh;

    margin: 0 auto;

    padding: 55px 35px 90px;

    position: relative;

    z-index: 5;

    text-align: center;
}


/* LOGO */

.media-logo {
    width: 130px;

    height: auto;

    display: block;

    margin: 0 auto 50px;

    filter:
        grayscale(100%)
        contrast(125%)
        brightness(115%);
}


/* TITLE */

.media-container h1 {
    color: #ffffff;

    font-size: 38px;

    font-weight: 700;

    letter-spacing: 8px;

    margin-bottom: 25px;
}


/* INTRO */

.media-intro {
    margin-top: 45px;

    text-align: center;
}

.media-intro > p {
    color: #ffffff;

    font-size: 11px;

    letter-spacing: 4px;

    margin-bottom: 28px;
}


/* YOUTUBE LINK */

.youtube-link {
    display: inline-flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    gap: 12px;

    min-width: 280px;

    padding: 28px 45px;

    border: 1px solid rgba(255, 255, 255, 0.35);

    color: #ffffff;

    text-decoration: none;

    background: rgba(0, 0, 0, 0.35);

    transition:
        background 0.2s ease,
        border-color 0.2s ease;
}

.youtube-link:hover {
    background: rgba(255, 255, 255, 0.06);

    border-color: #ffffff;
}


/* SMALL LABEL */

.youtube-label {
    font-size: 9px;

    letter-spacing: 4px;

    opacity: 0.6;
}


/* CHANNEL NAME */

.youtube-name {
    font-size: 16px;

    font-weight: 600;

    letter-spacing: 4px;
}


/* MOBILE */

@media (max-width: 600px) {

    .media-container {
        padding: 60px 20px 70px;
    }

    .media-logo {
        width: 100px;

        margin-bottom: 40px;
    }

    .media-container h1 {
        font-size: 28px;

        letter-spacing: 5px;
    }

    .youtube-link {
        min-width: 0;

        width: 100%;

        padding: 25px 20px;
    }

    .youtube-name {
        font-size: 14px;

        letter-spacing: 3px;
    }
}


/* =========================================
   CONTACT PAGE
   ========================================= */

.contact-container {
    width: 100%;

    max-width: 820px;

    min-height: 100vh;

    margin: 0 auto;

    padding: 55px 35px 90px;

    position: relative;

    z-index: 5;

    text-align: center;
}


/* LOGO */

.contact-logo {
    width: 130px;

    height: auto;

    display: block;

    margin: 0 auto 50px;

    filter:
        grayscale(100%)
        contrast(125%)
        brightness(115%);
}


/* TITLE */

.contact-container h1 {
    color: #ffffff;

    font-size: 38px;

    font-weight: 700;

    letter-spacing: 8px;

    margin-bottom: 25px;
}


/* CONTENT */

.contact-content {
    margin-top: 50px;
}


.contact-intro {
    color: #ffffff;

    font-size: 11px;

    letter-spacing: 4px;

    margin-bottom: 30px;
}


/* CONTACT LINKS */

.contact-links {
    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 16px;

    width: 100%;

    max-width: 520px;

    margin: 0 auto;
}


.contact-link {
    width: 100%;

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 24px 28px;

    box-sizing: border-box;

    border: 1px solid rgba(255, 255, 255, 0.3);

    background: rgba(0, 0, 0, 0.35);

    color: #ffffff;

    text-decoration: none;

    transition:
        background 0.2s ease,
        border-color 0.2s ease;
}


.contact-link:hover {
    background: rgba(255, 255, 255, 0.06);

    border-color: #ffffff;
}


.contact-platform {
    font-size: 14px;

    font-weight: 600;

    letter-spacing: 4px;
}


.contact-action {
    font-size: 9px;

    letter-spacing: 2px;

    opacity: 0.6;
}


/* MOBILE */

@media (max-width: 600px) {

    .contact-container {
        padding: 60px 20px 70px;
    }

    .contact-logo {
        width: 100px;

        margin-bottom: 40px;
    }

    .contact-container h1 {
        font-size: 28px;

        letter-spacing: 5px;
    }

    .contact-content {
        margin-top: 40px;
    }

    .contact-link {
        padding: 22px 20px;
    }

    .contact-platform {
        font-size: 12px;

        letter-spacing: 3px;
    }

    .contact-action {
        font-size: 8px;
    }
}
