@charset "utf-8";

.links-hero {
    min-height: 40vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 120px 5% 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.links-hero-glow {
    position: absolute;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232,69,10,0.20) 0%, transparent 70%);
    top: -100px; left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
}

.links-avatar {
    width: 96px; height: 96px;
    border-radius: 20px;
    border: 2px solid var(--accent);
    box-shadow: var(--glow);
    overflow: hidden;
    background: var(--bg-card);
    margin-bottom: 18px;
}

.links-avatar img {
    width: 100%; height: 100%;
    object-fit: cover;
}

.links-name {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 6px;
}

.links-bio {
    font-size: 14px;
    color: var(--text-muted);
    max-width: 340px;
}

/* Link List */

.links-list {
    max-width: 520px;
    margin: 0 auto;
    padding: 48px 24px 80px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.link-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all 0.22s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.link-item::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: var(--item-color, var(--accent));
    opacity: 0;
    transition: opacity 0.2s;
}

.link-item:hover {
    border-color: var(--item-color, var(--accent));
    transform: translateX(4px);
    box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}
.link-item:hover::before { opacity: 1; }

.link-icon {
    font-size: 20px;
    color: var(--item-color, var(--accent));
    width: 28px;
    text-align: center;
    flex-shrink: 0;
}

.social-icon {
    font-size: 20px;
    color: var(--item-color, var(--accent));
    width: 28px;
    text-align: center;
    flex-shrink: 0;
}

.link-text { flex: 1; }

.link-title {
    font-weight: 600;
    font-size: 15px;
}

.link-desc {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 2px;
}

.link-arrow {
    color: var(--text-muted);
    font-size: 13px;
    transition: color 0.2s, transform 0.2s;
}

.link-item:hover .link-arrow {
    color: var(--item-color, var(--accent));
    transform: translateX(3px);
}

.links-section-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    padding: 8px 4px 4px;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
    margin: 0 auto 0 5%;
    padding-top: 80px;
    transition: color 0.2s;
}

.back-link:hover { color: var(--text); }