@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;900&family=DM+Mono:wght@300;400;500&display=swap');

:root {
    --font-family-dm-mono: 'DM Mono', monospace;
    --font-family-inter: Inter, sans-serif;

    --font-weight-light: 300;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-black: 900;

    --low-opacity-border-color: rgba(255, 255, 255, 0.2);
    --text-white-color: #ffffff;
    --text-gray-color: #222020;
    --text-light-gray-color: #a7a0a0;
    --primary-color: #f05038;
    --background-color-dark: #121111;
}

body {
    margin: 0;
    padding: 0;
    background: var(--background-color-dark);
    color: var(--text-white-color);
    font-family: var(--font-family-inter), sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    overflow: hidden;
}

.wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.background-marquee {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    opacity: 0.05;
    font-family: var(--font-family-dm-mono), monospace;
    font-weight: var(--font-weight-medium);
    font-size: 140px;
    letter-spacing: -0.04em;
    line-height: 1;
    text-transform: uppercase;
    pointer-events: none;
}

.background-marquee span {
    display: inline-block;
}

.container {
    position: relative;
    max-width: 600px;
    padding: 2.5rem;
    border: 1px solid var(--low-opacity-border-color);
    border-radius: 12px;
    background: rgba(18, 17, 17, 0.7);
    backdrop-filter: blur(4px);
    text-align: center;
}

h1 {
    font-family: var(--font-family-dm-mono), monospace;
    font-weight: var(--font-weight-medium);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.subtitle {
    font-size: 1.1rem;
    font-weight: var(--font-weight-light);
    color: var(--text-light-gray-color);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.accent {
    color: var(--primary-color);
    font-weight: var(--font-weight-semibold);
    margin-top: 0.5rem;
}

.contact {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact p {
    margin-bottom: 0.5rem;
    font-weight: var(--font-weight-regular);
}

.contact a {
    display: block;
    color: var(--primary-color);
    font-family: var(--font-family-dm-mono), monospace;
    margin: 0.3rem 0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: opacity 0.2s ease;
    width: fit-content;
}

.contact a:hover {
    opacity: 0.7;
}

@media (max-width: 700px) {
    .background-marquee {
        font-size: 70px;
    }

    .container {
        width: 85%;
        padding: 2rem;
    }
}

@media (max-width: 450px) {
    .background-marquee {
        font-size: 50px;
    }
}
