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

body {
    background-color: #fffdfa;
    font-family: 'Special Elite', monospace;
    color: #272727;
    line-height: 1.6;
}

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 60px 20px;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: repeating-linear-gradient(90deg, rgba(0, 0, 0, 0.03) 0px, rgba(0, 0, 0, 0.03) 2px, transparent 2px, transparent 100px);
    animation: roadMove 8s linear infinite;
    z-index: 0;
}

@keyframes roadMove {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: -200px 0;
    }
}

.hero h1 {
    font-family: 'Oi', serif;
    position: relative;
    font-size: clamp(3.5rem, 18vw, 25rem);
    line-height: 0.9;
    text-align: center;
    text-transform: uppercase;
    color: #fa0000;
    width: 100vw;
    z-index: 1;
    white-space: normal;
    text-shadow: 0px 10px 20px rgba(0, 0, 0, 0.05);
    font-weight: 100;
}

.hero h1 span {
    font-size: 0.5em;
    display: block;
    line-height: 1.2;
    color: #111;
    font-weight: 100;
}

.visual-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.image-container {
    position: relative;
    width: 95%;
    max-width: 500px;
    margin-top: 0;
    cursor: default;
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
    filter: grayscale(0.8) contrast(1.5) brightness(0.9);
    transition: filter 0.2s ease, opacity 0.2s ease;
}

.papel-hover {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-2deg) translateY(10px);
    background-color: #fcfcfc;
    color: #000000;
    padding: 10px 20px;
    font-family: 'Special Elite', monospace;
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 2px;
    border: 1px solid #d0d0d0;
    box-shadow: 2px 4px 15px rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: opacity 0.2s ease, transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none;
    z-index: 10;
    white-space: nowrap;
}

.image-container:hover img {
    filter: grayscale(1) contrast(1) brightness(0.3) !important;
}

.image-container:hover .papel-hover {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(1deg) translateY(0);
}

.attribution {
    position: relative;
    z-index: 5;
    font-family: 'Special Elite', monospace;    
    font-size: 0.9rem;
    color: #1a1a1a;
    text-align: center;
    margin-top: -5px;
    text-shadow: 0 0 10px #ffffff, 0 0 20px #ffffff;
    width: 100%;
    max-width: 400px;
    padding: 0 20px;
    font-weight: 100;
}



@media (min-width: 768px) {
    .hero {
        flex-direction: column; 
    }

    .hero h1 {
        position: absolute;
        top: 45%; 
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .visual-content {
        width: 60%;
        max-width: 550px; 
        margin-top: 25vh; 
    }

    .papel-hover {
        font-size: 2rem;
        padding: 15px 30px;
    }

    .attribution {
        font-size: 1.2rem;
        margin-top: 15px;      
        font-weight: bold; 
    }
}
