* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html,
body {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #0a1a2a;
    font-family: Arial, sans-serif
}

canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh
}

.infos {
    position: fixed;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    z-index: 10;
    background: #fff;
    padding: 8px;
    border-radius: 8px;
    font-size: 13px;
    color: #000;
    cursor: pointer
}

.hint {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: min(92vw, 560px);
    z-index: 10;
    background: rgb(0 0 0 / .78);
    padding: 28px 30px;
    border-radius: 20px;
    opacity: .95;
    color: #fff;
    text-align: center;
    box-shadow: 0 20px 50px rgb(0 0 0 / .28);
    backdrop-filter: blur(10px)
}

.hint-brand {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: #ddc2b5
}

.hint-logo {
    display: block;
    height: auto;
    object-fit: contain
}

.hint-logo-archives {
    width: 70%;
    max-width: 100%;
    justify-self: end
}

.hint-logo-mercado {
    width: 100%;
    max-width: 100%;
    justify-self: start
}

.hint-arrow {
    font-size: 18px;
    line-height: 1;
    color: #fff
}

.hint h1 {
    font-size: clamp(26px, 4vw, 38px);
    line-height: 1.08;
    margin-bottom: 14px
}

.hint p {
    font-size: clamp(15px, 2vw, 18px);
    line-height: 1.55;
    color: rgb(255 255 255 / .86);
    margin: 0 auto 22px;
    max-width: 46ch
}

.hint-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border-radius: 999px;
    background: #ffffff;
    color: #121212;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: transform .15s ease, background .15s ease
}

.hint-cta:hover {
    transform: translateY(-1px);
    background: #f0d8cb
}

.copy {
    position: fixed;
    top: 20px;
    left: 20px;
    color: #000;
    background: rgb(255 255 255 / .9);
    padding: 10px;
    border-radius: 5px;
    font-size: 12px;
    z-index: 100
}

.loading {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    z-index: 1000;
    text-align: center;
    box-shadow: 0 4px 20px rgb(0 0 0 / .15)
}

::-webkit-scrollbar {
    display: none
}
