body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #000000;
    color: #ffffff;
    font-family: 'Zalando Sans Expanded', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    text-align: center;
}
.intro-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    perspective: 1000px;
    pointer-events: none;
}
.wip-text {
    font-size: clamp(1rem, 4vw, 2.5rem);
    font-weight: 400;
    letter-spacing: 0.05em;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.wip-text span {
    display: inline-block;
    will-change: transform, opacity;
}
.wip-text .glow {
    text-shadow: 0 0 25px rgba(255, 255, 255, 0.8);
    transition: text-shadow 0.3s ease;
}
.content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.logo-container {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
    overflow: hidden;
}
.logo {
    max-width: 100%;
    width: 340px;
    height: auto;
    display: block;
}
.logo-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transform: skewX(-25deg);
    animation: shine 3s infinite;
}
@keyframes shine {
    0% { left: -100%; }
    20% { left: 150%; }
    100% { left: 150%; }
}
.text {
    font-size: 0.8rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-top: 1.5rem;
}
.text a.extrabold {
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 4px;
    transition: all 0.3s ease;
}
.text a.extrabold:hover {
    border-bottom-color: #fff;
    color: #fff;
}
.medium {
    font-weight: 500;
}
.extrabold {
    font-weight: 500;
}
.light {
    font-weight: 300;
}
.regular {
    font-weight: 400;
}
.error-title {
    font-size: clamp(8rem, 20vw, 15rem);
    margin: 0;
    line-height: 0.8;
    letter-spacing: -0.05em;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
    margin-bottom: 2rem;
    will-change: transform, opacity;
}
.error-msg {
    font-size: 1.2rem;
    color: #888;
    max-width: 400px;
    margin: 0 auto 3rem auto;
}
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border: 1px solid #ffffff;
    border-radius: 4px;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: background-color 0.2s ease, color 0.2s ease;
}
.btn:hover {
    background-color: #ffffff;
    color: #000000;
}
.push-up {
    margin-top: -10vh;
}
@media (max-width: 480px) {
    .logo {
        width: 200px;
        margin-bottom: 1rem;
    }
    .logo-404 {
        width: 150px;
        margin-bottom: 2rem;
    }
    .text {
        font-size: 1rem;
    }
}
