html {
    background-color: rgb(165, 0, 165);
    font-family: 'PixelCraft', sans-serif;
    width: 100vw;
    overflow-x: hidden;
}

body {
    margin: 0;
}

.pixelated {
    image-rendering: pixelated;
}

.header-image {
    width: 645px;
    height: 72px;
}

.header {
    background-color: rgb(204, 0, 204);
    background-image: url("/images/top_dither.png");
    background-repeat: repeat-x;
    background-position: bottom;
    background-size: 6px 15px;
    padding: 30px 0;
}

.footer {
    background-color: rgb(127, 0, 127);
    background-image: url("/images/bottom_dither.png");
    background-repeat: repeat-x;
    background-position: top;
    background-size: 6px 15px;
    width: 100%;
    padding-top: 30px;
}

.main {
    background-color: rgb(165, 0, 165);
    flex: 1;
}

.flex {
    display: flex;
}

.justify-content-center {
    justify-content: center;
}

.icon {
    margin: 0 6px;
}

    .icon > img {
        width: 48px;
        height: 48px;
    }

.container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.pixel-font {
    font-family: 'PixelCraft', sans-serif;
}

.pixel-font-bold {
    font-family: 'PixelCraft Bold', sans-serif;
}

.pixel-font-wide {
    font-family: 'PixelCraft Bold Wide', sans-serif;
}


@keyframes splash-text {
    from {
        scale: 1;
    }

    to {
        scale: 1.1
    }
}

.splash-text {
    font-family: 'PixelCraft', sans-serif;
    position: absolute;
    color: rgb(0, 255, 0);
    text-shadow: 3px 3px rgb(0, 63, 0);
    line-height: 0;
    font-size: 2.25em;
    translate: 315px 45px;
    rotate: -20deg;
    white-space: nowrap;
    animation-name: splash-text;
    animation-duration: 0.5s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    z-index: 100;
}

.unselectable {
    -moz-user-select: -moz-none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -o-user-select: none;
    user-select: none;
    pointer-events: none;
}

.display-none {
    display: none !important;
}

@keyframes rainbow {
    0% {
        color: rgb(255, 0, 0);
        text-shadow: rgb(63, 0, 0);
    }

    16.67% {
        color: rgb(255, 255, 0);
        text-shadow: rgb(63, 63, 0);
    }

    33.33% {
        color: rgb(0, 255, 0);
        text-shadow: rgb(0, 63, 0);
    }

    50% {
        color: rgb(0, 255, 255);
        text-shadow: rgb(0, 63, 63);
    }

    66.67% {
        color: rgb(0, 0, 255);
        text-shadow: rgb(0, 0, 63);
    }

    83.33% {
        color: rgb(255, 0, 255);
        text-shadow: rgb(63, 0, 63);
    }

    100% {
        color: rgb(255, 0, 0);
        text-shadow: rgb(63, 0, 0);
    }
}

.splash-text-rainbow {
    animation-name: splash-text, rainbow;
    animation-duration: 0.5s, 3s;
    animation-iteration-count: infinite, infinite;
    animation-direction: alternate, normal;
}

.position-absolute {
    position: absolute;
}

.content {
    max-width: 900px;
    width: 900px;
    margin: 0 auto;
    padding: 20px 0;
}

.content-large {
    max-width: 960px;
    width: 960px;
    margin: 0 auto;
    padding: 20px 0;
}

.card {
    background-color: rgb(204, 0, 204);
    box-shadow: rgb(63, 0, 63) 10px 10px;
    padding: 10px;
}

.green-card {
    background-color: rgb(0, 204, 0);
    box-shadow: rgb(0, 63, 0) 10px 10px;
}

.yellow-card {
    background-color: rgb(204, 204, 0);
    box-shadow: rgb(63, 63, 0) 10px 10px;
}

.blue-card {
    background-color: rgb(0, 204, 204);
    box-shadow: rgb(0, 63, 63) 10px 10px;
}

.red-card {
    background-color: rgb(191, 0, 0);
    box-shadow: rgb(63, 0, 0) 10px 10px;
}

.white-card {
    background-color: rgb(255, 255, 255);
    box-shadow: rgb(63, 63, 63) 10px 10px;
}

.search-card {
    margin: 0 10px 0 0;
    width: 420px;
}

.search-container {
    justify-content: center;
    width: 100%;
    margin-block-end: 30px;
}

.search-input {
    width: 100%;
    border: none;
    border-top: solid 5px rgb(127, 127, 127);
    border-left: solid 5px rgb(127, 127, 127);
    height: 40px;
    font-family: 'PixelCraft', sans-serif;
    font-size: 24px;
    padding-block: 0;
    padding-inline: 0;
    line-height: 0;
    text-align: center;
    padding-bottom: 16px;
}

.fd-column {
    flex-direction: column;
}

.fd-row {
    flex-direction: row;
}

.w-100 {
    width: 100%;
}

.title-card {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
}

.title-list {
    display: flex;
    flex-flow: row wrap;
    width: 100%;
    max-width: 100%;
    justify-content: space-between;
    row-gap: 20px;
}

.title-image {
    width: 200px;
    height: 300px;
    box-shadow: rgb(63, 63, 63) 10px 10px;
    margin-right: 10px;
    margin-bottom: 10px;
    image-rendering: initial;
}

.title-info {
    display: flex;
    margin: 0 10px 10px 10px;
    flex-direction: row;
    justify-content: space-between;
}

.title-description {
    margin: 10px;
}

.button {
    background-color: rgb(0, 191, 0);
    font-family: 'PixelCraft', sans-serif;
    border: 0;
    border-bottom: solid 5px rgb(0, 63, 0);
    padding-block: 0;
    padding-inline: 0;
    line-height: 0;
    height: 40px;
    width: 100px;
    font-size: 16px;
    padding-bottom: 10px;
    min-width: 100px;
}

    .button:hover {
        background-color: rgb(0, 255, 0);
    }

    .button:active {
        box-shadow: none;
        margin-top: 5px;
        height: 35px;
        border-bottom: none;
    }

a.button {
    text-decoration: none;
    color: rgb(0,0,0);
    text-align: center;
    line-height: 28px;
    height: 25px;
}

    a.button:active {
        height: 25px;
    }

.button-blue {
    background-color: rgb(0, 191, 191);
    border-bottom: solid 5px rgb(0, 63, 63);
}

    .button-blue:hover {
        background-color: rgb(0, 255, 255);
    }

.button-yellow {
    background-color: rgb(191, 191, 0);
    border-bottom: solid 5px rgb(63, 63, 0);
}

    .button-yellow:hover {
        background-color: rgb(255, 255, 0);
    }

.button-red {
    background-color: rgb(191, 0, 0);
    border-bottom: solid 5px rgb(63, 0, 0);
    color: white;
}

    .button-red:hover {
        background-color: rgb(255, 0, 0);
        color: white;
    }

.button-pressed {
    box-shadow: none;
    margin-top: 5px;
    height: 35px;
    border-bottom: none;
}

.button-fit {
    width: fit-content;
    padding-left: 10px;
    padding-right: 10px;
}

.font-size-1 {
    font-size: 16px;
}

.font-size-2 {
    font-size: 24px;
}

.font-size-3 {
    font-size: 32px;
}

.font-size-4 {
    font-size: 48px;
}

.title-name {
    text-shadow: rgba(255, 255, 255, 0.5) 1px 1px;
}

.align-items-center {
    align-items: center;
}

.m-top-10 {
    margin-top: 10px;
}

.search-type-container {
    display: flex;
    flex-direction: row;
}

.p-r-10 {
    padding-right: 10px;
}

.select {
    font-family: 'PixelCraft', sans-serif;
    font-size: 16px;
    border: none;
    border-top: 5px rgb(63, 63, 63) solid;
    border-left: 5px rgb(63, 63, 63) solid;
}

.tv-selects {
    width: 50%;
    margin: 10px 0 0 10px;
}

.w-50 {
    width: 50%;
}

.gap-20 {
    gap: 20px;
}

.home-card-title {
    text-shadow: rgb(255, 255, 255) 3px 3px;
    line-height: 1.2;
    font-family: 'PixelCraft Bold', sans-serif;
    letter-spacing: 3px;
    text-align: center;
    transform: translate(0, -20px);
}

.home-card-title-yellow {
    color: rgb(223, 223, 0);
    text-shadow: rgb(47, 47, 0) 4px 4px;
}

.home-card {
    margin: 0 10px 10px 0;
}

.achievement-popup-container {
    position: fixed;
    bottom: -150px;
    right: 20px;
}

.achievement-popup-image {
    width: 64px;
    height: 64px;
    box-shadow: rgb(63, 0, 63) 10px 10px;
    margin-right: 20px;
    z-index: 200;
}

.achievement-popup-title {
    letter-spacing: 2px;
}

@keyframes achievement-popup-container-move {
    0% {
        bottom: -150px;
    }

    10% {
        bottom: 20px;
    }

    90% {
        bottom: 20px;
    }

    100% {
        bottom: -150px;
    }
}

.achievement-popup-container-move {
    animation-name: achievement-popup-container-move;
    animation-duration: 6s;
    animation-iteration-count: 1;
    animation-direction: normal;
}

.space-around {
    justify-content: space-around;
}

.w-fit {
    width: fit-content;
}

.achievement-title {
    letter-spacing: 2px;
    line-height: 1.2;
}

.m-b-20 {
    margin-bottom: 10px;
}

.jc-space-between {
    justify-content: space-between;
}

.achievement-image {
    width: 64px;
    height: 64px;
    box-shadow: rgb(63, 0, 63) 10px 10px;
    margin-right: 10px;
}

.achievement-title-yellow {
    color: rgb(223, 223, 0);
    text-shadow: rgb(47, 47, 0) 4px 4px;
}

.achievement-title-grey {
    color: rgb(127, 127, 127);
    text-shadow: rgb(47, 47, 47) 4px 4px;
}

@keyframes cog-spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.cog-link {
    height: 48px;
    width: 48px;
    margin-left: 15px;
}

.cog-image {
    width: 48px;
    height: 48px;
}

    .cog-image:hover {
        animation-name: cog-spin;
        animation-duration: 1s;
        animation-iteration-count: infinite;
        animation-direction: normal;
        animation-timing-function: linear;
    }

.flex-wrap {
    flex-wrap: wrap;
}

.gap-10 {
    gap: 10px;
}

.w-33 {
    width: 33%;
}

.f-grow-1 {
    flex-grow: 1;
}

.mood-overlay {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 500;
    background-color: rgba(255, 255, 255, 0);
    mix-blend-mode: difference;
}

.mood-default {
    background-color: rgba(255, 255, 255, 0);
    mix-blend-mode: difference;
}

.mood-noir {
    background-color: rgba(255, 255, 255, 1);
    mix-blend-mode: color;
}

.mood-inverted {
    background-color: rgba(255, 255, 255, 1);
    mix-blend-mode: difference;
}

.mood-depression {
    background-color: rgba(0, 0, 0, 0.75);
    mix-blend-mode: color;
}

@keyframes mood-terminal {
    from {
        background-position-y: 0;
    }

    to {
        background-position-y: 30px;
    }
}

.mood-terminal {
    background-color: rgba(0, 255, 0, 1);
    mix-blend-mode: multiply;
    background-image: url("/images/scanline.png");
    animation-name: mood-terminal;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    animation-direction: normal;
    animation-timing-function: linear;
    zoom: 3;
}

@keyframes mood-rainy {
    from {
        background-position-y: 0;
    }

    to {
        background-position-y: 32px;
    }
}

.mood-rainy {
    background-color: rgba(0, 255, 255, 0.75);
    mix-blend-mode: soft-light;
    background-image: url("/images/water.png");
    animation-name: mood-rainy;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    animation-direction: normal;
    animation-timing-function: linear;
    zoom: 4;
}

.three-button {
    max-width: 123.33px;
}

.recommended-image-link {
    box-shadow: rgb(63, 63, 63) 10px 10px;
    margin-right: 10px;
    flex-shrink: 1;
}

.recommended-image {
    max-width: 100%;
    image-rendering: initial;
    height: 175px;
    width: 116.66px;
}

.bug {
    transform: rotate(-90deg);
    width: 32px;
    height: 32px;
    align-self: flex-end;
    margin-bottom: 20px;
    margin-right: 20px;
}

.fly-overlay {
    position: fixed;
    top: 0;
    bottom: 0;
    z-index: 400;
}

.p-b-20 {
    padding-bottom: 20px;
}

.environment-image-link {
    box-shadow: rgb(63, 63, 63) 10px 10px;
    margin-right: 10px;
}

.environment-image {
    max-width: 100%;
    image-rendering: initial;
    height: 146.25px;
    width: 390px;
}

.white-text {
    color: white;
}

.adblock-card {
    height: 45px;
}

.adblock-button {
    width: 140px;
    align-self: flex-end;
}
