:root {
    --bg-color: #000000;
    --text-primary: #FFFFFF;
    --text-secondary: #666666;
    --accent-line: rgba(255, 255, 255, 0.1);
    --font-header: 'Syncopate', sans-serif;
    --font-body: 'Space Grotesk', sans-serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    min-height: 100vh;
    overflow-x: hidden;
}

/* Sigilo de Fondo - Integración Vectorial */
.sigil-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* Contenedor Principal */
.interface {
    position: relative;
    z-index: 1;
    max-width: 500px;
    margin: 0 auto;
    padding: 0 25px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Top Bar */
.top-bar {
    display: flex;
    justify-content: space-between;
    padding: 30px 0;
    font-family: var(--font-header);
    font-size: 8px;
    letter-spacing: 3px;
    color: var(--text-secondary);
}

/* Profile Section */
.profile-card {
    margin-bottom: 50px;
    text-align: left;
}

.profile-card__visual {
    position: relative;
    display: inline-block;
    margin-bottom: 25px;
}

.profile-card__image-container {
    width: 140px;
    height: 180px;
    background: #111;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 85% 100%, 0 100%);
    overflow: hidden;
    border: 1px solid var(--accent-line);
}

.profile-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1) contrast(1.1);
    transition: filter 0.3s ease;
}

.profile-card__img:hover {
    filter: grayscale(0) contrast(1);
}

.profile-card__name {
    font-family: var(--font-header);
    font-size: 2.2rem;
    line-height: 1;
    margin-bottom: 10px;
    letter-spacing: -3px;
}

.profile-card__tags {
    font-size: 9px;
    letter-spacing: 2px;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.profile-card__bio {
    font-size: 14px;
    color: var(--text-secondary);
    max-width: 280px;
    line-height: 1.4;
}

/* Links Grid - Estilo Minimalista Industrial */
.action-grid {
    display: flex;
    flex-direction: column;
    gap: 1px;
    background-color: var(--accent-line);
    border: 1px solid var(--accent-line);
}

.action-item {
    display: grid;
    grid-template-columns: 40px 1fr auto;
    align-items: center;
    padding: 20px;
    background-color: var(--bg-color);
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.2s ease;
}

.action-item:hover {
    background-color: var(--text-primary);
    color: var(--bg-color);
}

.action-item__meta {
    font-family: monospace;
    font-size: 10px;
    opacity: 0.5;
}

.action-item__text {
    font-family: var(--font-header);
    font-size: 12px;
    letter-spacing: 1px;
}

/* Footer */
.footer {
    margin-top: auto;
    padding: 40px 0;
}

.footer__separator {
    height: 1px;
    background: var(--accent-line);
    width: 100%;
    margin-bottom: 20px;
}

.footer__content {
    display: flex;
    justify-content: space-between;
    font-size: 8px;
    font-family: var(--font-header);
    color: var(--text-secondary);
    letter-spacing: 2px;
}