/* ============================================================
   ZUUME — self-hosted
   ============================================================ */
@font-face {
    font-family: 'zuume';
    src: url('https://anotherparga.com/fonts/Zuume-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: block;
}
@font-face {
    font-family: 'zuume';
    src: url('https://anotherparga.com/fonts/Zuume-Black.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
    font-display: block;
}

/* ============================================================
   VARIABLES & RESET
   ============================================================ */
:root {
    --color-bg:      #0A0A0A;
    --color-bg-2:    #111111;
    --color-text:    #FFFFFF;
    --color-muted:   #888888;
    --color-border:  #1A1A1A;
    --color-accent:  #E8FF47;
    --font-display:  'zuume', 'Arial Narrow', sans-serif;
    --font-body:     'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-body);
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 60px 20px 40px;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ============================================================
   LAYOUT
   ============================================================ */
.lt-wrap {
    width: 100%;
    max-width: 560px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

/* ============================================================
   PERFIL
   ============================================================ */
.lt-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
}

.lt-avatar {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--color-accent);
    flex-shrink: 0;
}

.lt-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.lt-name {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 900;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--color-text);
    line-height: 1;
}

.lt-bio {
    font-size: 0.88rem;
    color: var(--color-muted);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 500;
}

/* ============================================================
   REDES SOCIALES
   ============================================================ */
.lt-socials {
    display: flex;
    gap: 16px;
}

.lt-social {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-2);
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
    overflow: hidden;
    padding: 12px;
}

.lt-social img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.lt-social:hover {
    border-color: var(--color-accent);
    background: rgba(232, 255, 71, 0.08);
    transform: translateY(-2px);
}

/* ============================================================
   LINKS
   ============================================================ */
.lt-links {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lt-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    background: var(--color-bg-2);
    border: 1px solid var(--color-border);
    border-radius: 2px;
    transition: border-color 0.25s ease,
                background 0.25s ease,
                transform 0.2s ease;
    position: relative;
    overflow: hidden;
}

.lt-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--color-accent);
    transform: scaleY(0);
    transition: transform 0.25s ease;
    transform-origin: bottom;
}

.lt-card:hover {
    border-color: rgba(232, 255, 71, 0.3);
    background: #141414;
    transform: translateX(4px);
}

.lt-card:hover::before {
    transform: scaleY(1);
}

.lt-card__content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.lt-card__title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text);
}

.lt-card__sub {
    font-size: 0.75rem;
    color: var(--color-muted);
    letter-spacing: 0.04em;
}

.lt-card__arrow {
    color: var(--color-accent);
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.lt-card:hover .lt-card__arrow {
    transform: translateX(4px);
}

/* ============================================================
   FOOTER
   ============================================================ */
.lt-footer {
    font-size: 0.72rem;
    color: #333;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
