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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
    background: #fff;
    color: #000;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* Large background logo - centered */
.background-text {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 95vw;
    max-width: none;
    z-index: 10;
    pointer-events: none;
    user-select: none;
    opacity: 1;
}

.background-text img {
    width: 100%;
    height: auto;
    display: block;
}

/* Noise overlay - exactly like swang */
.noise-screen {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 15;
}

.noise-screen::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url(noise.gif) #fff 0% 0% / 100px 100px repeat;
    background-size: 100px;
    opacity: 0.18;
    pointer-events: none;
}

/* Main content */
.content {
    position: relative;
    z-index: 16;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
    padding-top: 55vh;
}

.description {
    max-width: 700px;
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 2rem;
    font-weight: 400;
    margin-top: 4rem;
}

.email {
    font-size: 0.875rem;
    text-decoration: none;
    color: #000;
}

.email:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .description {
        font-size: 0.75rem;
    }
    
    .email {
        font-size: 0.75rem;
    }
}

/* Footer */
footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 20;
    font-size: 0.875rem;
}

footer a {
    color: #000;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .background-text {
        width: 95vw;
    }
    
    footer {
        flex-direction: column;
        gap: 0.5rem;
        padding: 1rem;
        text-align: center;
    }
}

@media (min-width: 769px) {
    footer {
        justify-content: space-between;
    }
}
