:root {
    --primary-red: #bb1a34;
    --primary-white: #ffffff;
}

@font-face {
    font-family: TTBluescreens sans-serif;
    src: url("/font/TT_Bluescreens_Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

@keyframes slideIn {
    0% {
        transform: translateX(1000px);
    }

    100% {
        transform: translateX(0);
    }
}

body {
    background-color: var(--primary-red);
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.title, .subtitle, .coming-soon {
    font-family: TTBluescreens sans-serif;
    font-style: normal;
    font-weight: normal;
    color: var(--primary-white);
    text-transform: uppercase;
    margin: 0;
}

.title {
    font-size: 231px;
    line-height: 190px;
}

.subtitle {
    font-size: 61px;
}

.jay-pic {
    animation: slideIn 2s ease 0s 1 normal forwards;
    bottom: 0;
    position: absolute;
    width: 550px;
}

.parent-container {
    z-index: 5;
    position: relative;
    display: flex;
    padding: 16px 0 0 16px;
    flex: 1;
}

.text-container {
    position: relative;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.image-container {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: end;
    height: 100%;
    overflow: hidden;
}

.with-host, .host-name {
    font-family: sans-serif;
    color: var(--primary-white);
    font-weight: 700;
    text-transform: uppercase;
}

.host-container {
    display: flex;
    margin-bottom: 24px;
}

.with-host {
    font-size: 12px;
    font-style: italic;
    display: block;
    margin-right: 8px;
}

.host-name {
    font-size: 26px;
    display: block;
}

.coming-soon {
    font-size: 62px;
    text-align: center;
}

.ursa-branding-container {
    position: absolute;
    z-index: 10;
    bottom: 16px;
    right: 16px;
}

.ursa-branding {
    width: 200px;
}

.icons {
    margin-top: 16px;
    display: flex;
    justify-content: space-around;
    width: 100%;
}

.platform-icon {
    display: block;
}

.platform-icon img {
    width: 100px;
}

@media screen and (max-width: 849px) {
    .image-container {
        display: none;
    }

    .ursa-branding-container {
        position: relative;
        padding: 32px;
        display: flex;
        justify-content: center;
    }

    .parent-container {
        flex-direction: column;
    }
}

.animated-background-container {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.animated-background {
    width: 100vw;
    height: 200vh;
    background-image: url('https://ik.imagekit.io/knbfzwdru/money_on_fire_GD1smFMBV.png?updatedAt=1706656930023');
    background-repeat: repeat;
    background-size: 150px;
    animation: transformBackgroundOne 10s infinite linear;
    opacity: 0.1;
}

@keyframes transformBackgroundOne {
    0% {
        transform: translateY(-50%);
    }
    100% {
        transform: translateY(0);
    }
}
