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

body {
    font-family: monospace,system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background: #09090b;
    color: #e4e4e7;
    min-height: 100vh;
    padding: 2rem 1rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

a {
    color: white;
}
a:hover {
    color: rgb(169, 169, 169);
}

.headersect {
    text-align: center;
    margin-bottom: 3rem;
}

.label {
    font-size: 0.75rem;
    color: #ff6b35;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.mainbox {
    padding: 0.15rem;
    display: inline-block;
}

.mainaddr {
    font-size: 0.75rem;
    color: #71717a;
    word-break: break-all;
    cursor:pointer;
}

.mwrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.arts {
    flex-shrink: 0;
}

.wtf {
    font-size: 9px;
    line-height: 1.1;
    letter-spacing: 0;
    color: #ff6b35;
    white-space: pre;
}

.info {
    text-align: right;
}

.title {
    font-size: 2.25rem;
    color: #fafafa;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.desc {
    color: #a1a1aa;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    max-width: 28rem;
    line-height: 1.6;
}

.btn {
    display: inline-flex;
    align-items: center;
    padding-left: 1rem;
    color: #e4e4e7;
    text-decoration: none;
    transition: background 0.2s;
    cursor: pointer;
}


.icon {
    font-size: 20px;
}

@media (max-width: 768px) {
    body {
        padding: 1rem;
    }

    .mwrap {
        flex-direction: column;
        gap: 2rem;
    }

    .wtf {
        font-size: 6px;
    }

    .info {
        text-align: left;
    }

    .title {
        font-size: 1.875rem;
    }

    .desc {
        font-size: 0.875rem;
    }

    .headersect {
        margin-bottom: 2rem;
    }
}