/* ═══════════════════════════════════════════════
   ABOUT WINDOW CONTENT
   ═══════════════════════════════════════════════ */
.about-hero {
    text-align: center;
    margin-bottom: 22px;
}

.avatar-ring {
    width: 88px;
    height: 88px;
    margin: 0 auto 14px;
    border-radius: 50%;
    padding: 3px;
    background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
    animation: avatarPulse 3s ease-in-out infinite alternate;
}

@keyframes avatarPulse {
    from {
        box-shadow: 0 0 16px var(--accent-glow);
    }

    to {
        box-shadow: 0 0 32px var(--accent-glow), 0 0 60px rgba(0, 229, 255, 0.15);
    }
}

.avatar-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--bg-surface);
    display: grid;
    place-items: center;
    font-family: var(--font-mono);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.08em;
}

.about-hero h1 {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.subtitle {
    font-size: 0.82rem;
    color: var(--text-secondary);
    margin-top: 4px;
    font-weight: 400;
}

.about-bio {
    margin-bottom: 20px;
    line-height: 1.65;
    font-size: 0.88rem;
    color: var(--text-secondary);
}

.about-skills h2,
.section-heading {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.tag {
    display: inline-block;
    padding: 5px 12px;
    font-size: 0.74rem;
    font-weight: 500;
    border-radius: 20px;
    background: rgba(124, 92, 252, 0.15);
    color: var(--accent);
    border: 1px solid rgba(124, 92, 252, 0.25);
    transition: background 0.2s, transform 0.15s;
}

.tag:hover {
    background: rgba(124, 92, 252, 0.28);
    transform: translateY(-1px);
}

/* Terminal block */
.about-terminal {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-sm);
    padding: 16px 18px;
    overflow-x: auto;
}

.about-terminal pre {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.terminal-accent {
    color: var(--accent-green);
}