@font-face {
    font-family: "Futura";
    src: url("fonts/Futura - Regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Futura";
    src: url("fonts/Futura - 500.woff") format("woff");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Futura";
    src: url("fonts/Futura - 600.woff2") format("woff2");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

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

body {
    min-height: 100vh;
    background: linear-gradient(to bottom, #700303 0%, #890207 100%);
    font-family: "Futura", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
        "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    overflow: hidden;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("Noise.webp");
    background-repeat: repeat;
    opacity: 0.03;
    pointer-events: none;
    z-index: 1;
}

.header {
    position: absolute;
    top: clamp(2rem, 4vw, 3rem);
    left: clamp(2rem, 4vw, 3rem);
    z-index: 10;
}

.main-title {
    font-size: clamp(2.5rem, 6vw, 3.2rem);
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: clamp(0.05em, 0.5vw, 0.1em);
    margin-bottom: clamp(0.25rem, 1vw, 0.4rem);
}

.subtitle {
    font-size: clamp(1.2rem, 3vw, 1.4rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
}

.bottom-image {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    max-width: 138%;
    max-height: 80vh;
    height: auto;
    object-fit: contain;
    object-position: bottom center;
    z-index: 5;
}

@media (max-width: 460px) {
    .bottom-image {
        left: 40%;
        bottom: 0;
    }
}
